/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #667eea;
    --primary-dark: #5568d3;
    --secondary-color: #10b981;
    --accent-color: #fbbf24;
    --text-dark: #e5e7eb;
    --text-light: #9ca3af;
    --bg-dark: #0f0f0f;
    --bg-darker: #000000;
    --bg-card: #1a1a1a;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.5), 0 2px 4px -1px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.6), 0 10px 10px -5px rgba(0, 0, 0, 0.4);
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-darker);
    overflow-x: hidden;
    font-display: swap;
}

html {
    scroll-behavior: smooth;
}

/* Utility Classes */
.hidden {
    display: none !important;
    visibility: hidden;
    position: absolute;
    left: -9999px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background: var(--bg-darker);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.logo-image {
    height: 60px;
    max-width: 250px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo-image:hover {
    transform: scale(1.05);
}

.logo-icon {
    font-size: 2rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-light);
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    background: transparent;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 8px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.nav-link:hover {
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.5);
}

.nav-link:hover::before {
    opacity: 1;
}

.nav-link.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    padding: 12px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.15), rgba(118, 75, 162, 0.15));
    border-radius: 12px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.hamburger::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
    border-radius: 10px;
}

.hamburger:hover {
    border-color: var(--primary-color);
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.hamburger:hover::before {
    opacity: 0.2;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 3px;
    transition: all 0.3s ease;
    position: relative;
}

/* Animated hamburger when active */
.hamburger.active {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.3), rgba(118, 75, 162, 0.3));
    border-color: var(--primary-color);
    box-shadow: 0 0 20px rgba(102, 126, 234, 0.5);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
    background: linear-gradient(90deg, #f43f5e, var(--primary-color));
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
    background: linear-gradient(90deg, var(--primary-color), #f43f5e);
}

/* Pulse animation on first load to draw attention */
@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(102, 126, 234, 0.7);
    }
    50% {
        box-shadow: 0 0 0 8px rgba(102, 126, 234, 0);
    }
}

.hamburger:focus {
    outline: none;
    animation: pulse 1.5s ease-in-out;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #000000 100%);
    color: white;
    margin-top: 70px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(102, 126, 234, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(118, 75, 162, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 50% 20%, rgba(251, 191, 36, 0.05) 0%, transparent 40%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    animation: fadeInUp 1s ease;
}

.hero-logo {
    width: 200px;
    height: auto;
    max-width: 80%;
    margin-bottom: 2rem;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.5));
    animation: fadeInDown 1s ease;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}

.highlight {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #fbbf24 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    filter: drop-shadow(0 0 20px rgba(102, 126, 234, 0.5));
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    opacity: 0.95;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
    border: 2px solid transparent;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.6);
    border-color: rgba(251, 191, 36, 0.5);
}

/* Services Section */
.services {
    padding: 5rem 0;
    background: var(--bg-darker);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(102, 126, 234, 0.4) 20%,
        rgba(118, 75, 162, 0.7) 50%,
        rgba(102, 126, 234, 0.4) 80%,
        transparent 100%);
    animation: borderGlow 3s ease-in-out infinite;
}

@keyframes borderGlow {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.service-icon-img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.service-list {
    list-style: none;
    margin-top: 1rem;
}

.service-list li {
    padding: 0.5rem 0;
    color: var(--text-light);
    position: relative;
    padding-left: 2rem;
    display: flex;
    align-items: center;
}

.service-list li::before {
    content: '';
    position: absolute;
    left: 0;
    width: 20px;
    height: 20px;
    background-image: url('img/kvacica.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

/* About Section */
.about {
    padding: 5rem 0;
    background: var(--bg-dark);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(102, 126, 234, 0.4) 20%,
        rgba(118, 75, 162, 0.7) 50%,
        rgba(102, 126, 234, 0.4) 80%,
        transparent 100%);
    animation: borderGlow 3s ease-in-out infinite;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text h2 {
    text-align: left;
    margin-bottom: 1.5rem;
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.about-features {
    margin-top: 2rem;
    display: grid;
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
}

.feature-icon {
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 1.5rem;
}

.feature-icon-img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.image-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
}

.placeholder-icon {
    font-size: 8rem;
    opacity: 0.3;
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background: var(--bg-darker);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(102, 126, 234, 0.4) 20%,
        rgba(118, 75, 162, 0.7) 50%,
        rgba(102, 126, 234, 0.4) 80%,
        transparent 100%);
    animation: borderGlow 3s ease-in-out infinite;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.contact-icon {
    font-size: 2rem;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon-img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.contact-details h3 {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.contact-details p {
    color: var(--text-light);
}

.map-button-container {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
}

.btn-map {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.6rem 1rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    box-shadow: 0 3px 8px rgba(102, 126, 234, 0.3);
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.btn-map:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 12px rgba(102, 126, 234, 0.4);
    border-color: rgba(251, 191, 36, 0.5);
}

.btn-icon {
    width: 16px;
    height: 16px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

/* Contact Form */
.contact-form {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: var(--bg-dark);
    color: var(--text-dark);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light);
}

/* Form Validation Error Styles */
.form-group {
    position: relative;
}

.form-group input.input-error,
.form-group textarea.input-error {
    border-color: #ef4444;
    background: rgba(239, 68, 68, 0.1);
}

.form-group input.input-error:focus,
.form-group textarea.input-error:focus {
    border-color: #dc2626;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.2);
}

.field-error-message {
    color: #ef4444;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    animation: slideDown 0.3s ease;
}

.field-error-message::before {
    content: "⚠";
    font-size: 1rem;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Success state (optional - možemo dodati kasnije) */
.form-group input.input-success,
.form-group textarea.input-success {
    border-color: #10b981;
    background: rgba(16, 185, 129, 0.1);
}

.contact-form .btn {
    width: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
    border: 2px solid transparent;
}

.contact-form .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.6);
    border-color: rgba(251, 191, 36, 0.5);
}

/* Pricing Section */
.pricing {
    padding: 5rem 0;
    background: var(--bg-dark);
    position: relative;
}

.pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(102, 126, 234, 0.4) 20%,
        rgba(118, 75, 162, 0.7) 50%,
        rgba(102, 126, 234, 0.4) 80%,
        transparent 100%);
    animation: borderGlow 3s ease-in-out infinite;
}

.pricing-table-wrapper {
    overflow-x: auto;
    margin: 2rem 0;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.pricing-table {
    width: 100%;
    background: var(--bg-card);
    border-collapse: collapse;
    border-radius: 12px;
    overflow: hidden;
}

.pricing-table thead {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.pricing-table thead th {
    color: white;
    padding: 1.5rem;
    text-align: left;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-table tbody tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.pricing-table tbody tr:last-child {
    border-bottom: none;
}

.pricing-table tbody tr:hover {
    background: rgba(102, 126, 234, 0.1);
}

.pricing-table tbody tr.highlight-row {
    background: rgba(251, 191, 36, 0.05);
}

.pricing-table tbody tr.highlight-row:hover {
    background: rgba(251, 191, 36, 0.15);
}

.pricing-table td {
    padding: 1.25rem 1.5rem;
    color: var(--text-dark);
}

.pricing-table td:first-child {
    font-weight: 500;
    width: 70%;
}

.pricing-table td:last-child {
    font-weight: 700;
    color: var(--accent-color);
    text-align: right;
    font-size: 1.1rem;
    white-space: nowrap;
}

.pricing-note {
    background: var(--bg-card);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 2rem;
    border-left: 4px solid var(--primary-color);
}

.pricing-note p {
    color: var(--text-light);
    margin: 0;
    font-size: 0.95rem;
}

.pricing-note strong {
    color: var(--text-dark);
    font-weight: 600;
}

/* Responsive pricing table */
@media (max-width: 768px) {
    .pricing-table thead th {
        padding: 1rem;
        font-size: 0.95rem;
    }

    .pricing-table td {
        padding: 1rem;
        font-size: 0.9rem;
    }

    .pricing-table td:first-child {
        width: 60%;
    }

    .pricing-table td:last-child {
        font-size: 1rem;
    }
}

/* FAQ Section */
.faq {
    background: var(--bg-dark);
    padding: 5rem 0;
    position: relative;
}

.faq::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(102, 126, 234, 0.4) 20%,
        rgba(118, 75, 162, 0.7) 50%,
        rgba(102, 126, 234, 0.4) 80%,
        transparent 100%);
    animation: borderGlow 3s ease-in-out infinite;
}

.faq .section-title {
    color: white;
}

.faq .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    margin-bottom: 1.25rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-item:hover {
    box-shadow: 0 8px 32px rgba(102, 126, 234, 0.3);
    transform: translateY(-3px);
    border-color: rgba(102, 126, 234, 0.5);
}

.faq-question {
    width: 100%;
    padding: 1.25rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: 2px solid transparent;
    border-radius: 12px;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.faq-question:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
    border-color: rgba(251, 191, 36, 0.5);
}

.faq-question.active {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
    border-color: rgba(251, 191, 36, 0.3);
}

.faq-icon {
    font-size: 1.8rem;
    font-weight: 300;
    color: white;
    background: rgba(255, 255, 255, 0.2);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.4s ease;
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-question.active .faq-icon {
    transform: rotate(135deg);
    background: rgba(255, 255, 255, 0.3);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease;
    background: transparent;
}

.faq-answer.active {
    max-height: 600px;
    padding: 0 2rem 2rem 2rem;
}

.faq-answer p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.9;
    margin: 0;
    font-size: 1.05rem;
}

/* Testimonials Section */
.testimonials {
    background: #0a0a0a;
    padding: 5rem 0;
    position: relative;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(102, 126, 234, 0.4) 20%,
        rgba(118, 75, 162, 0.7) 50%,
        rgba(102, 126, 234, 0.4) 80%,
        transparent 100%);
    animation: borderGlow 3s ease-in-out infinite;
}

.testimonials .section-title {
    color: white;
}

.testimonials .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 32px rgba(102, 126, 234, 0.4);
    border-color: rgba(102, 126, 234, 0.5);
    background: rgba(255, 255, 255, 0.08);
}

.testimonial-card:hover::before {
    opacity: 1;
}

.testimonial-rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.star {
    color: #ffc107;
    font-size: 1.2rem;
}

.testimonial-text {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
    position: relative;
}

.testimonial-text::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: -10px;
    font-size: 3rem;
    color: rgba(102, 126, 234, 0.2);
    font-family: Georgia, serif;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
}

.testimonial-author strong {
    color: white;
    font-size: 1rem;
}

.testimonial-author span {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* Google Reviews Widget */
.google-reviews-container {
    margin-top: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.google-reviews-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding: 1.5rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.google-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.google-logo span {
    color: white;
    font-size: 1.25rem;
    font-weight: 700;
}

.write-review-btn {
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
    border: 2px solid transparent;
}

.write-review-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.6);
    border-color: rgba(251, 191, 36, 0.5);
}

.google-reviews-embed {
    margin-bottom: 2rem;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.google-reviews-embed iframe {
    filter: invert(0.9) hue-rotate(180deg);
}

.view-all-reviews {
    text-align: center;
}

.view-all-reviews .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.google-review-card {
    position: relative;
}

.google-review-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.reviewer-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    color: white;
    flex-shrink: 0;
}

.reviewer-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.reviewer-info strong {
    color: white;
    font-size: 1rem;
}

.reviewer-info span {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
}

.review-source {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.review-source span {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

.google-reviews-widget-container {
    margin: 2rem 0;
}

.google-maps-reviews-embed {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border-radius: 16px;
    overflow: hidden;
}

.reviews-loading {
    padding: 3rem;
    text-align: center;
}

@media (max-width: 768px) {
    .google-reviews-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .google-reviews-embed iframe {
        height: 350px;
    }

    .google-maps-reviews-embed iframe {
        height: 350px;
    }
}

/* Footer */
.footer {
    background: var(--bg-dark);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
    vertical-align: middle;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: white;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
}

.footer-logo-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.footer-logo {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.footer-brand-name {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    letter-spacing: 0.5px;
}

.footer-business-info {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-business-info p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0.3rem 0;
}

.footer-business-info p strong {
    color: white;
    font-weight: 600;
}

.footer .logo-image {
    height: 40px;
}

.footer .logo-text {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--bg-darker);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        box-shadow: var(--shadow);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero {
        margin-top: 85px;
        padding-bottom: 3rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-logo {
        width: 150px;
    }

    .logo-image {
        height: 40px;
        max-width: 165px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    /* Contact Form - Extra small screens */
    .contact-form {
        padding: 1rem 0.75rem;
        border-radius: 8px;
    }

    .form-group input,
    .form-group textarea {
        padding: 0.75rem;
        font-size: 16px;
        border-radius: 6px;
    }

    .form-group textarea {
        min-height: 120px;
    }

    .contact-form .btn {
        padding: 0.875rem;
        font-size: 0.95rem;
    }

    /* reCAPTCHA extra small screens */
    .form-group [data-netlify-recaptcha] {
        transform: scale(0.85);
    }

    /* Error messages - smaller text */
    .field-error-message {
        font-size: 0.75rem;
    }
}

/* Remote Support Section */
.remote-support {
    padding: 80px 0;
    background: var(--bg-dark);
    position: relative;
}

.remote-support::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(102, 126, 234, 0.4) 20%,
        rgba(118, 75, 162, 0.7) 50%,
        rgba(102, 126, 234, 0.4) 80%,
        transparent 100%);
    animation: borderGlow 3s ease-in-out infinite;
}

.remote-support-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 40px;
    align-items: start;
}

.remote-support-text h3 {
    color: var(--text-dark);
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.remote-support-text > p {
    color: var(--text-light);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.remote-benefits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 40px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: var(--bg-card);
    border-radius: 8px;
    border: 1px solid rgba(102, 126, 234, 0.2);
}

.benefit-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.benefit-item span {
    color: var(--text-dark);
    font-size: 0.95rem;
}

.remote-steps {
    margin-top: 40px;
}

.remote-steps h3 {
    color: var(--text-dark);
    font-size: 1.6rem;
    margin-bottom: 25px;
}

.step {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding: 25px;
    background: var(--bg-card);
    border-radius: 12px;
    border: 1px solid rgba(102, 126, 234, 0.2);
    transition: all 0.3s ease;
}

.step:hover {
    border-color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.2);
    transform: translateY(-2px);
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.step-content h4 {
    color: var(--text-dark);
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.step-content p {
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.6;
}

.contact-methods {
    background: var(--bg-darker);
    padding: 15px;
    border-radius: 8px;
    border-left: 3px solid var(--primary-color);
    margin-top: 10px;
}

.contact-methods p {
    color: var(--text-dark);
    margin: 5px 0;
}

.contact-methods a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.contact-methods a:hover {
    text-decoration: underline;
}

.remote-note {
    margin-top: 30px;
    padding: 20px;
    background: rgba(251, 191, 36, 0.1);
    border-left: 4px solid var(--accent-color);
    border-radius: 8px;
}

.remote-note p {
    color: var(--text-dark);
    margin: 0;
    font-size: 0.95rem;
}

.remote-card {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 40px;
    border: 1px solid rgba(102, 126, 234, 0.3);
    box-shadow: var(--shadow-lg);
    position: sticky;
    top: 100px;
}

.remote-card h3 {
    color: var(--text-dark);
    font-size: 1.8rem;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 600;
}

.price-highlight {
    text-align: center;
    margin: 30px 0;
    padding: 20px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2), rgba(85, 104, 211, 0.2));
    border-radius: 12px;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    display: inline-block;
}

.price-unit {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-left: 5px;
}

.remote-features {
    list-style: none;
    margin: 30px 0;
    padding: 0;
}

.remote-features li {
    padding: 12px 0;
    color: var(--text-dark);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    padding-left: 30px;
}

.remote-features li:last-child {
    border-bottom: none;
}

.remote-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 1.2rem;
}

.remote-card .btn {
    width: 100%;
    margin-top: 20px;
    padding: 15px;
    font-size: 1.1rem;
    text-align: center;
    display: block;
}

/* Success Message */
.success-message {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(16, 185, 129, 0.1));
    border: 2px solid var(--secondary-color);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    margin: 30px 0;
    animation: slideDown 0.5s ease;
}

.success-message h3 {
    color: var(--secondary-color);
    font-size: 1.8rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.success-message p {
    color: var(--text-light);
    font-size: 1.1rem;
}

.success-icon {
    width: 60px;
    height: 60px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    margin: 0 auto 20px;
    animation: scaleIn 0.5s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}

/* Email and Phone Links */
a[href^="mailto:"],
a[href^="tel:"] {
    transition: all 0.3s ease;
}

a[href^="mailto:"]:hover,
a[href^="tel:"]:hover {
    text-decoration: underline !important;
    opacity: 0.8;
}

/* Responsive - Remote Support */
@media (max-width: 968px) {
    .remote-support-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .remote-benefits {
        grid-template-columns: 1fr;
    }

    .remote-card {
        position: static;
    }
}

@media (max-width: 768px) {
    .step {
        flex-direction: column;
        text-align: center;
    }

    .step-number {
        margin: 0 auto;
    }

    .contact-methods {
        text-align: center;
    }

    .price {
        font-size: 2.5rem;
    }

    /* Contact Form Mobile Styles */
    .contact-form {
        padding: 1.5rem 1rem;
        margin: 0 -10px;
    }

    .form-group {
        margin-bottom: 1.25rem;
    }

    .form-group input,
    .form-group textarea {
        padding: 0.875rem;
        font-size: 16px; /* Prevent zoom on iOS */
    }

    .form-group textarea {
        min-height: 150px;
    }

    .contact-form .btn {
        padding: 1rem;
        font-size: 1rem;
        margin-top: 1rem;
    }

    /* Error messages mobile */
    .field-error-message {
        font-size: 0.8rem;
        margin-top: 0.375rem;
    }

    /* reCAPTCHA mobile scaling */
    .form-group [data-netlify-recaptcha] {
        transform: scale(0.9);
        transform-origin: center;
    }

    /* Honeypot field - ensure it's always hidden */
    .hidden,
    .contact-form p.hidden {
        display: none !important;
    }
}

/* Cookie Consent Banner */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.98), rgba(15, 15, 15, 0.98));
    backdrop-filter: blur(10px);
    border-top: 2px solid var(--primary-color);
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.5);
    z-index: 10000;
    padding: 25px 20px;
    animation: slideUp 0.5s ease;
    display: none;
}

.cookie-consent.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.cookie-text h3 {
    color: var(--text-dark);
    font-size: 1.3rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.cookie-text p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
}

.cookie-buttons .btn {
    padding: 12px 30px;
    font-size: 1rem;
    white-space: nowrap;
    cursor: pointer;
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--text-light);
    color: var(--text-light);
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--text-light);
    color: var(--bg-dark);
    border-color: var(--text-light);
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Responsive Cookie Banner */
@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .cookie-buttons .btn {
        width: 100%;
    }

    .cookie-text h3 {
        font-size: 1.1rem;
    }

    .cookie-text p {
        font-size: 0.9rem;
    }
}
