/* ===========================
   Global Styles & Reset
   =========================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Elegant Color Palette */
    --primary-navy: #1A3A52;
    --primary-teal: #2C5F6F;
    --accent-gold: #C9A961;
    --accent-green: #5BA66D;
    --dark-bg: #0F1419;
    --light-bg: #F8F9FA;
    --white: #FFFFFF;
    --gray-100: #F5F7FA;
    --gray-200: #E4E7EB;
    --gray-300: #CBD2D9;
    --gray-600: #616E7C;
    --gray-800: #2D3748;
    --text-primary: #1A202C;
    --text-secondary: #4A5568;

    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --section-padding: 100px;
    --container-padding: 20px;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.15);

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
}

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

/* ===========================
   Typography
   =========================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    line-height: 1.3;
    color: var(--primary-navy);
    font-weight: 700;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.75rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.25rem; }

p {
    color: var(--text-secondary);
    font-size: 1.05rem;
}

.accent {
    color: var(--accent-gold);
}

/* ===========================
   Buttons
   =========================== */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all var(--transition-base);
    cursor: pointer;
    border: 2px solid transparent;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-teal) 100%);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-navy);
    border: 2px solid var(--primary-navy);
}

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

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

.btn-block {
    width: 100%;
    display: block;
}

/* ===========================
   Navigation
   =========================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 20px 0;
    z-index: 1000;
    transition: all var(--transition-base);
}

.navbar.scrolled {
    padding: 15px 0;
    box-shadow: var(--shadow-md);
}

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

.logo a {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}

.logo h1 {
    font-size: 1.75rem;
    margin: 0;
    color: var(--primary-navy);
}

.logo-img {
    height: 45px;
    width: auto;
    transition: all var(--transition-base);
}

.navbar.scrolled .logo-img {
    height: 40px;
}

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

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

.nav-link {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    transition: color var(--transition-fast);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: width var(--transition-base);
}

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

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

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 220px;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition-base);
    list-style: none;
    padding: 10px 0;
    margin-top: 15px;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 12px 24px;
    color: var(--text-primary);
    text-decoration: none;
    transition: all var(--transition-fast);
    font-size: 0.95rem;
}

.dropdown-menu a:hover {
    background: var(--gray-100);
    color: var(--primary-navy);
    padding-left: 30px;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-navy);
    border-radius: 3px;
    transition: all var(--transition-base);
}

/* ===========================
   Hero Section
   =========================== */
.hero {
    height: 100vh;
    min-height: 700px;
    position: relative;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-teal) 100%);
    background-size: 400% 400%;
    overflow: hidden;
    animation: heroGradient 15s ease infinite;
}

@keyframes heroGradient {
    0%, 100% { background-position: 0% 50%; }
    25% { background-position: 50% 50%; }
    50% { background-position: 100% 50%; }
    75% { background-position: 50% 50%; }
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(201, 169, 97, 0.15) 0%, transparent 50%);
}

/* Animated Background Shapes */
.animated-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 0;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(201, 169, 97, 0.1);
    animation: float 20s infinite ease-in-out;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 25s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    top: 60%;
    right: 15%;
    animation-delay: 5s;
    animation-duration: 20s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 50%;
    animation-delay: 10s;
    animation-duration: 30s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.1;
    }
    33% {
        transform: translate(50px, -50px) scale(1.1);
        opacity: 0.15;
    }
    66% {
        transform: translate(-30px, 30px) scale(0.9);
        opacity: 0.08;
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
}

.hero-text {
    max-width: 750px;
}

.hero-title {
    color: var(--white);
    font-size: 4rem;
    margin-bottom: 24px;
    line-height: 1.2;
}

.highlight-text {
    position: relative;
    display: inline-block;
    color: var(--accent-gold);
    transition: text-shadow 1s ease;
}

.highlight-text::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--accent-gold);
    animation: underlineGrow 1.5s ease forwards 0.8s;
}

@keyframes underlineGrow {
    to {
        width: 100%;
    }
}

.hero-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.35rem;
    margin-bottom: 40px;
    line-height: 1.6;
    min-height: 50px;
    display: flex;
    align-items: center;
}

.typing-text {
    display: inline-block;
    overflow: hidden;
    border-right: 0;
    white-space: nowrap;
    animation: typing 3s steps(65, end) 0.5s forwards;
    max-width: 0;
}

@keyframes typing {
    from {
        max-width: 0;
    }
    to {
        max-width: 100%;
    }
}

.cursor {
    display: inline-block;
    margin-left: 3px;
    animation: blink 1s step-end infinite;
    color: var(--accent-gold);
    font-weight: 300;
}

@keyframes blink {
    0%, 50% {
        opacity: 1;
    }
    51%, 100% {
        opacity: 0;
    }
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-buttons .btn-primary {
    box-shadow: 0 0 30px rgba(201, 169, 97, 0.3);
    animation: pulseGlow 3s ease-in-out infinite;
}

.hero-buttons .btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

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

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 0 30px rgba(201, 169, 97, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(201, 169, 97, 0.5);
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    position: relative;
}

.mouse::before {
    content: '';
    width: 4px;
    height: 8px;
    background: rgba(255, 255, 255, 0.7);
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0%, 100% { opacity: 1; transform: translateX(-50%) translateY(0); }
    50% { opacity: 0; transform: translateX(-50%) translateY(12px); }
}

/* Fade-in animations */
.fade-in {
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
}

.fade-in-delay-1 {
    animation: fadeInUp 0.8s ease 0.2s forwards;
    opacity: 0;
}

.fade-in-delay-2 {
    animation: fadeInUp 0.8s ease 0.4s forwards;
    opacity: 0;
}

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

/* ===========================
   Trust Badges Section
   =========================== */
.trust-section {
    background: var(--white);
    padding: 50px 0;
    border-bottom: 1px solid var(--gray-200);
}

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

.badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    animation: floatBadge 3s ease-in-out infinite;
}

.badge:nth-child(1) { animation-delay: 0s; }
.badge:nth-child(2) { animation-delay: 0.5s; }
.badge:nth-child(3) { animation-delay: 1s; }
.badge:nth-child(4) { animation-delay: 1.5s; }

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

.badge-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-gold) 0%, #d4b574 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(201, 169, 97, 0.3);
    transition: all var(--transition-base);
}

.badge:hover .badge-icon {
    transform: scale(1.15) rotate(360deg);
    box-shadow: 0 6px 25px rgba(201, 169, 97, 0.5);
}

.badge p {
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

/* ===========================
   Section Headers
   =========================== */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-label {
    display: inline-block;
    color: var(--accent-gold);
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.section-title {
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
}

/* ===========================
   About Section
   =========================== */
.about-section {
    padding: var(--section-padding) 0;
    background: var(--light-bg);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
}

.about-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    border-top: 4px solid var(--accent-gold);
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(201, 169, 97, 0.1), transparent);
    transition: left 0.5s ease;
}

.about-card:hover::before {
    left: 100%;
}

.about-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-xl);
    border-top-color: #d4b574;
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: inline-block;
    transition: all var(--transition-base);
}

.about-card:hover .card-icon {
    transform: scale(1.2) rotateY(360deg);
    animation: bounce 0.6s ease;
}

@keyframes bounce {
    0%, 100% { transform: scale(1.2) translateY(0); }
    50% { transform: scale(1.3) translateY(-10px); }
}

.about-card h3 {
    margin-bottom: 16px;
    color: var(--primary-navy);
}

.about-card p {
    margin: 0;
    line-height: 1.7;
}

/* ===========================
   Meet Jai Section
   =========================== */
.meet-jai-section {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.meet-jai-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: center;
}

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

.jai-photo-placeholder {
    width: 280px;
    height: 280px;
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-teal) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
}

.jai-photo-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 30%, rgba(201, 169, 97, 0.3) 0%, transparent 60%);
}

.photo-icon {
    font-size: 8rem;
    color: rgba(255, 255, 255, 0.5);
    position: relative;
    z-index: 1;
}

.jai-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 1;
}

.jai-content {
    max-width: 650px;
}

.jai-content .section-label {
    text-align: left;
    display: block;
    margin-bottom: 12px;
}

.jai-content .section-title {
    text-align: left;
    margin-bottom: 8px;
    font-size: 2.5rem;
}

.jai-title {
    color: var(--accent-gold);
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.jai-bio {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.jai-credentials {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin: 30px 0;
}

.credential-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: var(--gray-100);
    border-radius: 8px;
    border-left: 3px solid var(--accent-gold);
}

.badge-check {
    width: 24px;
    height: 24px;
    background: var(--accent-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: bold;
    font-size: 0.9rem;
}

.credential-badge span {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.95rem;
}

/* ===========================
   Services Section
   =========================== */
.services-section {
    padding: var(--section-padding) 0;
    background: var(--white);
}

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

.service-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    position: relative;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid var(--accent-gold);
    border-radius: 12px;
    opacity: 0;
    transform: scale(1.05);
    transition: all var(--transition-base);
    pointer-events: none;
}

.service-card:hover {
    transform: translateY(-10px) rotateX(2deg);
    box-shadow: 0 20px 50px rgba(26, 58, 82, 0.2);
}

.service-card:hover::after {
    opacity: 1;
    transform: scale(1);
}

.service-image {
    height: 240px;
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-teal) 100%);
    background-size: 200% 200%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: all 0.6s ease;
}

.service-card:hover .service-image {
    background-position: 100% 100%;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.service-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="2"/></svg>');
    opacity: 0.3;
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle, rgba(201, 169, 97, 0.2) 0%, transparent 70%);
}

.service-image h3 {
    color: var(--white);
    font-size: 1.75rem;
    position: relative;
    z-index: 1;
}

.service-content {
    padding: 30px;
}

.service-content p {
    margin-bottom: 20px;
}

.service-link {
    color: var(--primary-navy);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: all var(--transition-fast);
}

.service-link:hover {
    color: var(--accent-gold);
    transform: translateX(5px);
}

/* ===========================
   Process Section
   =========================== */
.process-section {
    padding: var(--section-padding) 0;
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-teal) 100%);
    position: relative;
    overflow: hidden;
}

.process-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="2" cy="2" r="1" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
}

.process-section .section-header {
    position: relative;
    z-index: 1;
}

.process-section .section-label,
.process-section .section-title {
    color: var(--white);
}

.process-section .section-subtitle {
    color: rgba(255, 255, 255, 0.85);
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 1;
}

.process-step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--accent-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--white);
    margin: 0 auto 24px;
    box-shadow: 0 8px 20px rgba(201, 169, 97, 0.3);
    position: relative;
    transition: all var(--transition-base);
    animation: pulse 2s ease-in-out infinite;
}

.process-step:nth-child(1) .step-number { animation-delay: 0s; }
.process-step:nth-child(2) .step-number { animation-delay: 0.5s; }
.process-step:nth-child(3) .step-number { animation-delay: 1s; }
.process-step:nth-child(4) .step-number { animation-delay: 1.5s; }

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 8px 20px rgba(201, 169, 97, 0.3);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 8px 30px rgba(201, 169, 97, 0.6);
        transform: scale(1.05);
    }
}

.step-number::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 2px solid var(--accent-gold);
    border-radius: 50%;
    opacity: 0;
    animation: ripple 2s ease-out infinite;
}

.process-step:nth-child(1) .step-number::before { animation-delay: 0s; }
.process-step:nth-child(2) .step-number::before { animation-delay: 0.5s; }
.process-step:nth-child(3) .step-number::before { animation-delay: 1s; }
.process-step:nth-child(4) .step-number::before { animation-delay: 1.5s; }

@keyframes ripple {
    0% {
        opacity: 0;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
    }
    100% {
        opacity: 0;
        transform: scale(1.5);
    }
}

.process-step:hover .step-number {
    transform: scale(1.15) rotate(360deg);
    background: linear-gradient(135deg, var(--accent-gold), #d4b574);
}

.step-content h3 {
    color: var(--white);
    margin-bottom: 12px;
}

.step-content p {
    color: rgba(255, 255, 255, 0.85);
}

/* ===========================
   Testimonials Section
   =========================== */
.testimonials-section {
    padding: var(--section-padding) 0;
    background: var(--light-bg);
}

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

.testimonial-card {
    background: var(--white);
    padding: 35px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 120px;
    color: var(--accent-gold);
    opacity: 0.1;
    font-family: Georgia, serif;
    line-height: 1;
    transition: all var(--transition-base);
}

.testimonial-card:hover::before {
    opacity: 0.2;
    transform: scale(1.2);
}

.testimonial-card:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 15px 40px rgba(26, 58, 82, 0.15);
    border-left: 4px solid var(--accent-gold);
}

.stars {
    color: var(--accent-gold);
    font-size: 1.2rem;
    margin-bottom: 20px;
    display: inline-block;
    transition: all var(--transition-base);
    letter-spacing: 2px;
}

.testimonial-card:hover .stars {
    transform: scale(1.1);
    text-shadow: 0 0 10px rgba(201, 169, 97, 0.5);
    animation: starTwinkle 1.5s ease-in-out infinite;
}

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

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-primary);
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

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

.author-name {
    font-weight: 600;
    color: var(--primary-navy);
    margin: 0 0 4px 0;
}

.author-title {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
}

/* ===========================
   CTA Section
   =========================== */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--accent-gold) 0%, #d4b574 100%);
    text-align: center;
}

.cta-content h2 {
    color: var(--white);
    font-size: 2.75rem;
    margin-bottom: 20px;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.25rem;
    margin-bottom: 35px;
}

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

.cta-section .btn-primary {
    background: var(--white);
    color: var(--primary-navy);
}

.cta-section .btn-primary:hover {
    background: var(--primary-navy);
    color: var(--white);
}

.cta-section .btn-secondary {
    border-color: var(--white);
    color: var(--white);
}

.cta-section .btn-secondary:hover {
    background: var(--white);
    color: var(--primary-navy);
}

/* ===========================
   Contact Section
   =========================== */
.contact-section {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info h2 {
    margin-bottom: 20px;
}

.contact-info > p {
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--gray-100);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-item h4 {
    margin: 0 0 8px 0;
    color: var(--primary-navy);
}

.contact-item p {
    margin: 0;
    color: var(--text-secondary);
}

.contact-form-wrapper {
    background: var(--gray-100);
    padding: 40px;
    border-radius: 12px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 18px;
    border: 2px solid var(--gray-200);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all var(--transition-fast);
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-navy);
    box-shadow: 0 0 0 3px rgba(26, 58, 82, 0.1);
}

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

/* ===========================
   Footer
   =========================== */
.footer {
    background: var(--dark-bg);
    color: rgba(255, 255, 255, 0.8);
    padding: 60px 0 30px;
}

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

.footer-col h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo-img {
    height: 60px;
    width: auto;
    filter: brightness(0) invert(1);
    transition: all var(--transition-base);
}

.footer-logo-img:hover {
    filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(201, 169, 97, 0.5));
    transform: scale(1.05);
}

.footer-col h4 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.social-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color var(--transition-fast);
    font-size: 0.95rem;
}

.social-link:hover {
    color: var(--accent-gold);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all var(--transition-fast);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--accent-gold);
    padding-left: 5px;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.newsletter-form input {
    padding: 12px 16px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.95rem;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--accent-gold);
}

.newsletter-form .btn {
    justify-content: center;
}

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin: 10px 0;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-bottom a:hover {
    color: var(--accent-gold);
}

.disclaimer {
    font-size: 0.85rem;
    font-style: italic;
}

/* ===========================
   Responsive Design
   =========================== */
@media (max-width: 968px) {
    :root {
        --section-padding: 70px;
    }

    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }

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

    .typing-text {
        white-space: normal;
        animation: none;
        max-width: 100%;
    }

    .cursor {
        display: none;
    }

    .floating-shape {
        display: none;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        text-align: center;
        transition: left var(--transition-base);
        box-shadow: var(--shadow-lg);
        padding: 30px 0;
        gap: 20px;
    }

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

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

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

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        margin-top: 10px;
        background: var(--gray-100);
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .meet-jai-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .jai-content .section-label,
    .jai-content .section-title {
        text-align: center;
    }

    .jai-credentials {
        justify-content: center;
    }

    .hero-buttons {
        flex-direction: column;
    }

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

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 640px) {
    :root {
        --section-padding: 50px;
    }

    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }

    .hero {
        min-height: 600px;
    }

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

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

    .about-grid,
    .services-grid,
    .process-timeline,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .trust-badges {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-form-wrapper {
        padding: 30px 20px;
    }

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

    .jai-photo-placeholder {
        width: 220px;
        height: 220px;
    }

    .photo-icon {
        font-size: 6rem;
    }

    .credential-badge {
        width: 100%;
        justify-content: center;
    }
}
