:root {
    /* Primary Colors */
    --primary-navy: #1B365D;
    --primary-navy-light: #2C4A73;
    --primary-navy-dark: #0F1F35;
    --primary-emerald: #50C878;
    --primary-emerald-light: #6DD68A;
    --primary-emerald-dark: #3FA65E;
    --primary-orange: #FF6B35;
    --primary-orange-light: #FF8A5C;
    --primary-orange-dark: #E55A2B;
    
    /* Neutral Colors */
    --white: #FFFFFF;
    --gray-50: #FAFAFA;
    --gray-100: #F5F5F5;
    --gray-200: #E5E5E5;
    --gray-300: #D4D4D4;
    --gray-400: #A3A3A3;
    --gray-500: #737373;
    --gray-600: #525252;
    --gray-700: #404040;
    --gray-800: #262626;
    --gray-900: #171717;
    
    /* Status Colors */
    --success: #10B981;
    --warning: #F59E0B;
    --error: #EF4444;
    
    /* Typography */
    --font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-weight-light: 300;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --font-weight-extra-bold: 800;
    
    /* Spacing */
    --section-padding: 80px 0;
    --container-max-width: 1200px;
    --container-padding: 0 20px;
    --header-height: 100px;
    
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 32px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
}

body {
    font-family: var(--font-family);
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-700);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

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

/* Typography */
.section__title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: var(--font-weight-extra-bold);
    color: var(--gray-900);
    margin-bottom: 1rem;
    line-height: 1.1;
    text-align: center;
}

.section__title--left {
    text-align: left;
}

.section__subtitle {
    font-size: 1.25rem;
    color: var(--gray-600);
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
    line-height: 1.5;
}

.section__header {
    margin-bottom: 4rem;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--gray-200);
    z-index: 1000;
    transition: var(--transition);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    height: var(--header-height);
    min-height: var(--header-height);
}

.nav__logo {
    height: 100%;
    display: flex;
    align-items: center;
}

.nav__logo .logo {
    height: 100%;
    width: auto;
    max-width: 420px;
    object-fit: contain;
    display: block;
    transition: var(--transition);
}

.nav__menu {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
}

.nav__link {
    font-weight: var(--font-weight-medium);
    color: var(--gray-700);
    text-decoration: none;
    padding: 0.5rem 0;
    position: relative;
    transition: var(--transition);
}

.nav__link:hover {
    color: var(--primary-navy);
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-emerald);
    transition: var(--transition);
}

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

.nav__phone {
    background: var(--primary-emerald);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: var(--font-weight-semibold);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.nav__phone:hover {
    background: var(--primary-emerald-dark);
    transform: translateY(-2px);
}

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    padding: 8px;
}

.nav__toggle span {
    width: 25px;
    height: 3px;
    background: var(--gray-700);
    transition: var(--transition);
}

/* Hero Section - Full Width Background */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh; /* Dynamic viewport height for modern browsers */
    display: flex;
    align-items: center;
    overflow: hidden;
    width: 100%;
}

.hero__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
    background-color: var(--primary-navy-dark);
}

.hero__bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 45%;
    transition: object-position 0.3s ease;
}

@media (max-width: 768px) {
    .hero__bg-image {
        object-position: center 55%;
    }
}

.hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(27, 54, 93, 0.05) 0%, rgba(27, 54, 93, 0.05) 45%, rgba(27, 54, 93, 0.48) 58%, rgba(27, 54, 93, 0.58) 75%, rgba(27, 54, 93, 0.34) 100%);
    z-index: 2;
}

@media (max-width: 768px) {
    .hero__overlay {
        background: linear-gradient(180deg, rgba(27, 54, 93, 0.05) 0%, rgba(27, 54, 93, 0.05) 43%, rgba(27, 54, 93, 0.58) 62%, rgba(27, 54, 93, 0.68) 80%, rgba(27, 54, 93, 0.4) 100%);
    }
}

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

.hero__content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 1rem;
    color: var(--white);
    width: 100%;
    box-sizing: border-box;
}

.hero__title {
    font-size: clamp(2rem, 8vw, 6rem);
    font-weight: var(--font-weight-extra-bold);
    color: var(--white);
    margin-bottom: 2rem;
    line-height: 1.1;
    text-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
    word-wrap: break-word;
    text-align: center;
    width: 100%;
}

.hero__title--main {
    white-space: nowrap;
    display: inline-block;
    font-weight: var(--font-weight-medium);
}

.hero__title--accent {
    color: var(--primary-emerald);
    display: block;
    font-weight: var(--font-weight-medium);
    white-space: nowrap;
    position: relative;
    text-align: left;
    margin-left: 0.5em; /* Position O under the T in STOP */
    width: fit-content;
    font-size: 0.70em; /* 30% smaller than inherited size */
}

.hero__subtitle {
    font-size: clamp(0.95rem, 2.5vw, 1.375rem);
    color: rgba(255, 255, 255, 0.96);
    margin-bottom: 3rem;
    line-height: 1.6;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
    max-width: 100%;
    word-wrap: break-word;
    font-weight: var(--font-weight-bold);
}

.hero__cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn--hero {
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
    font-weight: var(--font-weight-semibold);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    min-width: 220px;
}

.btn--hero:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border: 2px solid transparent;
    border-radius: var(--radius-lg);
    font-size: 1rem;
    font-weight: var(--font-weight-semibold);
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    min-width: 180px;
    white-space: nowrap;
}

.btn--stacked {
    flex-direction: column;
    align-items: center;
    gap: 0.15rem;
    text-align: center;
}

.btn__title {
    display: block;
    line-height: 1.1;
}

.btn__subtitle {
    display: block;
    font-size: 0.75em;
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.2;
    text-transform: none;
}

.btn--primary {
    background: var(--primary-orange);
    color: var(--white);
    border-color: var(--primary-orange);
}

.btn--primary:hover {
    background: var(--primary-orange-dark);
    border-color: var(--primary-orange-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn--outline {
    background: transparent;
    color: var(--primary-navy);
    border-color: var(--primary-navy);
}

.btn--outline:hover {
    background: var(--primary-navy);
    color: var(--white);
    transform: translateY(-2px);
}

.btn--large {
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
}

.btn--full {
    width: 100%;
}

/* Stats Section */
.stats {
    padding: 4rem 0;
    background: var(--primary-navy);
    color: var(--white);
}

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

.stats__item {
    text-align: center;
}

.stats__number {
    font-size: 3rem;
    font-weight: var(--font-weight-extra-bold);
    color: var(--primary-emerald);
    display: block;
    line-height: 1;
}

.stats__label {
    font-size: 1rem;
    color: var(--gray-200);
    margin-top: 0.5rem;
    font-weight: var(--font-weight-medium);
}

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

.service__card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service__media {
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 220px;
    width: 100%;
    margin-bottom: 1.5rem;
}

.service__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.4s ease;
}

.service__card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

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

.service__card--featured {
    border-color: var(--primary-emerald);
    transform: scale(1.05);
}

.service__card--featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.service__badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-emerald);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-lg);
    font-size: 0.875rem;
    font-weight: var(--font-weight-semibold);
}

.service__icon {
    width: 60px;
    height: 60px;
    background: var(--primary-emerald);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.service__card h3 {
    font-size: 1.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.service__card p {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service__features {
    list-style: none;
}

.service__features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--gray-700);
}

.service__features i {
    color: var(--success);
    font-size: 0.875rem;
}

.service__cta {
    margin-top: auto;
    margin-bottom: 0;
    padding-top: 1.5rem;
    text-align: center;
}

.btn--small {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    min-width: 160px;
}

.service__experience {
    font-weight: var(--font-weight-medium);
    color: var(--gray-700);
    margin-bottom: 1rem !important;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Process Section */
.process__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.process__step {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    position: relative;
    transition: var(--transition);
    border: 2px solid var(--gray-200);
}

.process__step:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-emerald);
}

.process__step--final {
    background: var(--white);
    border-color: var(--gray-200);
    box-shadow: none;
}

.process__step--final .process__number {
    background: var(--primary-emerald);
    color: var(--white);
}

.process__number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--primary-emerald);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: var(--font-weight-bold);
    font-size: 1.125rem;
}

.process__content h3 {
    font-size: 1.25rem;
    font-weight: var(--font-weight-bold);
    color: var(--gray-900);
    margin-bottom: 1rem;
    margin-top: 1rem;
}

.process__content p {
    color: var(--gray-600);
    line-height: 1.5;
}

.process__cta {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-200);
}

/* Testimonials */
.testimonials__slider {
    margin: 0 auto 3rem;
    max-width: clamp(360px, 96vw, 1200px);
    overflow: hidden;
    border-radius: var(--radius-xl);
    position: relative;
    box-shadow: var(--shadow-xl);
    background: var(--white);
}

.testimonials__track {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.45s ease;
    padding: 2rem 4rem;
    align-items: center;
    will-change: transform;
}

.testimonials__slider--fallback {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-50);
    border: 1px dashed var(--gray-300);
    padding: 2rem;
    box-shadow: none;
    overflow: visible;
}

.slider__fallback {
    margin: 0;
    color: var(--gray-600);
    line-height: 1.5;
}

.testimonials__slide {
    flex: 0 0 clamp(260px, 28vw, 360px);
    aspect-ratio: 13 / 9;
    border-radius: var(--radius-xl);
    overflow: hidden;
    position: relative;
    cursor: zoom-in;
    box-shadow: var(--shadow-lg);
    background: var(--gray-900);
    transition: transform 0.45s ease, box-shadow 0.45s ease;
}

.testimonials__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.45s ease;
    display: block;
    will-change: transform;
}

.testimonials__slide:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
}

.testimonials__slide:hover img {
    transform: scale(1.08);
}

.testimonials__slide:focus-visible {
    outline: 3px solid rgba(80, 200, 120, 0.65);
    outline-offset: 4px;
}

.testimonials__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: none;
    background: rgba(27, 54, 93, 0.9);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
    z-index: 2;
    box-shadow: 0 12px 30px rgba(17, 24, 39, 0.25);
    backdrop-filter: blur(6px);
}

.testimonials__nav i {
    font-size: 1.35rem;
}

.testimonials__nav--prev {
    left: 1.25rem;
}

.testimonials__nav--next {
    right: 1.25rem;
}

.testimonials__nav:hover,
.testimonials__nav:focus {
    background: rgba(27, 54, 93, 1);
    transform: translateY(-50%) scale(1.08);
    outline: none;
    box-shadow: 0 18px 36px rgba(17, 24, 39, 0.32);
}

.testimonials__nav:active {
    transform: translateY(-50%) scale(0.96);
}

.testimonials__nav.is-holding {
    background: rgba(27, 54, 93, 1);
    transform: translateY(-50%) scale(1.08);
    box-shadow: 0 20px 40px rgba(17, 24, 39, 0.34);
}

.testimonials__nav:focus-visible {
    box-shadow: 0 0 0 3px rgba(80, 200, 120, 0.4);
}

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

.testimonial {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.testimonial:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.testimonial__content {
    margin-bottom: 1.5rem;
}

.testimonial__stars {
    color: var(--primary-emerald);
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

.testimonial__content p {
    font-style: italic;
    color: var(--gray-700);
    line-height: 1.6;
}

.testimonial__author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial__avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial__author strong {
    display: block;
    color: var(--gray-900);
    font-weight: var(--font-weight-semibold);
}

.testimonial__author span {
    color: var(--gray-500);
    font-size: 0.875rem;
}

/* About Section */
.about__content {
    max-width: 1000px;
    margin: 0 auto;
}

.about__intro {
    font-size: 1.25rem;
    color: var(--gray-600);
    line-height: 1.6;
    text-align: center;
    margin-bottom: 3rem;
}

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

.team__member {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.team__member:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.team__member--director {
    border-left: 4px solid var(--primary-emerald);
}

.team__member h3 {
    font-size: 1.25rem;
    font-weight: var(--font-weight-bold);
    color: var(--primary-navy);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.team__member p {
    color: var(--gray-600);
    line-height: 1.6;
}

.team__member--with-photo {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.team__member--with-photo .team__media {
    flex: 0 0 120px;
    max-width: 120px;
    aspect-ratio: 3 / 4;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    background: var(--gray-100);
}

.team__member--with-photo .team__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team__member--with-photo .team__details {
    flex: 1;
}

@media (max-width: 600px) {
    .team__member--with-photo {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .team__member--with-photo .team__media {
        flex: 0 0 auto;
        max-width: 160px;
        width: 100%;
        aspect-ratio: 3 / 4;
    }

    .team__member--with-photo .team__details {
        width: 100%;
    }
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-navy-light) 100%);
    color: var(--white);
}

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

.cta__title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: var(--font-weight-extra-bold);
    margin-bottom: 1rem;
}

.cta__subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
    line-height: 1.6;
}

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

.cta__option {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    padding: 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
}

.cta__icon {
    width: 60px;
    height: 60px;
    background: var(--primary-emerald);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
}

.cta__option h3 {
    font-size: 1.25rem;
    font-weight: var(--font-weight-bold);
    margin-bottom: 1rem;
}

.cta__option p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.btn--secondary {
    background: var(--primary-orange);
    color: var(--white);
    border-color: var(--primary-orange);
}

.btn--secondary:hover {
    background: var(--primary-orange-dark);
    color: var(--white);
    border-color: var(--primary-orange-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Contact Section */
.contact__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact__info h2 {
    font-size: 2rem;
    font-weight: var(--font-weight-bold);
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.contact__info p {
    color: var(--gray-600);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact__details {
    display: grid;
    gap: 1.5rem;
}

.contact__detail {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact__detail i {
    color: var(--primary-emerald);
    font-size: 1.25rem;
    min-width: 20px;
}

.contact__detail h4 {
    font-weight: var(--font-weight-semibold);
    color: var(--gray-900);
    margin-bottom: 0.25rem;
}

.contact__detail a {
    color: var(--primary-navy);
    text-decoration: none;
    font-weight: var(--font-weight-medium);
}

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

/* Forms */
.contact__form,
.consultation__form {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.contact__form h3 {
    font-size: 1.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--gray-900);
    margin-bottom: 1.5rem;
}

.form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form__group {
    margin-bottom: 1rem;
}

.form__group input,
.form__group select,
.form__group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
    background: var(--white);
}

.form__group input:focus,
.form__group select:focus,
.form__group textarea:focus {
    outline: none;
    border-color: var(--primary-emerald);
    box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.1);
}

.form__group input::placeholder,
.form__group textarea::placeholder {
    color: var(--gray-400);
}

/* Footer */
.footer {
    background: var(--gray-900);
    color: var(--white);
    padding: 3rem 0 2rem;
}

.footer__content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-bottom: 2rem;
}

.footer__logo {
    height: 50px;
    max-width: 200px;
    object-fit: contain;
    margin-bottom: 1rem;
}

.footer__description {
    color: var(--gray-400);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer__contact {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer__address {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
    font-weight: var(--font-weight-medium);
}

.footer__address i {
    color: var(--primary-emerald);
}

.footer__phone,
.footer__email {
    color: var(--white);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: var(--font-weight-medium);
    transition: var(--transition);
}

.footer__phone:hover,
.footer__email:hover {
    color: var(--primary-emerald);
}

.footer__links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer__column h4 {
    font-size: 1.125rem;
    font-weight: var(--font-weight-semibold);
    margin-bottom: 1rem;
    color: var(--white);
}

.footer__column ul {
    list-style: none;
}

.footer__column li {
    margin-bottom: 0.5rem;
}

.footer__column li:last-child {
    margin-bottom: 0;
}

.footer__column a {
    color: var(--gray-400);
    text-decoration: none;
    transition: var(--transition);
}

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

.footer__bottom {
    border-top: 1px solid var(--gray-800);
    padding-top: 2rem;
    text-align: center;
    color: var(--gray-400);
    font-size: 0.875rem;
}

.footer__disclaimer {
    margin-top: 0.5rem;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.active {
    opacity: 1;
}

.modal__content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
}

.modal__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--gray-400);
    cursor: pointer;
    transition: var(--transition);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.modal__close:hover {
    color: var(--gray-700);
    background: var(--gray-100);
}

.modal__header {
    margin-bottom: 2rem;
    padding-right: 2rem;
}

.modal__header h2 {
    font-size: 1.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.modal__header p {
    color: var(--gray-600);
}

.modal__note {
    text-align: center;
    font-size: 0.875rem;
    color: var(--gray-500);
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.modal__note i {
    color: var(--success);
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(15, 31, 53, 0.88);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    z-index: 10002;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.lightbox--active {
    opacity: 1;
    pointer-events: auto;
}

.lightbox__overlay {
    position: absolute;
    inset: 0;
    cursor: zoom-out;
}

.lightbox__content {
    position: relative;
    max-width: min(90vw, 960px);
    max-height: 90vh;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    background: var(--gray-900);
}

.lightbox__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lightbox__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    background: rgba(27, 54, 93, 0.85);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s ease, background 0.3s ease;
}

.lightbox__close:hover,
.lightbox__close:focus {
    background: rgba(27, 54, 93, 1);
    transform: scale(1.05);
}

.lightbox__close i {
    font-size: 1.25rem;
}

@media (max-width: 768px) {
    .lightbox {
        padding: 1.5rem;
    }

    .lightbox__content {
        max-width: 95vw;
    }

    .lightbox__close {
        width: 44px;
        height: 44px;
    }
}

@media (max-width: 480px) {
    .lightbox {
        padding: 1rem;
    }

    .lightbox__close {
        top: 0.75rem;
        right: 0.75rem;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    :root {
        --section-padding: 60px 0;
        --header-height: 90px;
    }
    
    .testimonials__track {
        gap: 1.5rem;
        padding: 1.75rem 3.5rem;
    }
    
    .testimonials__slide {
        flex: 0 0 clamp(240px, 36vw, 320px);
    }
    
    .testimonials__nav {
        width: 56px;
        height: 56px;
    }
    
    .service__media {
        height: 200px;
    }
    
    .contact__content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .team__grid {
        grid-template-columns: 1fr;
    }
    
    .footer__content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer__links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 80px;
    }
    
    .nav__menu {
        position: fixed;
        top: var(--header-height);
        left: -100%;
        width: 100%;
        height: calc(100vh - var(--header-height));
        background: var(--white);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding: 2rem 0;
        transition: var(--transition);
        box-shadow: var(--shadow-lg);
        gap: 1rem;
    }
    
    .nav__menu.active {
        left: 0;
    }
    
    .nav__toggle {
        display: flex;
    }
    
    .nav__phone {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    .nav__toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    
    .nav__toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav__toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
    
    .nav__logo .logo {
        max-width: 260px;
    }
    
    .hero {
        min-height: 100vh;
    }
    
    .hero__content {
        padding: 2rem 1.5rem;
        max-width: 800px;
    }
    
    .hero__title {
        font-size: clamp(2rem, 7vw, 4rem);
        margin-bottom: 1.5rem;
        line-height: 1.15;
    }
    
    .hero__subtitle {
        font-size: clamp(1rem, 3vw, 1.25rem);
        margin-bottom: 2.5rem;
        padding: 0 0.5rem;
    }
    
    .testimonials__track {
        gap: 1.5rem;
        padding: 1.5rem 2.75rem;
    }
    
    .testimonials__slide {
        flex: 0 0 clamp(240px, 60vw, 320px);
    }

    .testimonials__nav {
        width: 52px;
        height: 52px;
    }
    
    .service__media {
        height: 180px;
    }
    
    .hero__title--accent {
        text-align: center !important;
        margin-left: 0 !important;
        width: 100% !important;
    }
    
    .hero__cta {
        gap: 1rem;
        flex-wrap: wrap;
    }
    
    .stats__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services__grid,
    .process__grid,
    .testimonials__grid {
        grid-template-columns: 1fr;
    }
    
    .form__row {
        grid-template-columns: 1fr;
    }
    
    .footer__links {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .cta__options {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    :root {
        --container-padding: 0 16px;
        --section-padding: 40px 0;
        --header-height: 68px;
    }
    
    .nav__logo .logo {
        max-width: 200px;
    }
    
    .hero {
        min-height: 100vh;
        width: 100%;
        overflow-x: hidden;
    }
    
    .hero .container {
        width: 100%;
        max-width: 100%;
        padding: 0 0.75rem;
        margin: 0;
        overflow-x: hidden;
    }
    
    .hero__content {
        padding: 2rem 0 1.5rem;
        max-width: 100%;
        margin: 0 auto;
        width: 100%;
        box-sizing: border-box;
    }
    
    .hero__title {
        font-size: clamp(1.2rem, 6vw, 2.5rem);
        margin-bottom: 1rem;
        line-height: 1.3;
        width: 100%;
        overflow-x: hidden;
    }
    
    .hero__title--main {
        font-size: clamp(1rem, 5vw, 2rem);
    }
    
    .hero__title--accent {
        font-size: clamp(0.641rem, 3.206vw, 1.425rem);
        text-align: center !important;
        margin-left: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .hero__subtitle {
        font-size: clamp(0.85rem, 3.5vw, 1rem);
        margin-bottom: 1.8rem;
        line-height: 1.6;
        padding: 0;
        max-width: 100%;
    }
    
    .testimonials__slider {
        margin-bottom: 2rem;
    }
    
    .testimonials__slider--fallback {
        padding: 1.5rem;
    }
    
    .testimonials__track {
        gap: 1.25rem;
        padding: 1.25rem 1.75rem;
    }
    
    .testimonials__slide {
        flex: 0 0 clamp(220px, 88vw, 320px);
    }

    .testimonials__nav {
        width: 48px;
        height: 48px;
    }
    
    .service__media {
        height: 150px;
    }
    
    .hero__cta {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
        width: 100%;
    }
    
    .btn {
        min-width: auto;
        width: 100%;
        max-width: 300px;
        padding: 0.9rem 1.5rem;
        font-size: 0.9rem;
        min-height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .stats__grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .stats__number {
        font-size: 2.5rem;
    }
    
    .service__card,
    .process__step,
    .testimonial {
        padding: 1.5rem;
    }
    
    .modal__content {
        padding: 1.5rem;
        width: 95%;
    }
}

/* Loading Animation */
@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stats__number {
    animation: countUp 0.6s ease-out;
}

/* Scroll Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Focus States */
button:focus,
input:focus,
select:focus,
textarea:focus,
a:focus {
    outline: 2px solid var(--primary-emerald);
    outline-offset: 2px;
}

/* Very Small Screens */
@media (max-width: 375px) {
    .hero {
        min-height: 100vh;
    }
    
    .hero__content {
        padding: 1.5rem 0.75rem 1rem;
        width: calc(100% - 1.5rem);
    }
    
    .hero__title {
        font-size: clamp(1.1rem, 6vw, 2rem);
        margin-bottom: 0.8rem;
        line-height: 1.4;
    }
    
    .hero__title--main {
        font-size: clamp(0.9rem, 4.5vw, 1.5rem);
    }
    
    .hero__title--accent {
        font-size: clamp(0.57rem, 2.85vw, 0.926rem);
        text-align: center !important;
        margin-left: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .hero__subtitle {
        font-size: clamp(0.8rem, 3vw, 0.95rem);
        margin-bottom: 1.3rem;
        line-height: 1.5;
    }
    
    .hero__cta {
        gap: 0.7rem;
    }
    
    .btn {
        padding: 0.75rem 1rem;
        font-size: 0.8rem;
        max-width: 250px;
        min-height: 44px; /* Touch target minimum */
    }
    
    :root {
        --container-padding: 0 10px;
        --header-height: 64px;
    }
}

/* Print Styles */
@media print {
    .header,
    .nav__toggle,
    .modal,
    .btn {
        display: none !important;
    }
    
    .hero {
        margin-top: 0;
        min-height: auto;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
        color: #000;
    }
}