/* ================================
   CSS RESET & BASE STYLES
   ================================ */

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #2A2A2A;
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

ul {
    list-style: none;
}

/* ================================
   VARIABLES
   ================================ */

:root {
    /* Colors */
    --color-primary: #FEBF01;
    --color-secondary: #F4DF1F;
    --color-text: #2A2A2A;
    --color-text-light: #5A5A5A;
    --color-white: #FFFFFF;
    --color-grey-light: #F5F5F5;
    --color-grey-medium: #E0E0E0;
    --color-dark: #1A1A1A;
    
    /* Exit Intent Popup Colors (using global brand colors) */
    --primary-dark: #2A2A2A;
    --primary-light: #FEBF01;
    --accent: #FEBF01;
    --text-light: #ffffff;
    --text-dark: #333333;
    
    /* Typography */
    --font-primary: 'Montserrat', sans-serif;
    
    /* Spacing */
    --section-padding: 80px;
    --container-width: 1300px;
    
    /* Transitions */
    --transition: all 0.3s ease;
}

/* ================================
   KEYFRAME ANIMATIONS
   ================================ */

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

@keyframes pulseGlow {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(254, 191, 1, 0.7);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 8px rgba(254, 191, 1, 0);
    }
}

/* ================================
   UTILITY CLASSES
   ================================ */

.hero .container {
    position: relative;
    z-index: 2;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: var(--section-padding) 0;
}

.section--grey {
    background-color: var(--color-grey-light);
}

.section__header {
    text-align: center;
    margin-bottom: 60px;
}

.section__title {
    font-size: clamp(28px, 5vw, 36px);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
    color: var(--color-text);
}

.section__subtitle {
    font-size: clamp(16px, 2.5vw, 18px);
    color: var(--color-text-light);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ================================
   BUTTONS
   ================================ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 6px;
    transition: var(--transition);
    text-align: center;
    cursor: pointer;
}

.btn svg {
    flex-shrink: 0;
}

.btn--large {
    padding: 18px 40px;
    font-size: 18px;
}

.btn--small {
    padding: 12px 24px;
    font-size: 14px;
}

.btn--primary {
    background-color: var(--color-primary);
    color: var(--color-text);
    box-shadow: 0 4px 15px rgba(254, 191, 1, 0.3);
}

.btn--primary:hover {
    background-color: #FFC700;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 199, 0, 0.6);
}

.btn--secondary {
    background-color: var(--color-white);
    color: var(--color-text);
    border: 2px solid #000000 !important;
}

.btn--secondary:hover {
    transform: translateY(-2px);
}

/* ================================
   HEADER & NAVIGATION
   ================================ */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--color-white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: var(--transition);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    gap: 40px;
}

.nav__logo-container {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition);
}

.nav__logo:hover .nav__logo-img {
    transform: rotate(360deg);
}

.nav__logo-text {
    font-size: 20px;
    font-weight: 900;
    color: var(--color-text);
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: var(--transition);
}

.nav__logo:hover .nav__logo-text {
    color: var(--color-primary);
}

.nav__logo-img {
    height: 40px;
    width: 40px;
    border-radius: 50%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.nav__contact {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 8px;
    color: var(--color-text);
    font-weight: 900;
    transition: var(--transition);
}

.nav__contact:hover {
    transform: translateY(-2px);
}

.nav__contact-icon {
    width: 20px;
    height: 20px;
}

.nav__contact-text {
    font-size: 18px;
    font-weight: 700;
    white-space: nowrap;
}

.nav__menu {
    display: flex;
    align-items: center;
    gap: 40px;
    flex: 1;
    justify-content: flex-end;
}

.nav__list {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav__link {
    font-weight: 600;
    font-size: 15px;
    color: var(--color-text);
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 5px;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--color-primary);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav__link:hover {
    color: var(--color-primary);
    transform: translateY(-2px);
}

.nav__link:hover::after {
    width: 100%;
}

.nav__toggle {
    display: none;
    flex-direction: column;
    width: 30px;
    height: 24px;
    position: relative;
}

.nav__toggle-icon,
.nav__toggle-icon::before,
.nav__toggle-icon::after {
    position: absolute;
    width: 100%;
    height: 3px;
    background-color: var(--color-text);
    transition: var(--transition);
    border-radius: 2px;
}

.nav__toggle-icon {
    top: 50%;
    transform: translateY(-50%);
}

.nav__toggle-icon::before,
.nav__toggle-icon::after {
    content: '';
}

.nav__toggle-icon::before {
    top: -10px;
}

.nav__toggle-icon::after {
    bottom: -10px;
}

.nav__toggle.active .nav__toggle-icon {
    background-color: transparent;
}

.nav__toggle.active .nav__toggle-icon::before {
    top: 0;
    transform: rotate(45deg);
}

.nav__toggle.active .nav__toggle-icon::after {
    bottom: 0;
    transform: rotate(-45deg);
}

/* ================================
   HERO SECTION
   ================================ */

.hero {
    position: relative;
    min-height: 100vh;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 70px;
    overflow: hidden;
    background: #1A1A1A;
    touch-action: pan-y pinch-zoom;
}

/* Homepage Hero Background */
.hero--homepage {
    background: url('/assets/images/cover5.webp') center center / cover no-repeat;
    background-attachment: scroll;
    touch-action: pan-y;
    background-size: cover;
    background-position: center center;
}

/* Hero Overlay */
.hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.55) 50%, rgba(0, 0, 0, 0.2) 100%);
    z-index: 1;
    pointer-events: none;
}

/* Hero Container */
.hero__container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    z-index: 2;
    padding: 0 80px;
}

/* Hero Content Wrapper */
.hero__content-wrapper {
    max-width: 670px;
    text-align: left;
}

/* Hero Rating Badge */
.hero__rating-badge {
    display: inline-block;
    font-size: 0.7em;
    margin-bottom: 0.3rem;
    background: rgba(254, 191, 1, 0.15);
    padding: 4px 10px;
    border-radius: 20px;
    color: rgba(255, 255, 255, 0.95);
}

.hero__stars {
    color: #FEBF01;
}

/* Hero Title */
.hero__title-main {
    font-size: clamp(24px, 5vw, 44px);
    font-weight: 900;
    color: var(--color-white);
    margin: 0.5rem 0 0.8rem 0;
    line-height: 1.2;
    text-align: left;
}

.hero__subtitle-text {
    font-size: 0.8em;
    color: #FEBF01;
    display: block;
    margin-bottom: 0.2rem;
}

.hero__title-text {
    display: block;
}

/* Hide line breaks on desktop */
.hero__title-break {
    display: none;
}

/* Hero Description */
.hero__description {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.95);
    margin: 0 0 1rem 0;
    line-height: 1.5;
    text-align: left;
}

/* Hero Features List */
.hero__features-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 0.8em;
    opacity: 0.85;
    align-items: flex-start;
    margin: 1rem 0;
}

.hero__feature-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.9);
}

.hero__feature-item svg {
    color: #FEBF01;
    flex-shrink: 0;
}

/* Hero CTA Buttons */
.hero__cta-buttons {
    display: flex;
    gap: 12px;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.hero__cta-buttons .btn {
    white-space: nowrap;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(254, 191, 1, 0.9);
    color: var(--color-text);
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 24px;
    box-shadow: 0 4px 15px rgba(254, 191, 1, 0.3);
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.hero__badge-icon {
    display: flex;
    align-items: center;
}

.hero__badge-icon svg {
    color: var(--color-dark);
}

.hero__benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin: 30px 0;
    animation: fadeInUp 1s ease-out 0.5s backwards;
}

.hero__benefit {
    color: var(--color-white);
    font-size: 16px;
    font-weight: 600;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero__benefit svg {
    flex-shrink: 0;
    color: var(--color-primary);
}

.hero__urgency {
    margin-top: 20px;
    color: var(--color-primary);
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    animation: pulse 2s ease-in-out infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.hero__urgency svg {
    flex-shrink: 0;
}

.hero__background-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero__slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero__slide.active {
    opacity: 1;
}

.hero__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.65);
}

.hero__background-slider::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5));
    z-index: 1;
    pointer-events: none;
}

.hero__content {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    padding: 100px 20px 60px;
    position: relative;
    z-index: 2;
}

.hero__title {
    font-size: clamp(32px, 6vw, 56px);
    font-weight: 900;
    color: var(--color-white);
    line-height: 1.2;
    margin-bottom: 24px;
    letter-spacing: 1.5px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out;
}

.hero__subtitle {
    font-size: clamp(16px, 3vw, 20px);
    color: var(--color-white);
    margin-bottom: 40px;
    line-height: 1.7;
    opacity: 0.95;
    animation: fadeInUp 1s ease-out 0.3s backwards;
}

.hero__cta {
    display: flex;
    gap: 20px;
    animation: fadeInUp 1s ease-out 0.6s backwards;
    justify-content: center;
    flex-wrap: wrap;
}

/* CTA styling for non-hero sections */
section:not(.hero) .hero__cta {
    animation: none;
}

/* ================================
   PAGE HERO (FOR SUBPAGES)
   ================================ */

.page-hero {
    position: relative;
    padding: 140px 0 100px;
    text-align: center;
    overflow: hidden;
    min-height: 70vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.page-hero__background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.page-hero__background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    -o-object-fit: cover;
    font-family: 'object-fit: cover;'; /* IE polyfill */
    -webkit-filter: brightness(0.4);
    filter: brightness(0.4);
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(254, 191, 1, 0.8) 0%, rgba(244, 223, 31, 0.7) 100%);
    z-index: 1;
    mix-blend-mode: multiply;
}

.page-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.1) 0%, transparent 50%);
    z-index: 2;
    pointer-events: none;
}

.page-hero .container {
    position: relative;
    z-index: 3;
}

.page-hero__content {
    -webkit-animation: fadeInUp 0.8s ease-out;
    animation: fadeInUp 0.8s ease-out;
    /* Fallback for browsers without animation support */
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}

.page-hero__badge {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.95);
    padding: 10px 20px;
    -webkit-border-radius: 30px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text);
    color: #1a1a1a; /* Fallback */
    margin-bottom: 25px;
    -webkit-box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-hero__badge > * {
    margin-right: 8px; /* Fallback for gap */
}

.page-hero__badge > *:last-child {
    margin-right: 0;
}

.page-hero__badge svg {
    color: var(--color-primary);
    color: #FEBF01; /* Fallback */
}

.page-hero__title {
    font-size: 52px; /* Fallback for clamp() */
    font-size: clamp(42px, 7vw, 64px);
    font-weight: 900;
    color: var(--color-white);
    color: #ffffff; /* Fallback */
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: -1px;
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.page-hero__subtitle {
    font-size: 20px; /* Fallback for clamp() */
    font-size: clamp(18px, 2.5vw, 24px);
    color: var(--color-white);
    color: #ffffff; /* Fallback */
    font-weight: 500;
    max-width: 750px;
    margin: 0 auto;
    line-height: 1.6;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Hero CTA Buttons */
.page-hero__cta {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 15px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 35px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.page-hero__cta > * {
    margin: 7.5px; /* Fallback for gap: 15px (half gap on each side) */
}

@supports (gap: 15px) {
    .page-hero__cta > * {
        margin: 0;
    }
}

/* Hero Stats (for Gallery page) */
.page-hero__stats {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 40px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 40px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.page-hero__stats > * {
    margin: 20px; /* Fallback for gap: 40px */
}

@supports (gap: 40px) {
    .page-hero__stats > * {
        margin: 0;
    }
}

.page-hero__stat {
    text-align: center;
}

.page-hero__stat-number {
    font-size: 42px; /* Fallback for clamp() */
    font-size: clamp(36px, 5vw, 48px);
    font-weight: 900;
    color: var(--color-white);
    color: #ffffff; /* Fallback */
    line-height: 1;
    margin-bottom: 8px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.page-hero__stat-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-white);
    color: #ffffff; /* Fallback */
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Hero Contact Methods (for Contact page) */
.page-hero__contact-methods {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 35px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.page-hero__contact-methods > * {
    margin: 10px; /* Fallback for gap: 20px */
}

@supports (gap: 20px) {
    .page-hero__contact-methods > * {
        margin: 0;
    }
}

.page-hero__method {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.95);
    padding: 15px 30px;
    -webkit-border-radius: 50px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    color: var(--color-text);
    color: #1a1a1a; /* Fallback */
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -webkit-box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-hero__method > * {
    margin-right: 10px; /* Fallback for gap */
}

.page-hero__method > *:last-child {
    margin-right: 0;
}

.page-hero__method:hover {
    background: var(--color-white);
    background: #ffffff; /* Fallback */
    -webkit-transform: translateY(-2px);
    -ms-transform: translateY(-2px);
    transform: translateY(-2px);
    -webkit-box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
}

.page-hero__method svg {
    color: var(--color-primary);
    color: #FEBF01; /* Fallback */
}

/* Hardware acceleration for better performance */
.page-hero__background img,
.page-hero__content,
.page-hero__method,
.btn {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-perspective: 1000px;
    perspective: 1000px;
}


/* ================================
   TRUST BAR
   ================================ */

.trust-bar {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    padding: 40px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.trust-bar__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.trust-bar__item {
    animation: scaleIn 0.6s ease-out backwards;
}

.trust-bar__item:nth-child(1) { animation-delay: 0.1s; }
.trust-bar__item:nth-child(2) { animation-delay: 0.2s; }
.trust-bar__item:nth-child(3) { animation-delay: 0.3s; }
.trust-bar__item:nth-child(4) { animation-delay: 0.4s; }

.trust-bar__number {
    font-size: clamp(36px, 5vw, 48px);
    font-weight: 900;
    color: var(--color-text);
    line-height: 1;
    margin-bottom: 8px;
}

.trust-bar__label {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ================================
   USP SECTION
   ================================ */

.usp__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.usp__card {
    background-color: var(--color-white);
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.usp__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(254, 191, 1, 0.1), transparent);
    transition: left 0.5s ease;
}

.usp__card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.usp__card:hover::before {
    left: 100%;
}

.usp__icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-primary);
    border-radius: 50%;
    color: var(--color-text);
    transition: all 0.4s ease;
}

.usp__card:hover .usp__icon {
    transform: rotateY(360deg);
    box-shadow: 0 6px 20px rgba(254, 191, 1, 0.4);
}

.usp__title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--color-text);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.usp__description {
    font-size: 15px;
    color: var(--color-text-light);
    line-height: 1.6;
}

/* ================================
   SERVICES SECTION
   ================================ */

.services .container {
    max-width: 1600px;
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.service__card {
    background-color: var(--color-white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.service__card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent, rgba(254, 191, 1, 0.1));
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.service__card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

.service__card:hover::after {
    opacity: 1;
}

.service__image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background-color: var(--color-grey-medium);
    position: relative;
}

.service__image img {
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.service__card:hover .service__image img {
    transform: scale(1.1) rotate(2deg);
}

.service__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service__card:hover .service__image img {
    transform: scale(1.1);
}

.service__badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--color-primary);
    color: var(--color-text);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(254, 191, 1, 0.4);
    z-index: 1;
}

.service__content {
    padding: 20px 25px 15px 25px;
}

.service__features {
    list-style: none;
    margin: 15px 0;
    padding: 0;
}

.service__features li {
    padding: 6px 0;
    font-size: 15px;
    color: var(--color-text);
    line-height: 1.6;
    display: flex;
    align-items: center;
    gap: 8px;
}

.service__features li svg {
    flex-shrink: 0;
    color: var(--color-primary);
}

.service__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    color: var(--color-primary);
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
}

.service__cta:hover {
    transform: translateX(5px);
    color: var(--color-text);
}


.service__title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--color-text);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service__description {
    font-size: 15px;
    color: var(--color-text-light);
    line-height: 1.6;
}

/* ================================
   PROCESS SECTION
   ================================ */

.process__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.process__step {
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    padding: 20px;
    border-radius: 10px;
}

.process__step:hover {
    transform: translateY(-5px);
    background-color: rgba(254, 191, 1, 0.05);
}

.process__number {
    width: 80px;
    height: 80px;
    background-color: var(--color-primary);
    color: var(--color-text);
    font-size: 36px;
    font-weight: 900;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    box-shadow: 0 4px 15px rgba(254, 191, 1, 0.3);
    transition: all 0.4s ease;
}

.process__step:hover .process__number {
    box-shadow: 0 8px 25px rgba(254, 191, 1, 0.5);
}

.process__title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--color-text);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.process__description {
    font-size: 15px;
    color: var(--color-text-light);
    line-height: 1.7;
}

/* ================================
   TESTIMONIALS SECTION
   ================================ */

.testimonials {
    background-color: #ECECEC;
}

.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.testimonials__marquee {
    width: 100%;
    overflow: hidden;
    margin: 50px 0;
    padding: 40px 0;
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.testimonials__track {
    display: flex;
    gap: 30px;
    -webkit-animation: marquee 60s linear infinite;
    animation: marquee 60s linear infinite;
    will-change: transform;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

.testimonials__track:hover {
    -webkit-animation-play-state: paused;
    animation-play-state: paused;
}

@-webkit-keyframes marquee {
    0% {
        -webkit-transform: translateX(0) translateZ(0);
        transform: translateX(0) translateZ(0);
    }
    100% {
        -webkit-transform: translateX(-50%) translateZ(0);
        transform: translateX(-50%) translateZ(0);
    }
}

@keyframes marquee {
    0% {
        -webkit-transform: translateX(0) translateZ(0);
        transform: translateX(0) translateZ(0);
    }
    100% {
        -webkit-transform: translateX(-50%) translateZ(0);
        transform: translateX(-50%) translateZ(0);
    }
}

.testimonial__card {
    background-color: var(--color-white);
    padding: 35px;
    border-radius: 10px;
    border: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* For carousel (if still used elsewhere) */
.testimonials__marquee .testimonial__card {
    min-width: 400px;
    max-width: 400px;
    flex-shrink: 0;
}

.testimonial__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.testimonial__text {
    font-size: 15px;
    color: var(--color-text);
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial__author {
    font-size: 15px;
    font-weight: 700;
    color: var(--color-text);
    margin-top: 15px;
}

.testimonial__stars {
    color: var(--color-primary);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.testimonial__stars svg {
    color: var(--color-primary);
}

.testimonials__rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 16px;
}

.stars {
    color: var(--color-primary);
    display: flex;
    align-items: center;
    gap: 4px;
}

.stars svg {
    color: var(--color-primary);
}

.rating__text {
    font-size: 16px;
    color: var(--color-text);
    font-weight: 600;
}

/* ================================
   ABOUT SECTION
   ================================ */

.about__content {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    align-items: center;
}

.about__text {
    flex: 1 1 calc(60% - 30px);
    min-width: 300px;
}

.about__image {
    flex: 1 1 calc(40% - 30px);
    min-width: 300px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.about__text h2 {
    margin-bottom: 24px;
}

.about__text p {
    font-size: 18px;
    color: var(--color-text-light);
    line-height: 1.8;
}

.about__cta {
    display: flex;
    gap: 16px;
    margin-top: 30px;
    justify-content: flex-start;
    align-items: center;
}

.about__image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    max-width: 400px;
    width: 100%;
}

.about__image img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* ================================
   FAQ SECTION
   ================================ */

.faq__list {
    max-width: 800px;
    margin: 0 auto;
}

.faq__item {
    background-color: var(--color-white);
    border-radius: 8px;
    margin-bottom: 16px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.faq__item:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    border-left-color: var(--color-primary);
    transform: translateX(5px);
}

.faq__question {
    width: 100%;
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    font-size: 18px;
    font-weight: 600;
    color: var(--color-text);
    transition: all 0.3s ease;
}

.faq__question:hover {
    background-color: var(--color-grey-light);
    padding-left: 30px;
}

.faq__icon {
    font-size: 28px;
    font-weight: 300;
    color: var(--color-primary);
    transition: all 0.3s ease;
}

.faq__question:hover .faq__icon {
    transform: rotate(90deg);
}

.faq__question[aria-expanded="true"] .faq__icon {
    transform: rotate(45deg);
}

.faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq__answer p {
    padding: 0 24px 24px;
    font-size: 16px;
    color: var(--color-text-light);
    line-height: 1.7;
}

.faq__question[aria-expanded="true"] + .faq__answer {
    max-height: 500px;
}

/* ================================
   SERVICE AREAS SECTION
   ================================ */

.service-areas__content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-areas__group {
    background-color: var(--color-white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.service-areas__group:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.service-areas__badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.service-areas__badge svg {
    flex-shrink: 0;
}

.service-areas__badge--primary {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    color: var(--color-text);
}

.service-areas__badge--secondary {
    background: linear-gradient(135deg, #5A5A5A 0%, #7A7A7A 100%);
    color: var(--color-white);
}

.service-areas__description {
    font-size: 15px;
    color: var(--color-text-light);
    line-height: 1.6;
    margin-bottom: 24px;
}

.service-areas__list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 12px;
}

.service-areas__item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background-color: var(--color-grey-light);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text);
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.service-areas__item:hover {
    background-color: rgba(254, 191, 1, 0.1);
    border-left-color: var(--color-primary);
    transform: translateX(5px);
}

.service-areas__item svg {
    flex-shrink: 0;
    color: var(--color-primary);
}

/* Responsive */
@media (max-width: 992px) {
    .service-areas__content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .service-areas__group {
        padding: 30px;
    }
    
    .service-areas__list {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
}

@media (max-width: 768px) {
    .service-areas__group {
        padding: 25px;
    }
    
    .service-areas__badge {
        font-size: 14px;
        padding: 10px 20px;
        gap: 10px;
    }
    
    .service-areas__badge svg {
        width: 20px;
        height: 20px;
    }
    
    .service-areas__list {
        grid-template-columns: 1fr;
    }
    
    .service-areas__item {
        padding: 12px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .service-areas__group {
        padding: 20px;
    }
    
    .service-areas__badge {
        font-size: 13px;
        padding: 8px 16px;
        gap: 8px;
    }
    
    .service-areas__description {
        font-size: 14px;
    }
}

/* ================================
   CTA SECTION
   ================================ */

.cta {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    padding: 80px 0;
}

.cta__content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta__title {
    font-size: clamp(28px, 5vw, 42px);
    font-weight: 900;
    color: var(--color-text);
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.cta__subtitle {
    font-size: clamp(16px, 3vw, 20px);
    color: var(--color-text);
    margin-bottom: 40px;
    line-height: 1.7;
}

.cta__buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: var(--color-dark);
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 800;
    font-size: 16px;
    letter-spacing: 1px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(254, 191, 1, 0.4);
    animation: pulse 2s ease-in-out infinite;
}

.cta__badge svg {
    flex-shrink: 0;
}

.cta__features {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.cta__feature {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-text);
    display: flex;
    align-items: center;
    gap: 8px;
}

.cta__feature svg {
    flex-shrink: 0;
    color: var(--color-primary);
}

.cta__guarantee {
    margin-top: 30px;
    padding: 20px;
    background-color: rgba(254, 191, 1, 0.1);
    border-radius: 8px;
}

.cta__guarantee p {
    font-size: 15px;
    color: var(--color-text);
    margin: 0;
}

.cta__urgency {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text-light);
    margin-top: 30px;
    animation: pulse 2s ease-in-out infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.cta__urgency svg {
    flex-shrink: 0;
    color: var(--color-primary);
}

/* ================================
   FOOTER
   ================================ */

.footer {
    background-color: var(--color-dark);
    color: var(--color-white);
    padding: 60px 0 30px;
}

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

.footer__logo-text {
    font-size: 22px;
    font-weight: 900;
    color: var(--color-primary);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.footer__logo {
    height: 60px;
    width: auto;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.footer__description {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

.footer__title {
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    color: var(--color-primary);
}

.footer__links li,
.footer__contact li {
    margin-bottom: 12px;
}

.footer__links a,
.footer__contact a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

.footer__links a:hover,
.footer__contact a:hover {
    color: var(--color-primary);
    transform: translateX(5px);
    text-shadow: 0 0 10px rgba(254, 191, 1, 0.3);
}

.footer__contact strong {
    color: var(--color-white);
    display: block;
    margin-bottom: 4px;
}

.footer__guarantee {
    margin-top: 20px;
    font-weight: 600;
    color: var(--color-primary);
}

.footer__social {
    margin-top: 20px;
}

.footer__social a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-white);
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.footer__social a:hover {
    background: var(--color-primary);
    color: var(--color-text);
    transform: translateY(-2px);
}

.footer__social svg {
    width: 20px;
    height: 20px;
}

.footer__bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.footer__bottom a {
    color: var(--color-primary);
    transition: var(--transition);
}

.footer__bottom a:hover {
    text-decoration: underline;
    color: var(--color-secondary);
}

/* ================================
   SCROLL ANIMATIONS
   ================================ */

.section {
    animation: fadeIn 0.8s ease-out;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Back to top button style if added */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--color-primary);
    color: var(--color-text);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(254, 191, 1, 0.4);
    transition: all 0.3s ease;
    cursor: pointer;
    z-index: 999;
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(254, 191, 1, 0.6);
}

/* Add subtle pulse animation to CTA buttons */
.cta .btn--primary {
    animation: float 3s ease-in-out infinite;
}

/* Image loading animation */
img {
    opacity: 0;
    animation: fadeIn 0.6s ease-out forwards;
}

/* Stagger animation delays for cards */
.usp__card:nth-child(1) { animation: fadeInUp 0.6s ease-out 0.1s backwards; }
.usp__card:nth-child(2) { animation: fadeInUp 0.6s ease-out 0.2s backwards; }
.usp__card:nth-child(3) { animation: fadeInUp 0.6s ease-out 0.3s backwards; }
.usp__card:nth-child(4) { animation: fadeInUp 0.6s ease-out 0.4s backwards; }

.service__card:nth-child(1) { animation: fadeInUp 0.6s ease-out 0.1s backwards; }
.service__card:nth-child(2) { animation: fadeInUp 0.6s ease-out 0.2s backwards; }
.service__card:nth-child(3) { animation: fadeInUp 0.6s ease-out 0.3s backwards; }
.service__card:nth-child(4) { animation: fadeInUp 0.6s ease-out 0.4s backwards; }

.process__step:nth-child(1) { animation: scaleIn 0.5s ease-out 0.1s backwards; }
.process__step:nth-child(2) { animation: scaleIn 0.5s ease-out 0.2s backwards; }
.process__step:nth-child(3) { animation: scaleIn 0.5s ease-out 0.3s backwards; }
.process__step:nth-child(4) { animation: scaleIn 0.5s ease-out 0.4s backwards; }

/* ================================
   RESPONSIVE DESIGN
   ================================ */

@media (max-width: 1200px) {
    .services__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    :root {
        --section-padding: 60px;
    }
    
    /* Hero Section - Tablet */
    .hero {
        padding-top: 85px;
    }
    
    .hero__content {
        padding: 50px 20px;
        max-width: 800px;
    }
    
    /* Homepage Hero - Tablet Landscape */
    .hero__container {
        padding: 0 60px;
    }
    
    .hero__title-main {
        font-size: clamp(24px, 6vw, 36px);
    }
    
    .hero__description {
        font-size: 16px;
    }
    
    .hero__badge {
        font-size: 13px;
        padding: 10px 22px;
    }
    
    .hero__benefits {
        gap: 16px;
    }
    
    .hero__benefit {
        font-size: 15px;
    }
    
    .hero__cta {
        gap: 18px;
    }
    
    /* Page Hero - Tablet */
    .page-hero {
        padding: 120px 0 80px;
        min-height: 65vh;
    }
    
    .page-hero__title {
        font-size: clamp(38px, 6vw, 56px);
    }
    
    .page-hero__subtitle {
        font-size: clamp(17px, 2.2vw, 22px);
    }
    
    .page-hero__badge {
        font-size: 13px;
        padding: 9px 18px;
        margin-bottom: 22px;
    }
    
    .page-hero__cta {
        gap: 14px;
        margin-top: 30px;
    }
    
    .page-hero__stats {
        gap: 35px;
        margin-top: 35px;
    }
    
    .page-hero__stat-number {
        font-size: clamp(32px, 4.5vw, 44px);
    }
    
    .page-hero__contact-methods {
        gap: 18px;
        margin-top: 30px;
    }
    
    .page-hero__method {
        padding: 13px 26px;
        font-size: 15px;
    }
    
    .about__content {
        gap: 40px;
    }
    
    .about__text {
        flex: 1 1 100%;
        order: 2;
    }
    
    .about__image {
        flex: 1 1 100%;
        order: 1;
        max-width: 350px;
        margin: 0 auto;
    }
    
    .services__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Nav menu adjustments for tablets */
    .nav__menu {
        gap: 20px;
    }
    
    .nav__list {
        gap: 20px;
    }
    
    .nav__link {
        font-size: 14px;
    }
    
    .nav__cta .btn {
        padding: 10px 16px;
        font-size: 13px;
    }
    
    /* Footer adjustments for tablets */
    .footer__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 992px) {
    .testimonials__grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 25px;
    }
}

@media (max-width: 768px) {
    /* Prevent hero background zoom on mobile */
    .hero--homepage {
        background-attachment: scroll !important;
        background-size: cover !important;
        background-position: center center !important;
        transform: none !important;
        will-change: auto !important;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        -webkit-perspective: 1000;
        perspective: 1000;
    }
    
    .hero--homepage::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: inherit;
        background-attachment: scroll;
        z-index: -1;
        transform: translateZ(0);
    }
    
    .hero {
        -webkit-overflow-scrolling: touch;
        position: relative;
        touch-action: pan-y;
    }
    
    .hero__container,
    .hero__content-wrapper {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
    
    /* Mobile Navigation Phone Icon - Circular with Yellow Background and Pulse */
    .nav__contact {
        background-color: var(--color-primary);
        width: 48px;
        height: 48px;
        border-radius: 50%;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        animation: pulseGlow 2.5s ease-in-out infinite;
        box-shadow: 0 2px 8px rgba(254, 191, 1, 0.4);
    }
    
    .nav__contact-icon {
        width: 24px;
        height: 24px;
        color: var(--color-text);
    }
    
    .testimonials__grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin: 40px 0;
    }
    
    .testimonial__card {
        padding: 25px;
    }
    
    /* Tablet Hero Responsive Styles */
    .hero__container {
        padding: 0 30px;
    }
    
    .hero__content-wrapper {
        max-width: 500px;
    }
    
    /* Show line breaks on tablet/mobile */
    .hero__title-break {
        display: inline;
    }
    
    .hero__overlay {
        background: linear-gradient(to right, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.65) 100%);
    }
    
    .hero__title-main {
        font-size: clamp(22px, 6vw, 34px);
    }
    
    .hero__description {
        font-size: 16px;
    }
    
    .hero__cta-buttons {
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        flex-wrap: wrap;
    }
    
    .hero__cta-buttons .btn {
        width: 100%;
        max-width: 250px;
    }
    
    .nav__menu {
        position: fixed;
        top: 90px;
        left: -100%;
        width: 100%;
        background-color: var(--color-white);
        flex-direction: column;
        padding: 40px 20px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        transition: var(--transition);
        gap: 20px;
        align-items: center;
    }
    
    .nav__menu.active {
        left: 0;
    }
    
    .nav__list {
        flex-direction: column;
        width: 100%;
        gap: 20px;
        align-items: center;
    }
    
    .nav__item {
        width: 100%;
        text-align: center;
    }
    
    .nav__toggle {
        display: flex;
    }
    
    .nav__cta {
        width: 100%;
        margin-top: 20px;
        display: flex;
        justify-content: center;
    }
    
    .nav__cta .btn {
        width: 100%;
        max-width: 280px;
    }
    
    /* Hero Section Responsive */
    .hero {
        min-height: 100vh;
        padding-top: 80px;
    }
    
    .hero__content {
        padding: 40px 20px;
    }
    
    .hero__badge {
        padding: 10px 20px;
        font-size: 13px;
        margin-bottom: 20px;
    }
    
    .hero__benefits {
        gap: 12px;
        margin: 20px 0;
    }
    
    .hero__benefit {
        font-size: 14px;
        padding: 6px 12px;
    }
    
    .hero__urgency {
        font-size: 14px;
        margin-top: 16px;
    }
    
    .hero__cta {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    /* Page Hero Responsive - Mobile */
    .page-hero {
        padding: 100px 0 60px;
        min-height: 60vh;
    }
    
    .page-hero__content {
        padding: 0 20px;
    }
    
    .page-hero__badge {
        font-size: 12px;
        padding: 8px 16px;
        margin-bottom: 20px;
        gap: 6px;
    }
    
    .page-hero__badge svg {
        width: 18px;
        height: 18px;
    }
    
    .page-hero__title {
        font-size: clamp(32px, 8vw, 48px);
        margin-bottom: 18px;
    }
    
    .page-hero__subtitle {
        font-size: clamp(16px, 3.5vw, 20px);
        padding: 0 10px;
    }
    
    .page-hero__cta {
        flex-direction: column;
        gap: 12px;
        margin-top: 28px;
    }
    
    .page-hero__cta .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .page-hero__stats {
        gap: 30px;
        margin-top: 30px;
    }
    
    .page-hero__stat-number {
        font-size: clamp(32px, 8vw, 40px);
    }
    
    .page-hero__stat-label {
        font-size: 13px;
    }
    
    .page-hero__contact-methods {
        flex-direction: column;
        gap: 12px;
        margin-top: 28px;
    }
    
    .page-hero__method {
        width: 100%;
        max-width: 300px;
        justify-content: center;
        padding: 12px 24px;
        font-size: 15px;
    }
    
    /* About section - Image above title on mobile */
    .about__text {
        order: 2;
    }
    
    .about__image {
        order: 1;
    }
    
    /* Center CTA buttons on mobile and make them full width */
    .about__cta {
        justify-content: center;
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .about__cta .btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    
    .usp__grid,
    .services__grid,
    .process__grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials__grid .testimonial__card {
        padding: 25px;
    }
    
    .testimonials__marquee .testimonial__card {
        min-width: 300px;
        max-width: 300px;
        padding: 25px;
    }
    
    .testimonial__text {
        font-size: 14px;
    }
    
    .about__cta {
        flex-direction: column;
        align-items: flex-start;
    }
    
    /* Footer responsive */
    .footer__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer__col {
        text-align: center;
    }
    
    .footer__links,
    .footer__contact {
        text-align: center;
    }
    
    /* Header responsive */
    .nav__logo-container {
        width: 100%;
        justify-content: space-between;
    }
    
    .nav__contact-text {
        display: none;
    }
    
    .nav__contact {
        padding: 8px;
    }
}

/* Extra Small Mobile - Below 428px */
@media (max-width: 428px) {
    /* Mobile Navigation Phone Icon - Slightly Smaller on Extra Small Mobile */
    .nav__contact {
        width: 46px;
        height: 46px;
    }
    
    .nav__contact-icon {
        width: 24px;
        height: 24px;
    }
    
    /* Hero Section - Extra Small Mobile */
    .hero__container {
        padding: 0 15px;
    }
    
    .hero__content-wrapper {
        max-width: 100%;
        text-align: left;
    }
    
    /* Show line breaks on mobile */
    .hero__title-break {
        display: inline;
    }
    
    .hero__title-main {
        font-size: clamp(18px, 8.5vw, 24px);
        line-height: 1.15;
        text-align: left;
        margin: 0.3rem 0 0.6rem 0;
    }
    
    .hero__subtitle-text {
        font-size: 0.68em;
        margin-bottom: 0.25rem;
        text-align: left;
    }
    
    .hero__description {
        font-size: 14.5px;
        line-height: 1.4;
        text-align: left;
    }
    
    .hero__features-list {
        align-items: flex-start;
        gap: 7px;
        margin: 0.9rem 0;
    }
    
    .hero__feature-item {
        justify-content: flex-start;
        text-align: left;
        font-size: 0.78em;
    }
    
    .hero__cta-buttons {
        flex-direction: column;
        gap: 8px;
        align-items: flex-start;
        margin-top: 1.2rem;
    }
    
    .hero__cta-buttons .btn {
        width: 100%;
        max-width: 260px;
        white-space: normal;
        text-align: center;
        padding: 10px 18px;
        font-size: 12px;
    }
    
    .hero__rating-badge {
        font-size: 0.68em;
        padding: 4px 9px;
    }
    
}

@media (max-width: 480px) {
    :root {
        --section-padding: 40px;
    }
    
    .section__header {
        margin-bottom: 40px;
    }
    
    /* Mobile Navigation Phone Icon - Larger on Small Mobile */
    .nav__contact {
        width: 50px;
        height: 50px;
    }
    
    .nav__contact-icon {
        width: 26px;
        height: 26px;
    }
    
    /* Hero Section - Small Mobile */
    .hero {
        min-height: 100vh;
        padding-top: 70px;
    }
    
    /* Show line breaks on mobile */
    .hero__title-break {
        display: inline;
    }
    
    .hero__content {
        padding: 30px 15px;
    }
    
    .hero__badge {
        padding: 8px 16px;
        font-size: 12px;
        margin-bottom: 16px;
        gap: 6px;
    }
    
    .hero__badge-icon svg {
        width: 18px;
        height: 18px;
    }
    
    .hero__benefits {
        gap: 10px;
        margin: 16px 0;
        flex-direction: column;
        align-items: center;
    }
    
    .hero__benefit {
        font-size: 13px;
        padding: 6px 12px;
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .hero__benefit svg {
        width: 18px;
        height: 18px;
    }
    
    .hero__urgency {
        font-size: 13px;
        margin-top: 12px;
        flex-direction: column;
        gap: 6px;
    }
    
    .hero__urgency svg {
        width: 18px;
        height: 18px;
    }
    
    .hero__cta {
        gap: 12px;
        margin-top: 30px;
    }
    
    .hero__cta .btn {
        max-width: 100%;
        padding: 14px 30px;
        font-size: 15px;
    }
    
    /* Page Hero - Small Mobile */
    .page-hero {
        padding: 90px 0 50px;
        min-height: 55vh;
    }
    
    .page-hero__content {
        padding: 0 15px;
    }
    
    .page-hero__badge {
        font-size: 11px;
        padding: 7px 14px;
        margin-bottom: 18px;
        gap: 5px;
    }
    
    .page-hero__badge svg {
        width: 16px;
        height: 16px;
    }
    
    .page-hero__title {
        font-size: clamp(28px, 9vw, 40px);
        margin-bottom: 16px;
        letter-spacing: -0.5px;
    }
    
    .page-hero__subtitle {
        font-size: clamp(15px, 4vw, 18px);
        padding: 0 5px;
        line-height: 1.5;
    }
    
    .page-hero__cta {
        flex-direction: column;
        gap: 10px;
        margin-top: 25px;
    }
    
    .page-hero__cta .btn {
        width: 100%;
        max-width: 100%;
        padding: 14px 24px;
        font-size: 14px;
    }
    
    .page-hero__stats {
        gap: 25px;
        margin-top: 28px;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .page-hero__stat {
        min-width: 80px;
    }
    
    .page-hero__stat-number {
        font-size: clamp(28px, 9vw, 36px);
        margin-bottom: 6px;
    }
    
    .page-hero__stat-label {
        font-size: 11px;
        letter-spacing: 0.5px;
    }
    
    .page-hero__contact-methods {
        flex-direction: column;
        gap: 10px;
        margin-top: 25px;
    }
    
    .page-hero__method {
        width: 100%;
        max-width: 100%;
        justify-content: center;
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .page-hero__method svg {
        width: 20px;
        height: 20px;
    }
    
    .testimonials__grid .testimonial__card {
        padding: 20px;
    }
    
    .testimonials__marquee .testimonial__card {
        min-width: 280px;
        max-width: 280px;
        padding: 20px;
    }
    
    .testimonials__marquee {
        padding: 30px 0;
    }
    
    /* Header mobile adjustments */
    .nav {
        padding: 12px 15px;
    }
    
    .nav__logo-text {
        font-size: 16px;
    }
    
    .nav__logo-img {
        width: 35px;
        height: 35px;
    }
    
    .nav__logo-container {
        gap: 12px;
    }
    
    .nav__contact {
        padding: 6px;
    }
    
    .nav__contact-icon {
        width: 18px;
        height: 18px;
    }
    
    .nav__menu {
        top: 60px;
    }
    
    /* Footer mobile adjustments */
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer__grid {
        gap: 30px;
    }
    
    .footer__logo-text {
        font-size: 18px;
    }
    
    .footer__title {
        font-size: 16px;
    }
    
    .footer__description,
    .footer__links,
    .footer__contact {
        font-size: 14px;
    }
    
    .footer__social a {
        padding: 6px 12px;
        font-size: 14px;
    }
    
    .footer__bottom {
        font-size: 12px;
        padding-top: 20px;
    }
    
    /* Mobile Hero Section Responsive Styles */
    .hero__container {
        padding: 0 20px;
        justify-content: flex-start;
    }
    
    .hero__content-wrapper {
        max-width: 100%;
        text-align: left;
    }
    
    /* Show line breaks on mobile */
    .hero__title-break {
        display: inline;
    }
    
    .hero__title-main {
        font-size: clamp(20px, 7.5vw, 28px);
        line-height: 1.15;
        text-align: left;
    }
    
    .hero__subtitle-text {
        font-size: 0.7em;
        margin-bottom: 0.35rem;
        text-align: left;
    }
    
    .hero__description {
        font-size: 15px;
        line-height: 1.45;
        text-align: left;
    }
    
    .hero__features-list {
        align-items: flex-start;
    }
    
    .hero__feature-item {
        justify-content: flex-start;
        text-align: left;
        font-size: 0.8em;
    }
    
    .hero__cta-buttons {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }
    
    .hero__cta-buttons .btn {
        width: 100%;
        max-width: 280px;
        white-space: normal;
        text-align: center;
        padding: 12px 20px;
        font-size: 13px;
    }
    
    .hero__rating-badge {
        font-size: 0.7em;
    }
}

/* ================================
   CONTACT SECTION
   ================================ */

.contact {
    background: var(--color-background);
}

.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    margin-top: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    overflow: hidden;
}

/* Contact Info (Left Side - Dark) */
.contact__info {
    background: #1e3a5f;
    background: -webkit-linear-gradient(135deg, #1e3a5f 0%, #2a4a6f 100%);
    background: linear-gradient(135deg, #1e3a5f 0%, #2a4a6f 100%);
    padding: 60px 50px;
    color: var(--color-white);
}

.contact__info-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--color-white);
    position: relative;
    padding-bottom: 15px;
}

.contact__info-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--color-primary);
}

.contact__details {
    margin-bottom: 40px;
}

.contact__detail {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    align-items: flex-start;
}

.contact__detail svg {
    flex-shrink: 0;
    color: var(--color-primary);
    margin-top: 2px;
}

.contact__detail p {
    margin: 0;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.contact__detail a {
    color: var(--color-white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact__detail a:hover {
    color: var(--color-primary);
}

.contact__testimonial {
    background: rgba(255, 255, 255, 0.05);
    border-left: 3px solid var(--color-primary);
    padding: 25px;
    margin: 40px 0;
    border-radius: 8px;
}

.contact__testimonial p {
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.95);
}

.contact__testimonial-author {
    margin-top: 15px;
}

.contact__testimonial-author strong {
    display: block;
    margin-bottom: 8px;
    color: var(--color-white);
}

.contact__rating {
    display: flex;
    gap: 4px;
}

.contact__rating svg {
    color: var(--color-primary);
}

.contact__social {
    margin-top: 40px;
}

.contact__social-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--color-white);
}

.contact__social-links {
    display: flex;
    gap: 12px;
}

.contact__social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    transition: all 0.3s ease;
}

.contact__social-links a:hover {
    background: var(--color-primary);
    transform: translateY(-3px);
}

/* Contact Form (Right Side - White) */
.contact__form-wrapper {
    background: var(--color-white);
    padding: 60px 50px;
}

.contact__form-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--color-text);
    position: relative;
    padding-bottom: 15px;
}

.contact__form-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--color-primary);
}

.contact__form-subtitle {
    color: var(--color-text-light);
    margin-bottom: 30px;
}

.contact__form {
    margin-top: 30px;
}

.form__group {
    margin-bottom: 20px;
}

.form__group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--color-text);
    font-size: 14px;
}

.form__input-wrapper {
    position: relative;
}

.form__input-wrapper input {
    padding-right: 45px;
}

.form__input-wrapper svg {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-primary);
}

.form__group input,
.form__group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--color-grey-medium);
    border-radius: 6px;
    font-size: 15px;
    font-family: var(--font-primary);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    box-sizing: border-box;
}

.form__group input:focus,
.form__group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(254, 191, 1, 0.1);
    -webkit-box-shadow: 0 0 0 3px rgba(254, 191, 1, 0.1);
}

.form__group textarea {
    resize: vertical;
    min-height: 120px;
    -webkit-overflow-scrolling: touch;
}

.btn--block {
    width: 100%;
    justify-content: center;
}

.contact__privacy {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-top: 20px;
    font-size: 13px;
    color: var(--color-text-light);
    line-height: 1.6;
}

.contact__privacy svg {
    flex-shrink: 0;
    margin-top: 2px;
}

/* Responsive */
@media (max-width: 968px) {
    .contact__grid {
        grid-template-columns: 1fr;
    }
    
    /* Reorder contact section on mobile - form above contact info */
    .contact__info {
        order: 2;
    }
    
    .contact__form-wrapper {
        order: 1;
    }
    
    .contact__info,
    .contact__form-wrapper {
        padding: 40px 30px;
    }
}

@media (max-width: 600px) {
    .contact__info,
    .contact__form-wrapper {
        padding: 30px 20px;
    }
    
    .contact__info-title,
    .contact__form-title {
        font-size: 20px;
    }
}

/* ================================
   QUOTE POPUP MODAL
   ================================ */

.quote-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.quote-popup.active {
    display: flex;
    opacity: 1;
}

.quote-popup__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 26, 26, 0.7);
    backdrop-filter: blur(4px);
}

.quote-popup__content {
    position: relative;
    background: var(--color-white);
    border-radius: 16px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.quote-popup__close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.05);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--color-text);
}

.quote-popup__close:hover {
    background: rgba(42, 42, 42, 0.1);
    transform: rotate(90deg);
}

.quote-popup__header {
    text-align: center;
    margin-bottom: 30px;
}

.quote-popup__title {
    font-size: 26px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 10px;
    line-height: 1.2;
}

.quote-popup__subtitle {
    color: var(--color-text-light);
    font-size: 15px;
}

.quote-popup__form {
    margin-top: 20px;
}

.quote-popup__form .form__group {
    margin-bottom: 18px;
}

.quote-popup__form .form__group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 6px;
}

.quote-popup__form input,
.quote-popup__form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--color-grey-medium);
    border-radius: 8px;
    font-size: 15px;
    font-family: var(--font-primary);
    transition: all 0.3s ease;
}

.quote-popup__form input:focus,
.quote-popup__form textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(254, 191, 1, 0.1);
}

.quote-popup__form textarea {
    resize: vertical;
    min-height: 100px;
}

.quote-popup__privacy {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-top: 16px;
    font-size: 12px;
    color: var(--color-text-light);
    line-height: 1.5;
    text-align: left;
}

.quote-popup__privacy svg {
    flex-shrink: 0;
    margin-top: 1px;
}

/* Make button element behave like link */
.btn.open-quote-popup {
    border: none;
    cursor: pointer;
    font-family: var(--font-primary);
}

/* Responsive */
@media (max-width: 600px) {
    .quote-popup__content {
        padding: 30px 20px;
        width: 95%;
    }
    
    .quote-popup__close {
        top: 10px;
        right: 10px;
        width: 36px;
        height: 36px;
        z-index: 10;
    }
    
    .quote-popup__close svg {
        width: 20px;
        height: 20px;
    }
    
    .quote-popup__header {
        margin-bottom: 25px;
        padding-top: 10px;
    }
    
    .quote-popup__title {
        font-size: 22px;
    }
}

/* ================================
   GALLERY SECTION
   ================================ */

.gallery {
    background: var(--color-grey-light);
    overflow: hidden;
    padding: 80px 0;
}

/* Hide View More button on desktop */
.gallery__view-more {
    display: none;
}

.gallery .section__header {
    margin-bottom: 50px;
}

.gallery__marquee {
    width: 100%;
    overflow: hidden;
    margin: 20px 0;
    padding: 10px 0;
    -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
    mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}

.gallery__track {
    display: flex;
    gap: 20px;
    will-change: transform;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

/* Right to Left animation (first row) */
.gallery__track--rtl {
    -webkit-animation: marqueeRTL 40s linear infinite;
    animation: marqueeRTL 40s linear infinite;
}

/* Left to Right animation (second row) */
.gallery__track--ltr {
    -webkit-animation: marqueeLTR 40s linear infinite;
    animation: marqueeLTR 40s linear infinite;
}

.gallery__track:hover {
    -webkit-animation-play-state: paused;
    animation-play-state: paused;
}

.gallery__item {
    flex-shrink: 0;
    width: 400px;
    height: 300px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

.gallery__item:hover {
    -webkit-transform: scale(1.05) translateZ(0);
    transform: scale(1.05) translateZ(0);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.gallery__item img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    display: block;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
}

/* Marquee Animations */
@-webkit-keyframes marqueeRTL {
    0% {
        -webkit-transform: translateX(0) translateZ(0);
        transform: translateX(0) translateZ(0);
    }
    100% {
        -webkit-transform: translateX(-50%) translateZ(0);
        transform: translateX(-50%) translateZ(0);
    }
}

@keyframes marqueeRTL {
    0% {
        -webkit-transform: translateX(0) translateZ(0);
        transform: translateX(0) translateZ(0);
    }
    100% {
        -webkit-transform: translateX(-50%) translateZ(0);
        transform: translateX(-50%) translateZ(0);
    }
}

@-webkit-keyframes marqueeLTR {
    0% {
        -webkit-transform: translateX(-50%) translateZ(0);
        transform: translateX(-50%) translateZ(0);
    }
    100% {
        -webkit-transform: translateX(0) translateZ(0);
        transform: translateX(0) translateZ(0);
    }
}

@keyframes marqueeLTR {
    0% {
        -webkit-transform: translateX(-50%) translateZ(0);
        transform: translateX(-50%) translateZ(0);
    }
    100% {
        -webkit-transform: translateX(0) translateZ(0);
        transform: translateX(0) translateZ(0);
    }
}

/* Gallery Modal */
.gallery-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.95);
}

.gallery-modal.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

.gallery-modal__content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 80vh;
    object-fit: contain;
    /* Removed zoomIn animation that might cause disappearing */
}

@keyframes zoomIn {
    from {
        transform: scale(0.7);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.gallery-modal__close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: #fff;
    font-size: 50px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    line-height: 1;
    z-index: 10001;
}

.gallery-modal__close:hover,
.gallery-modal__close:focus {
    color: var(--color-primary);
    transform: rotate(90deg);
}

.gallery-modal__caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #fff;
    padding: 20px;
    font-size: 18px;
}

/* Responsive Gallery */
@media (max-width: 1200px) {
    .gallery__item {
        width: 350px;
        height: 260px;
    }
}

@media (max-width: 992px) {
    .gallery__item {
        width: 300px;
        height: 225px;
    }
    
    .gallery {
        padding: 60px 0;
    }
}

@media (max-width: 768px) {
    /* Gallery becomes 2 column grid on tablet */
    .gallery__marquee {
        -webkit-mask-image: none;
        mask-image: none;
        padding: 0;
        margin: 20px 0;
    }
    
    .gallery__track {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        animation: none !important;
        -webkit-animation: none !important;
        transform: none !important;
        -webkit-transform: none !important;
        padding: 0 20px;
    }
    
    .gallery__item {
        width: 100%;
        height: auto;
        aspect-ratio: 4/3;
    }
    
    /* Mobile gallery - limit to 6 photos */
    .gallery__track .gallery__item:nth-child(n+7) {
        display: none;
    }
    
    /* Hide second marquee row on mobile */
    .gallery__marquee--reverse {
        display: none;
    }
    
    /* Add View More button for mobile */
    .gallery__view-more {
        display: block;
        text-align: center;
        margin-top: 30px;
    }
    
    .gallery__view-more .btn {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 12px 24px;
        background-color: var(--color-primary);
        color: var(--color-text);
        border-radius: 6px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        transition: var(--transition);
        text-decoration: none;
    }
    
    .gallery__view-more .btn:hover {
        background-color: #FFC700;
        transform: translateY(-2px);
        box-shadow: 0 6px 25px rgba(255, 199, 0, 0.6);
    }
    
    .gallery {
        padding: 50px 0;
    }
    
    .gallery-modal__close {
        top: 10px;
        right: 20px;
        font-size: 40px;
    }
    
    .gallery-modal__content {
        max-width: 95%;
    }
}

@media (max-width: 480px) {
    /* Gallery becomes single column grid on mobile */
    .gallery__marquee {
        -webkit-mask-image: none;
        mask-image: none;
        padding: 0;
        margin: 20px 0;
    }
    
    .gallery__track {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
        animation: none !important;
        -webkit-animation: none !important;
        transform: none !important;
        -webkit-transform: none !important;
        padding: 0 20px;
    }
    
    .gallery__item {
        width: 100%;
        height: auto;
        aspect-ratio: 4/3;
        border-radius: 8px;
    }
    
    .gallery__item img {
        width: 100%;
        height: 100%;
    }
    
    .gallery-modal__close {
        font-size: 35px;
        right: 15px;
    }
    
    .gallery-modal__caption {
        font-size: 14px;
        padding: 15px;
    }
}

/* ================================
   EXIT INTENT POPUP STYLES
   ================================ */

/* Exit Intent Popup Styles */
.exit-popup-overlay[aria-hidden="true"] {
    display: none;
}

.exit-popup-overlay[aria-hidden="false"] {
    display: flex;
}

.exit-popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.8);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    animation: fadeIn .3s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.exit-popup-container {
    background: white;
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: slideUp .3s ease-out;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

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

.exit-popup-content {
    padding: 40px 30px 30px;
}

.exit-popup-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 32px;
    color: #999;
    cursor: pointer;
    line-height: 1;
    padding: 5px;
    transition: color 0.3s ease;
}

.exit-popup-close:hover {
    color: #333;
}

.exit-popup-header {
    text-align: center;
    margin-bottom: 30px;
}

.exit-popup-header h2 {
    color: var(--color-text);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.2;
}

.exit-popup-header h3 {
    color: var(--color-primary);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.exit-popup-header p {
    color: #666;
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
}

.exit-popup-form {
    max-width: 100%;
}

.exit-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 15px;
}

.exit-popup-form p {
    margin: 0 0 15px 0;
}

.exit-popup-form label {
    display: block;
    color: var(--color-text);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.exit-form-control {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--color-grey-medium);
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.exit-form-control:focus {
    border-color: var(--color-primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(254, 191, 1, 0.1);
}

.exit-popup-btn {
    width: 100%;
    background-color: var(--color-primary);
    color: var(--color-text);
    border: none;
    padding: 15px 25px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
    box-shadow: 0 4px 15px rgba(254, 191, 1, 0.3);
}

.exit-popup-btn:hover {
    background-color: #FFC700;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 199, 0, 0.6);
}

.exit-popup-btn span {
    margin-left: 8px;
    font-size: 1.2em;
}

.exit-form-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #666;
    font-size: 0.85rem;
    text-align: center;
}

.exit-form-guarantee svg {
    color: var(--color-primary);
    flex-shrink: 0;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .exit-popup-container {
        max-width: 95%;
        margin: 20px;
    }

    .exit-popup-content {
        padding: 30px 20px 20px;
    }
    
    .exit-popup-close {
        top: 10px;
        right: 15px;
        font-size: 28px;
        padding: 8px;
        z-index: 10;
    }
    
    .exit-popup-header {
        margin-bottom: 25px;
        padding-top: 15px;
    }

    .exit-popup-header h2 {
        font-size: 1.6rem;
        padding-right: 30px;
    }

    .exit-popup-header h3 {
        font-size: 1.1rem;
    }

    .exit-form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .exit-form-control {
        font-size: 0.9rem;
        padding: 10px 12px;
    }

    .exit-popup-btn {
        font-size: 1rem;
        padding: 12px 20px;
    }
}

@media (max-width: 480px) {
    .exit-popup-close {
        top: 8px;
        right: 12px;
        font-size: 26px;
    }
    
    .exit-popup-header {
        padding-top: 20px;
    }
    
    .exit-popup-header h2 {
        font-size: 1.4rem;
        padding-right: 35px;
    }

    .exit-popup-header h3 {
        font-size: 1rem;
    }

    .exit-popup-header p {
        font-size: 0.9rem;
    }
    
    .quote-popup__close {
        top: 8px;
        right: 8px;
        width: 34px;
        height: 34px;
    }
    
    .quote-popup__header {
        padding-top: 15px;
    }
}

/* Large Screen Optimizations */
@media (min-width: 1200px) {
    .nav.container {
        max-width: 100%;
        padding: 12px 60px;
    }
    
    .nav__logo-container {
        gap: 40px;
    }
    
    .nav__menu {
        gap: 60px;
    }
    
    .nav__list {
        gap: 40px;
    }
    
    .nav__link {
        font-size: 16px;
    }
    
    .nav__contact {
        padding: 10px 20px;
    }
}

@media (min-width: 1600px) {
    .nav.container {
        padding: 12px 80px;
    }
    
    .nav__logo-container {
        gap: 60px;
    }
    
    .nav__menu {
        gap: 80px;
    }
}

