/* SADC Disability Services - $20,000 Premium Design with Floating Leaves */

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

:root {
    --primary: #0066ff;
    --primary-dark: #0052cc;
    --accent: #00d4aa;
    --purple: #7c3aed;
    --text: #0a0a0a;
    --text-light: #5a5a5a;
    --text-lighter: #999;
    --bg: #ffffff;
    --bg-light: #f8f9fb;
    --border: #e5e7eb;
    
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 32px 64px rgba(0, 0, 0, 0.16);
    
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ============================================
   FLOATING LEAVES ANIMATION
============================================ */
.floating-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.leaf {
    position: absolute;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.15), rgba(0, 102, 255, 0.15));
    border-radius: 50% 0 50% 50%;
    box-shadow: 0 4px 12px rgba(0, 212, 170, 0.2);
    animation: float-leaf 20s ease-in-out infinite;
    opacity: 0;
}

.leaf:nth-child(1) {
    left: 10%;
    animation-delay: 0s;
    animation-duration: 18s;
}

.leaf:nth-child(2) {
    left: 25%;
    animation-delay: -5s;
    animation-duration: 22s;
}

.leaf:nth-child(3) {
    left: 40%;
    animation-delay: -10s;
    animation-duration: 20s;
}

.leaf:nth-child(4) {
    left: 60%;
    animation-delay: -15s;
    animation-duration: 24s;
}

.leaf:nth-child(5) {
    left: 75%;
    animation-delay: -3s;
    animation-duration: 19s;
}

.leaf:nth-child(6) {
    left: 85%;
    animation-delay: -12s;
    animation-duration: 21s;
}

.leaf:nth-child(7) {
    left: 50%;
    animation-delay: -8s;
    animation-duration: 23s;
}

.leaf:nth-child(8) {
    left: 30%;
    animation-delay: -18s;
    animation-duration: 25s;
}

@keyframes float-leaf {
    0% {
        opacity: 0;
        transform: translateY(-100px) rotate(0deg);
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        opacity: 0;
        transform: translateY(100vh) rotate(360deg) translateX(100px);
    }
}

/* ============================================
   SCROLL PROGRESS
============================================ */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    width: 0%;
    z-index: 10000;
    transition: width 0.1s ease-out;
}

/* ============================================
   NAVIGATION
============================================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    z-index: 1000;
    transition: transform 0.4s var(--ease), box-shadow 0.3s var(--ease);
}

.nav.scrolled {
    box-shadow: var(--shadow-sm);
}

.nav-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
}

.nav-logo svg {
    display: block;
    height: 48px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-menu a {
    color: var(--text);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s var(--ease);
    position: relative;
}

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

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s var(--ease);
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-cta {
    padding: 0.6rem 1.5rem;
    background: var(--primary);
    color: white !important;
    border-radius: 100px;
    font-weight: 600;
    transition: all 0.3s var(--ease);
}

.nav-cta::after {
    display: none;
}

.nav-cta:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 102, 255, 0.3);
}

.nav-phone {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.25rem;
    background: white;
    border: 1px solid var(--border);
    border-radius: 100px;
    text-decoration: none;
    color: var(--text);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s var(--ease);
}

.nav-phone:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ============================================
   HERO SECTION
============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 10rem 3rem 6rem;
    overflow: hidden;
}

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

.gradient-sphere {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.15;
    animation: sphere-drift 30s ease-in-out infinite;
}

.sphere-1 {
    width: 700px;
    height: 700px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    top: -350px;
    right: -200px;
}

.sphere-2 {
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, #f093fb, #f5576c);
    bottom: -250px;
    left: -200px;
    animation-delay: -10s;
}

.sphere-3 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, #4facfe, #00f2fe);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -20s;
}

@keyframes sphere-drift {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(60px, -60px) scale(1.1);
    }
    66% {
        transform: translate(-50px, 50px) scale(0.9);
    }
}

.hero-content {
    max-width: 1000px;
    text-align: center;
    position: relative;
    z-index: 10;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: rgba(0, 212, 170, 0.1);
    border: 1px solid rgba(0, 212, 170, 0.25);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 2rem;
    animation: fade-slide-down 0.8s var(--ease);
}

.badge-pulse {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse-animation 2s ease-in-out infinite;
}

@keyframes pulse-animation {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 212, 170, 0.7);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.2);
        box-shadow: 0 0 0 10px rgba(0, 212, 170, 0);
    }
}

.hero-title {
    font-size: clamp(2.75rem, 8vw, 6rem);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 1.75rem;
    animation: fade-slide-up 0.8s 0.1s var(--ease) backwards;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary), var(--purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1.05rem, 2.5vw, 1.35rem);
    color: var(--text-light);
    line-height: 1.75;
    max-width: 800px;
    margin: 0 auto 2.5rem;
    animation: fade-slide-up 0.8s 0.2s var(--ease) backwards;
}

.hero-cta-group {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    margin-bottom: 4rem;
    flex-wrap: wrap;
    animation: fade-slide-up 0.8s 0.3s var(--ease) backwards;
}

@keyframes fade-slide-down {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
}

@keyframes fade-slide-up {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 1.1rem 2.25rem;
    border-radius: 100px;
    font-size: 1.05rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.4s var(--ease);
    font-family: inherit;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: 0 4px 16px rgba(0, 102, 255, 0.25);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 16px 32px rgba(0, 102, 255, 0.35);
}

.btn-primary:active {
    transform: translateY(-2px) scale(0.98);
}

.btn-glow {
    animation: glow-pulse 3s ease-in-out infinite;
}

@keyframes glow-pulse {
    0%, 100% {
        box-shadow: 0 4px 16px rgba(0, 102, 255, 0.25);
    }
    50% {
        box-shadow: 0 8px 32px rgba(0, 102, 255, 0.45);
    }
}

.btn-secondary {
    background: white;
    color: var(--text);
    border: 1.5px solid var(--border);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.btn-secondary:hover {
    background: var(--bg-light);
    border-color: var(--primary);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.btn-secondary:active {
    transform: translateY(-2px) scale(0.98);
}

.hero-trust-bar {
    display: flex;
    gap: 3rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    animation: fade-slide-up 0.8s 0.4s var(--ease) backwards;
}

.trust-stat {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.trust-icon {
    font-size: 2.25rem;
}

.trust-info {
    text-align: left;
}

.trust-info strong {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1.2;
}

.trust-info span {
    font-size: 0.85rem;
    color: var(--text-lighter);
}

.trust-divider {
    width: 1px;
    height: 40px;
    background: var(--border);
}

/* Floating Preview Cards */
.floating-previews {
    position: absolute;
    top: 15%;
    right: 5%;
    width: 350px;
    display: none;
}

@media (min-width: 1600px) {
    .floating-previews {
        display: block;
    }
}

.preview-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 24px;
    padding: 1.75rem;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.12);
    animation: float-preview 8s ease-in-out infinite;
}

.card-1 {
    top: 0;
    right: 0;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.card-2 {
    top: 160px;
    left: -80px;
    animation-delay: -4s;
}

.card-3 {
    top: 320px;
    right: 40px;
    animation-delay: -6s;
}

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

.preview-icon {
    font-size: 2.5rem;
}

.preview-content strong {
    display: block;
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.preview-content span {
    font-size: 0.85rem;
    color: var(--text-lighter);
}

.preview-testimonial {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

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

.preview-testimonial strong {
    display: block;
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
}

.mini-stars {
    color: #fbbf24;
    font-size: 0.75rem;
    letter-spacing: 1px;
}

.preview-stat {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary), var(--purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-lighter);
}

/* ============================================
   CONTAINERS
============================================ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 3rem;
}

.container-large {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
}

/* ============================================
   SECTION HEADERS
============================================ */
.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.label {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 1rem;
}

.label.light {
    color: var(--accent);
}

.section-header h2 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 1.25rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.7;
    max-width: 750px;
    margin: 0 auto;
}

/* ============================================
   SERVICES SHOWCASE
============================================ */
.services-showcase {
    padding: 7rem 0;
    background: var(--bg-light);
    position: relative;
}

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

.service-card-premium {
    background: white;
    border: 1px solid var(--border);
    border-radius: 28px;
    padding: 0;
    position: relative;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0;
    transform: translateY(60px);
    overflow: hidden;
}

.service-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    margin-bottom: 2rem;
    background: var(--bg-light);
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s var(--ease);
    display: block;
}

.service-image img[loading="lazy"] {
    opacity: 0;
    animation: fadeIn 0.6s ease-in forwards;
}

.service-card-premium:hover .service-image img {
    transform: scale(1.1);
}

.service-card-premium > * {
    padding: 0 3rem;
}

.service-card-premium > *:last-child {
    padding-bottom: 3rem;
}

.service-image {
    padding: 0 !important;
    margin-bottom: 0;
}

.service-card-premium.visible {
    opacity: 1;
    transform: translateY(0);
}

.service-card-premium:hover {
    transform: translateY(-16px) scale(1.02);
    box-shadow: 0 32px 64px rgba(0, 0, 0, 0.12);
    border-color: var(--primary);
}

.service-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    padding: 0.4rem 0.9rem;
    background: linear-gradient(135deg, var(--primary), var(--purple));
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 100px;
    letter-spacing: 0.05em;
    z-index: 10;
}

.service-icon-large {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: block;
    padding-top: 2rem !important;
}

.service-card-premium h3 {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.service-card-premium > p {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.service-highlights {
    list-style: none;
    margin-bottom: 2rem;
}

.service-highlights li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.6rem 0;
    font-size: 0.95rem;
    color: var(--text);
}

.service-highlights li svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.service-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: gap 0.3s var(--ease);
}

.service-btn:hover {
    gap: 0.85rem;
}

/* ============================================
   IMAGE GALLERY
============================================ */
.image-gallery {
    padding: 7rem 0;
    background: var(--bg-light);
}

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

.gallery-item {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    height: 400px;
    background: var(--bg-light);
    box-shadow: var(--shadow-sm);
    transition: all 0.5s var(--ease);
    opacity: 0;
    transform: scale(0.92);
}

.gallery-item.visible {
    opacity: 1;
    transform: scale(1);
}

.gallery-item:hover {
    transform: scale(1.05) translateY(-8px);
    box-shadow: var(--shadow-xl);
    z-index: 10;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s var(--ease);
    display: block;
}

.gallery-item img[loading="lazy"] {
    opacity: 0;
    animation: fadeIn 0.6s ease-in forwards;
}

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

.gallery-item:hover img {
    transform: scale(1.1);
}

/* ============================================
   ABOUT SECTION
============================================ */
.about-section {
    padding: 7rem 0;
    background: white;
}

.about-content-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 5rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.about-text h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

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

.vision-mission {
    display: grid;
    gap: 2rem;
    margin-top: 3rem;
}

.vm-item {
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 20px;
    border-left: 4px solid var(--primary);
}

.vm-item h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text);
}

.vm-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-light);
    margin: 0;
}

.about-image {
    border-radius: 32px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    position: relative;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-height: 500px;
}

/* ============================================
   WHY CHOOSE US
============================================ */
.why-choose {
    padding: 7rem 0;
    background: white;
}

.why-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 6rem;
    align-items: center;
}

.why-content h2 {
    font-size: clamp(2.25rem, 4vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
}

.why-lead {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.75;
    margin-bottom: 3rem;
}

.why-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.why-feature {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 20px;
    transition: all 0.4s var(--ease);
    opacity: 0;
    transform: translateX(-40px);
}

.why-feature.visible {
    opacity: 1;
    transform: translateX(0);
}

.why-feature:hover {
    transform: translateX(12px);
    box-shadow: var(--shadow-md);
}

.feature-icon-wrap {
    width: 64px;
    height: 64px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
}

.feature-text h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.feature-text p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}

.stats-card {
    background: white;
    border: 2px solid var(--border);
    border-radius: 32px;
    padding: 4rem 3rem;
    box-shadow: var(--shadow-xl);
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.stat-large {
    text-align: center;
}

.stat-large .stat-number {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 0.75rem;
    background: linear-gradient(135deg, var(--primary), var(--purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-large .stat-label {
    font-size: 1.1rem;
    color: var(--text);
    font-weight: 600;
}

/* ============================================
   TESTIMONIALS
============================================ */
.testimonials {
    padding: 7rem 0;
    background: var(--bg-light);
}

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

.testimonial-card-large {
    background: white;
    border: 1px solid var(--border);
    border-radius: 28px;
    padding: 3rem;
    position: relative;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0;
    transform: scale(0.92);
}

.testimonial-card-large.visible {
    opacity: 1;
    transform: scale(1);
}

.testimonial-card-large:hover {
    transform: scale(1.03) translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.quote-mark {
    font-size: 6rem;
    color: var(--primary);
    opacity: 0.1;
    position: absolute;
    top: 1.5rem;
    left: 2rem;
    line-height: 1;
    font-family: Georgia, serif;
}

.testimonial-card-large > p {
    font-size: 1.15rem;
    line-height: 1.75;
    color: var(--text);
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 1;
}

.testimonial-footer {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

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

.testimonial-author strong {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    display: block;
    font-size: 0.9rem;
    color: var(--text-lighter);
    margin-bottom: 0.5rem;
}

.stars-large {
    color: #fbbf24;
    font-size: 1rem;
    letter-spacing: 3px;
}

.verified-badge {
    margin-left: auto;
    padding: 0.4rem 1rem;
    background: rgba(0, 212, 170, 0.1);
    color: var(--accent);
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: 100px;
}

/* ============================================
   AGED CARE SECTION
============================================ */
.aged-care-section {
    padding: 7rem 0;
    background: var(--bg-light);
}

.aged-care-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.aged-care-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 2.5rem;
    transition: all 0.4s var(--ease);
    text-align: center;
}

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

.aged-care-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: block;
}

.aged-care-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text);
}

.aged-care-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-light);
    margin: 0;
}

.aged-care-cta {
    text-align: center;
    padding: 3rem;
    background: white;
    border-radius: 28px;
    border: 2px solid var(--border);
    max-width: 900px;
    margin: 0 auto;
}

.aged-care-cta h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text);
}

.aged-care-cta p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.aged-care-badges {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.funding-badge {
    padding: 0.8rem 1.75rem;
    background: linear-gradient(135deg, var(--primary), var(--purple));
    color: white;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 4px 12px rgba(0, 102, 255, 0.2);
}

/* ============================================
   FAQ SECTION
============================================ */
.faq-section {
    padding: 7rem 0;
    background: white;
}

.faq-grid {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    background: white;
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s var(--ease);
}

.faq-item:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

.faq-question {
    padding: 2rem 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
    transition: all 0.3s var(--ease);
}

.faq-question:hover {
    background: var(--bg-light);
}

.faq-question h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text);
    margin: 0;
    padding-right: 2rem;
}

.faq-icon {
    width: 32px;
    height: 32px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--primary);
    flex-shrink: 0;
    transition: all 0.4s var(--ease);
}

.faq-item.active .faq-icon {
    background: var(--primary);
    color: white;
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease), padding 0.4s var(--ease);
}

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

.faq-answer p {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--text-light);
    margin: 0;
}

/* ============================================
   CONTACT CTA
============================================ */
.contact-cta {
    padding: 7rem 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    color: white;
}

.contact-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-header {
    text-align: center;
    margin-bottom: 5rem;
}

.contact-header h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.contact-header p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.4s var(--ease);
}

.contact-card:hover {
    transform: translateX(12px);
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent);
    box-shadow: 0 12px 32px rgba(0, 212, 170, 0.15);
}

.contact-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.contact-details strong {
    display: block;
    color: white;
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-value {
    display: block;
    color: var(--accent);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.contact-note {
    display: block;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

.languages-card {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
}

.languages-card strong {
    display: block;
    color: white;
    font-size: 1.05rem;
    margin-bottom: 1rem;
}

.language-tags {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.language-tags span {
    padding: 0.6rem 1.25rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 100px;
    font-size: 0.95rem;
    color: white;
}

/* FORM */
.premium-form {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 28px;
    padding: 3rem;
}

.premium-form h3 {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 2rem;
}

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

.premium-form input,
.premium-form select,
.premium-form textarea {
    width: 100%;
    padding: 1.1rem 1.5rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    color: white;
    transition: all 0.3s var(--ease);
    margin-bottom: 1.25rem;
}

.premium-form input::placeholder,
.premium-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.premium-form input:focus,
.premium-form select:focus,
.premium-form textarea:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(0, 212, 170, 0.15);
    transform: translateY(-2px);
}

.btn-submit {
    width: 100%;
    justify-content: center;
    margin-top: 1rem;
    background: var(--accent);
    color: var(--text);
    font-weight: 700;
}

.btn-submit:hover {
    background: #00f2c3;
    transform: translateY(-4px) scale(1.01);
    box-shadow: 0 16px 32px rgba(0, 212, 170, 0.35);
}

.form-note {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

/* ============================================
   FOOTER
============================================ */
.footer {
    padding: 5rem 0 2rem;
    background: var(--text);
    color: white;
}

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

.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-about p {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.footer-rating {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-rating .stars {
    color: #fbbf24;
    font-size: 1rem;
}

.footer-links h4 {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
    opacity: 0.5;
}

.footer-links a {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.95rem;
    margin-bottom: 1rem;
    transition: all 0.3s var(--ease);
}

.footer-links a:hover {
    color: white;
    transform: translateX(6px);
}

.lang-small {
    display: block;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
    margin-top: 0.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
}

/* ============================================
   RESPONSIVE - ULTRA OPTIMIZED
============================================ */

/* Extra Large Screens */
@media (max-width: 1600px) {
    .hero {
        padding: 9rem 3rem 5rem;
    }
    
    .section-header {
        margin-bottom: 4rem;
    }
}

/* Large Desktop */
@media (max-width: 1400px) {
    .nav-wrapper {
        padding: 0 2rem;
    }
    
    .container,
    .container-large {
        padding: 0 2rem;
    }
    
    .services-masonry {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .hero {
        padding: 8rem 2rem 4rem;
    }
    
    .hero-title {
        font-size: clamp(2.5rem, 7vw, 5rem);
    }
}

/* Medium Desktop / Tablet Landscape */
@media (max-width: 1200px) {
    .nav-wrapper {
        padding: 0 2rem;
    }
    
    .nav-menu {
        gap: 2rem;
    }
    
    .nav-menu a {
        font-size: 0.9rem;
    }
    
    .services-masonry {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .why-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .stats-card {
        max-width: 600px;
        margin: 0 auto;
    }
    
    .hero-title {
        font-size: clamp(2.25rem, 6vw, 4.5rem);
    }
    
    .hero-subtitle {
        font-size: clamp(1rem, 2vw, 1.2rem);
    }
    
    .trust-stat {
        gap: 0.6rem;
    }
    
    .trust-info strong {
        font-size: 1.35rem;
    }
    
    .section-header h2 {
        font-size: clamp(2.25rem, 4.5vw, 3.75rem);
    }
}

/* Tablet Portrait */
@media (max-width: 1024px) {
    .services-showcase,
    .why-choose,
    .testimonials,
    .contact-cta {
        padding: 5rem 0;
    }
    
    .footer {
        padding: 4rem 0 2rem;
    }
    
    .service-card-premium {
        padding: 0;
    }
    
    .service-image {
        height: 200px;
    }
    
    .service-card-premium > * {
        padding: 0 2.5rem;
    }
    
    .service-card-premium > *:last-child {
        padding-bottom: 2.5rem;
    }
    
    .service-icon-large {
        padding-top: 2rem !important;
    }
    
    .testimonial-card-large {
        padding: 2.5rem;
    }
}

/* Large Tablet */
@media (max-width: 900px) {
    .nav-menu a:not(.nav-cta) {
        font-size: 0.85rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .hero-trust-bar {
        gap: 2rem;
    }
    
    .trust-divider {
        display: none;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
    
    .footer-about {
        grid-column: 1 / -1;
    }
}

/* Tablet & Mobile */
@media (max-width: 768px) {
    /* Navigation */
    .nav-wrapper {
        padding: 0 1.25rem;
        height: 64px;
    }
    
    .nav-menu a:not(.nav-cta):not(.nav-phone) {
        display: none;
    }
    
    .nav-cta {
        padding: 0.55rem 1.25rem;
        font-size: 0.85rem;
    }
    
    .nav-phone {
        font-size: 0.85rem;
        padding: 0.5rem 1rem;
    }
    
    .nav-phone svg {
        width: 14px;
        height: 14px;
    }
    
    .logo-name {
        font-size: 1.35rem;
    }
    
    .logo-sub {
        font-size: 0.65rem;
    }
    
    /* Hero */
    .hero {
        padding: 6rem 1.25rem 3rem;
        min-height: auto;
    }
    
    .hero-badge {
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
    }
    
    .hero-title {
        font-size: clamp(2rem, 8vw, 2.75rem);
        margin-bottom: 1.25rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .hero-cta-group {
        margin-bottom: 3rem;
        gap: 1rem;
    }
    
    .btn {
        padding: 1rem 1.75rem;
        font-size: 0.95rem;
    }
    
    .hero-trust-bar {
        flex-direction: column;
        gap: 1.5rem;
        align-items: flex-start;
    }
    
    .trust-stat {
        width: 100%;
        justify-content: flex-start;
    }
    
    /* Containers */
    .container,
    .container-large {
        padding: 0 1.25rem;
    }
    
    /* Sections */
    .services-showcase,
    .why-choose,
    .testimonials,
    .contact-cta {
        padding: 4rem 0;
    }
    
    .section-header {
        margin-bottom: 3rem;
    }
    
    .section-header h2 {
        font-size: clamp(2rem, 6vw, 2.75rem);
        margin-bottom: 1rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .label {
        font-size: 0.75rem;
    }
    
    /* Gallery */
    .image-gallery {
        padding: 4rem 0;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }
    
    /* Services */
    .services-masonry {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 100%;
    }
    
    .service-card-premium {
        padding: 2.25rem;
    }
    
    .service-icon-large {
        font-size: 3rem;
        margin-bottom: 1.25rem;
    }
    
    .service-card-premium h3 {
        font-size: 1.5rem;
    }
    
    .service-card-premium > p {
        font-size: 0.95rem;
    }
    
    .service-highlights li {
        font-size: 0.9rem;
    }
    
    /* Why Choose */
    .why-content h2 {
        font-size: clamp(1.85rem, 5vw, 2.5rem);
    }
    
    .why-lead {
        font-size: 1.05rem;
        margin-bottom: 2rem;
    }
    
    .why-features {
        gap: 1.5rem;
    }
    
    .why-feature {
        padding: 1.75rem;
        gap: 1.25rem;
    }
    
    .feature-icon-wrap {
        width: 56px;
        height: 56px;
        font-size: 1.75rem;
    }
    
    .feature-text h4 {
        font-size: 1.1rem;
    }
    
    .feature-text p {
        font-size: 0.9rem;
    }
    
    .stats-card {
        padding: 3rem 2.5rem;
        gap: 2.5rem;
    }
    
    .stat-large .stat-number {
        font-size: 3.5rem;
    }
    
    /* Testimonials */
    .testimonials-grid {
        gap: 2rem;
    }
    
    .testimonial-card-large {
        padding: 2.25rem;
    }
    
    .testimonial-card-large > p {
        font-size: 1.05rem;
        margin-bottom: 2rem;
    }
    
    .quote-mark {
        font-size: 4.5rem;
    }
    
    .testimonial-avatar {
        width: 48px;
        height: 48px;
        font-size: 1.25rem;
    }
    
    /* Contact */
    .contact-header {
        margin-bottom: 3rem;
    }
    
    .contact-header h2 {
        font-size: clamp(2rem, 6vw, 2.75rem);
        margin-bottom: 1rem;
    }
    
    .contact-header p {
        font-size: 1.05rem;
    }
    
    .contact-grid {
        gap: 2.5rem;
    }
    
    .contact-card {
        padding: 1.75rem;
    }
    
    .contact-icon {
        font-size: 2rem;
    }
    
    .contact-value {
        font-size: 1.15rem;
    }
    
    .premium-form {
        padding: 2.5rem;
    }
    
    .premium-form h3 {
        font-size: 1.5rem;
        margin-bottom: 1.75rem;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
        gap: 0;
        margin-bottom: 0;
    }
    
    /* FAQ */
    .faq-section {
        padding: 4rem 0;
    }
    
    .faq-question {
        padding: 1.75rem;
    }
    
    .faq-question h4 {
        font-size: 1.05rem;
        padding-right: 1rem;
    }
    
    .faq-icon {
        width: 28px;
        height: 28px;
        font-size: 1.35rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 1.75rem 1.75rem;
    }
    
    .faq-answer p {
        font-size: 0.95rem;
    }
    
    /* Footer */
    .footer {
        padding: 3.5rem 0 1.5rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        margin-bottom: 2.5rem;
    }
    
    .footer-about {
        grid-column: auto;
    }
    
    .footer-bottom {
        padding-top: 2rem;
        font-size: 0.8rem;
    }
    
    /* FAQ - Mobile */
    .faq-section {
        padding: 3rem 0;
    }
    
    .faq-question {
        padding: 1.5rem;
    }
    
    .faq-question h4 {
        font-size: 1rem;
    }
    
    .faq-icon {
        width: 26px;
        height: 26px;
        font-size: 1.25rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 1.5rem 1.5rem;
    }
    
    .faq-answer p {
        font-size: 0.9rem;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    /* Navigation */
    .nav-wrapper {
        padding: 0 1rem;
    }
    
    .nav-cta {
        display: none;
    }
    
    .nav-phone {
        font-size: 0.8rem;
        padding: 0.45rem 0.85rem;
        gap: 0.35rem;
    }
    
    .nav-logo svg {
        height: 40px;
    }
    
    /* Hero */
    .hero {
        padding: 5rem 1rem 2.5rem;
    }
    
    .hero-badge {
        font-size: 0.7rem;
        padding: 0.35rem 0.85rem;
        margin-bottom: 1.5rem;
    }
    
    .badge-pulse {
        width: 6px;
        height: 6px;
    }
    
    .hero-title {
        font-size: 1.85rem;
        margin-bottom: 1rem;
        line-height: 1.15;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1.75rem;
        line-height: 1.65;
    }
    
    .hero-cta-group {
        flex-direction: column;
        width: 100%;
        gap: 0.85rem;
        margin-bottom: 2.5rem;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
        padding: 0.95rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .btn svg {
        width: 16px;
        height: 16px;
    }
    
    .hero-trust-bar {
        gap: 1.25rem;
    }
    
    .trust-icon {
        font-size: 2rem;
    }
    
    .trust-info strong {
        font-size: 1.25rem;
    }
    
    .trust-info span {
        font-size: 0.8rem;
    }
    
    /* Containers */
    .container,
    .container-large {
        padding: 0 1rem;
    }
    
    /* Sections */
    .services-showcase,
    .why-choose,
    .testimonials,
    .contact-cta,
    .image-gallery {
        padding: 3rem 0;
    }
    
    /* Gallery Mobile */
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .gallery-item {
        border-radius: 20px;
    }
    
    .section-header {
        margin-bottom: 2.5rem;
    }
    
    .section-header h2 {
        font-size: 1.85rem;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
    }
    
    .label {
        font-size: 0.7rem;
        margin-bottom: 0.65rem;
    }
    
    /* Services */
    .services-masonry {
        gap: 1.75rem;
    }
    
    .service-card-premium {
        padding: 0;
        border-radius: 20px;
    }
    
    .service-image {
        height: 180px;
    }
    
    .service-card-premium > * {
        padding: 0 2rem;
    }
    
    .service-card-premium > *:last-child {
        padding-bottom: 2rem;
    }
    
    .service-icon-large {
        font-size: 2.75rem;
        padding-top: 1.5rem !important;
        margin-bottom: 1rem;
    }
    
    .service-badge {
        font-size: 0.7rem;
        padding: 0.35rem 0.75rem;
        top: 1.25rem;
        right: 1.25rem;
    }
    
    .service-icon-large {
        font-size: 2.75rem;
        margin-bottom: 1rem;
    }
    
    .service-card-premium h3 {
        font-size: 1.35rem;
        margin-bottom: 0.85rem;
    }
    
    .service-card-premium > p {
        font-size: 0.9rem;
        margin-bottom: 1.75rem;
    }
    
    .service-highlights {
        margin-bottom: 1.75rem;
    }
    
    .service-highlights li {
        font-size: 0.85rem;
        padding: 0.5rem 0;
        gap: 0.65rem;
    }
    
    .service-highlights li svg {
        width: 14px;
        height: 14px;
    }
    
    .service-btn {
        font-size: 0.9rem;
    }
    
    /* Why Choose */
    .why-grid {
        gap: 3rem;
    }
    
    .why-content h2 {
        font-size: 1.75rem;
        margin-bottom: 1.25rem;
    }
    
    .why-lead {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .why-features {
        gap: 1.25rem;
    }
    
    .why-feature {
        padding: 1.5rem;
        border-radius: 16px;
    }
    
    .feature-icon-wrap {
        width: 50px;
        height: 50px;
        font-size: 1.6rem;
    }
    
    .feature-text h4 {
        font-size: 1.05rem;
        margin-bottom: 0.4rem;
    }
    
    .feature-text p {
        font-size: 0.85rem;
    }
    
    .stats-card {
        padding: 2.5rem 2rem;
        border-radius: 24px;
        gap: 2rem;
    }
    
    .stat-large .stat-number {
        font-size: 3rem;
        margin-bottom: 0.5rem;
    }
    
    .stat-large .stat-label {
        font-size: 0.9rem;
    }
    
    /* Testimonials */
    .testimonials-grid {
        gap: 1.75rem;
    }
    
    .testimonial-card-large {
        padding: 2rem;
        border-radius: 20px;
    }
    
    .quote-mark {
        font-size: 4rem;
        top: 1.25rem;
        left: 1.5rem;
    }
    
    .testimonial-card-large > p {
        font-size: 1rem;
        margin-bottom: 1.75rem;
        line-height: 1.65;
    }
    
    .testimonial-footer {
        gap: 1rem;
        flex-wrap: wrap;
    }
    
    .testimonial-avatar {
        width: 44px;
        height: 44px;
        font-size: 1.15rem;
    }
    
    .testimonial-author strong {
        font-size: 1rem;
    }
    
    .testimonial-author span {
        font-size: 0.85rem;
    }
    
    .stars-large {
        font-size: 0.9rem;
    }
    
    .verified-badge {
        padding: 0.35rem 0.85rem;
        font-size: 0.75rem;
        margin-left: 0;
        width: 100%;
        text-align: center;
    }
    
    /* Contact */
    .contact-cta {
        padding: 3rem 0;
    }
    
    .contact-header {
        margin-bottom: 2.5rem;
    }
    
    .contact-header h2 {
        font-size: 1.85rem;
    }
    
    .contact-header p {
        font-size: 1rem;
    }
    
    .contact-grid {
        gap: 2rem;
    }
    
    .contact-methods {
        gap: 1.25rem;
    }
    
    .contact-card {
        padding: 1.5rem;
        border-radius: 16px;
        gap: 1rem;
    }
    
    .contact-icon {
        font-size: 1.85rem;
    }
    
    .contact-details strong {
        font-size: 0.95rem;
    }
    
    .contact-value {
        font-size: 1.1rem;
        margin-bottom: 0.4rem;
    }
    
    .contact-note {
        font-size: 0.8rem;
    }
    
    .languages-card {
        padding: 1.5rem;
        border-radius: 16px;
    }
    
    .languages-card strong {
        font-size: 0.95rem;
        margin-bottom: 0.85rem;
    }
    
    .language-tags {
        gap: 0.65rem;
    }
    
    .language-tags span {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
    
    /* Form */
    .premium-form {
        padding: 2rem;
        border-radius: 20px;
    }
    
    .premium-form h3 {
        font-size: 1.35rem;
        margin-bottom: 1.5rem;
    }
    
    .premium-form input,
    .premium-form select,
    .premium-form textarea {
        padding: 1rem 1.25rem;
        font-size: 0.95rem;
        border-radius: 10px;
        margin-bottom: 1rem;
    }
    
    .btn-submit {
        padding: 1rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .form-note {
        font-size: 0.8rem;
        margin-top: 1.25rem;
    }
    
    /* Footer */
    .footer {
        padding: 3rem 0 1.5rem;
    }
    
    .footer-grid {
        gap: 2rem;
        margin-bottom: 2rem;
    }
    
    .footer-logo {
        margin-bottom: 1.25rem;
    }
    
    .footer-logo svg {
        height: 40px;
    }
    
    .footer-about p {
        font-size: 0.9rem;
        margin-bottom: 1.25rem;
    }
    
    .footer-rating {
        font-size: 0.85rem;
        gap: 0.65rem;
    }
    
    .footer-links h4 {
        font-size: 0.85rem;
        margin-bottom: 1.25rem;
    }
    
    .footer-links a {
        font-size: 0.9rem;
        margin-bottom: 0.85rem;
    }
    
    .lang-small {
        font-size: 0.8rem;
    }
    
    .footer-bottom {
        padding-top: 1.75rem;
        font-size: 0.75rem;
    }
}

/* Extra Small Mobile */
@media (max-width: 360px) {
    .hero-title {
        font-size: 1.65rem;
    }
    
    .service-card-premium,
    .testimonial-card-large,
    .premium-form {
        padding: 1.75rem;
    }
    
    .btn {
        padding: 0.85rem 1.35rem;
        font-size: 0.85rem;
    }
    
    .trust-stat {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .trust-info {
        text-align: left;
    }
}

/* Landscape Mobile Optimization */
@media (max-height: 600px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 5rem 2rem 3rem;
    }
    
    .hero-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        margin-bottom: 1.5rem;
    }
    
    .hero-cta-group {
        margin-bottom: 2rem;
    }
    
    .hero-trust-bar {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
}
