:root {
    --primary: #1a2744;
    --primary-mid: #243352;
    --primary-light: #2f4068;
    --accent: #1a2744;
    --accent-light: #2f4068;
    --accent-glow: rgba(26, 39, 68, 0.25);
    --text: #1a2744;
    --text-muted: #5a6a82;
    --bg: #ffffff;
    --bg-alt: #f5f7fa;
    --bg-card: rgba(255, 255, 255, 0.9);
    --border: rgba(26, 39, 68, 0.1);
    --border-hover: rgba(26, 39, 68, 0.3);
    --shadow: 0 8px 32px rgba(26, 39, 68, 0.08);
    --shadow-glow: 0 8px 40px rgba(26, 39, 68, 0.12);
    --radius: 16px;
    --radius-lg: 24px;
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-fast: all 0.2s ease;
}

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

html {
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: var(--primary) var(--bg-alt);
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-alt); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 3px; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.7;
    overflow-x: hidden;
    cursor: none;
    -webkit-font-smoothing: antialiased;
}

@media (max-width: 768px) {
    body { cursor: auto; }
    .cursor, .cursor-follower { display: none !important; }
    * { -webkit-tap-highlight-color: transparent; }
}

@media (hover: none) and (pointer: coarse) {
    .service-card:hover .service-card-inner,
    .price-card:hover,
    .feature:hover,
    .testimonial-card:hover {
        transform: none;
        box-shadow: none;
    }
    .btn:hover { transform: none; }
    .btn:active { transform: scale(0.97); }
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 32px;
}

/* Custom Cursor */
.cursor {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 99999;
    transition: transform 0.1s ease;
}

.cursor-follower {
    width: 36px;
    height: 36px;
    border: 1px solid var(--primary);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 99998;
    transition: transform 0.3s ease, width 0.3s ease, height 0.3s ease, opacity 0.3s ease;
    opacity: 0.4;
}

.cursor-follower.hover {
    width: 56px;
    height: 56px;
    opacity: 0.2;
    background: var(--accent-glow);
}

/* Preloader */
.preloader {
    position: fixed;
    inset: 0;
    background: var(--bg);
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-inner {
    text-align: center;
}

.preloader-icon {
    font-size: 3rem;
    margin-bottom: 16px;
    animation: pulse 1.5s ease infinite;
}

.preloader-text {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: 8px;
    color: var(--primary);
    margin-bottom: 24px;
}

.preloader-bar {
    width: 200px;
    height: 2px;
    background: var(--border);
    border-radius: 2px;
    overflow: hidden;
    margin: 0 auto;
}

.preloader-progress {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    border-radius: 2px;
    animation: loading 1.5s ease forwards;
}

@keyframes loading {
    from { width: 0; }
    to { width: 100%; }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}

/* Typography */
h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

h1 { font-size: clamp(3rem, 8vw, 6rem); font-weight: 900; }
h2 { font-size: clamp(2.2rem, 4.5vw, 3.5rem); font-weight: 800; }
h3 { font-size: 1.4rem; font-weight: 700; }
h4 { font-size: 1.15rem; font-weight: 700; }

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

.section-tag {
    display: inline-block;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--primary);
    margin-bottom: 16px;
    padding: 6px 14px;
    background: rgba(26, 39, 68, 0.05);
    border: 1px solid rgba(26, 39, 68, 0.15);
    border-radius: 50px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 36px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 60px;
    text-decoration: none;
    border: none;
    cursor: none;
    transition: var(--transition);
    font-family: 'Inter', sans-serif;
    position: relative;
    overflow: hidden;
}

.btn-glow {
    background: var(--primary);
    color: #ffffff;
    box-shadow: 0 4px 20px var(--accent-glow);
}

.btn-glow::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transition: left 0.6s ease;
}

.btn-glow:hover::before {
    left: 100%;
}

.btn-glow:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(26, 39, 68, 0.25);
    background: var(--primary-mid);
}

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

.btn-ghost:hover {
    background: var(--primary);
    color: #ffffff;
    transform: translateY(-2px);
}

.btn-lg { padding: 20px 44px; font-size: 1rem; }
.btn-block { width: 100%; }

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 24px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 14px 0;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--border);
}

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

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

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

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--primary);
    letter-spacing: 4px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition);
    position: relative;
    padding: 4px 0;
}

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

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

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

.nav-btn {
    padding: 12px 28px;
    font-size: 0.85rem;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-toggle span {
    width: 24px;
    height: 1.5px;
    background: var(--text);
    border-radius: 2px;
    transition: var(--transition);
}

/* Hero */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 140px 0 100px;
    overflow: hidden;
}

.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 50% 0%, rgba(26, 39, 68, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse 80% 50% at 80% 80%, rgba(26, 39, 68, 0.03) 0%, transparent 50%),
        radial-gradient(ellipse 40% 40% at 10% 60%, rgba(26, 39, 68, 0.05) 0%, transparent 50%);
    z-index: 2;
}

.hero-grid-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(26, 39, 68, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(26, 39, 68, 0.04) 1px, transparent 1px);
    background-size: 80px 80px;
    z-index: 2;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black, transparent);
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 22px;
    background: rgba(26, 39, 68, 0.05);
    border: 1px solid rgba(26, 39, 68, 0.15);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 32px;
    letter-spacing: 0.5px;
}

.badge-dot {
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse 2s ease infinite;
    box-shadow: 0 0 8px var(--accent-glow);
}

.hero-title {
    margin-bottom: 28px;
}

.hero-title .line {
    display: block;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 44px;
    line-height: 1.9;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-stats-wrapper {
    position: relative;
    z-index: 3;
    margin-top: auto;
    padding-top: 60px;
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    padding: 36px 56px;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.stat { text-align: center; }

.stat-number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 8px;
    display: block;
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, transparent, rgba(26, 39, 68, 0.15), transparent);
}

.scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0.5;
    animation: float 3s ease infinite;
}

.mouse {
    width: 22px;
    height: 34px;
    border: 1.5px solid var(--text-muted);
    border-radius: 12px;
    position: relative;
}

.wheel {
    width: 3px;
    height: 8px;
    background: var(--accent);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s ease infinite;
}

.mouse {
    border-color: var(--primary);
}

.wheel {
    background: var(--primary);
}

.scroll-indicator span {
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
}

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

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

/* About */
.about {
    padding: 140px 0;
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 100px;
    align-items: center;
}

.about-image { position: relative; }

.about-img-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: visible;
}

.about-img-bg {
    position: absolute;
    inset: -4px;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    opacity: 0.15;
    filter: blur(20px);
}

.about-img-placeholder {
    position: relative;
    width: 100%;
    aspect-ratio: 4/5;
    background: var(--bg-alt);
    border-radius: var(--radius-lg);
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.about-img-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.about-img-placeholder span {
    font-family: 'Playfair Display', serif;
    font-size: 6rem;
    font-weight: 900;
    color: rgba(200, 169, 97, 0.15);
}

.floating-badge {
    position: absolute;
    padding: 12px 18px;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: var(--shadow);
    animation: float 4s ease infinite;
    color: var(--primary);
}

.badge-1 { top: 20px; right: -30px; }
.badge-2 { bottom: 60px; left: -20px; animation-delay: -2s; }

.experience-badge {
    position: absolute;
    bottom: -24px;
    right: -24px;
    background: var(--primary);
    color: #ffffff;
    padding: 24px 32px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow-glow);
}

.exp-number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 900;
    line-height: 1;
}

.exp-text {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

.about-content h2 { margin-bottom: 24px; }

.about-lead {
    font-size: 1.1rem;
    color: var(--text);
    margin-bottom: 16px;
    font-weight: 400;
    line-height: 1.8;
}

.about-content > p {
    color: var(--text-muted);
    margin-bottom: 32px;
}

/* About Highlights */
.about-highlights {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 32px;
    padding: 28px;
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.about-highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.highlight-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 10px;
}

.about-highlight-item strong {
    display: block;
    font-size: 0.92rem;
    color: var(--primary);
    margin-bottom: 3px;
}

.about-highlight-item p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

.certifications {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 36px;
}

.cert {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: var(--transition);
}

.cert:hover {
    border-color: var(--border-hover);
    background: rgba(26, 39, 68, 0.05);
}

.cert-icon {
    width: 22px;
    height: 22px;
    background: var(--primary);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    font-weight: 800;
    flex-shrink: 0;
}

/* Services */
.services {
    padding: 140px 0;
    position: relative;
    background: var(--bg-alt);
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 72px;
}

.section-header p {
    color: var(--text-muted);
    margin-top: 16px;
    font-size: 1.05rem;
}

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

.service-card {
    position: relative;
    border-radius: var(--radius);
    transition: var(--transition);
    transform-style: preserve-3d;
    perspective: 1000px;
}

.service-card-inner {
    position: relative;
    padding: 36px 24px;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    text-align: center;
    transition: var(--transition);
    overflow: hidden;
    height: 100%;
}

.service-glow {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover .service-glow { opacity: 1; }

.service-card:hover .service-card-inner {
    border-color: var(--border-hover);
    background: #ffffff;
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

.service-icon {
    font-size: 2.4rem;
    margin-bottom: 16px;
    display: inline-block;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    transform: scale(1.15);
}

.service-card h3 {
    font-size: 1.05rem;
    margin-bottom: 10px;
    color: var(--text);
}

.service-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.service-arrow {
    position: absolute;
    bottom: 20px;
    right: 20px;
    opacity: 0;
    transform: translateX(-8px);
    transition: var(--transition);
    color: var(--primary);
    font-size: 1.2rem;
}

.service-card:hover .service-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* Pricing */
.pricing {
    padding: 140px 0;
    position: relative;
    background: var(--bg);
}

.pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
}

.price-card {
    position: relative;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
}

.price-card-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.price-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-6px);
    box-shadow: var(--shadow-glow);
}

.price-card.featured {
    border-color: var(--primary);
    border-width: 2px;
    transform: scale(1.02);
}

.price-card.featured .price-card-glow {
    background: var(--primary);
    height: 3px;
}

.price-card.featured:hover {
    transform: scale(1.02) translateY(-6px);
}

.featured-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--primary);
    color: #ffffff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-header {
    padding: 32px 28px 24px;
    border-bottom: 1px solid var(--border);
}

.price-icon {
    font-size: 2rem;
    margin-bottom: 12px;
}

.price-header h3 { margin-bottom: 4px; color: var(--text); }
.price-header p { color: var(--text-muted); font-size: 0.85rem; }

.price-body { padding: 20px 28px; }

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.88rem;
    color: var(--text-muted);
}

.price-item:last-child { border-bottom: none; }

.price {
    font-weight: 700;
    color: var(--primary);
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.95rem;
}

.price.call {
    font-size: 0.8rem;
    padding: 4px 10px;
    background: rgba(26, 39, 68, 0.08);
    border-radius: 6px;
}

.price-card .btn {
    margin: 8px 28px 28px;
    width: calc(100% - 56px);
}

.pricing-note {
    text-align: center;
    margin-top: 48px;
    color: var(--text-muted);
    font-size: 0.9rem;
    padding: 16px 24px;
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: 12px;
    display: inline-block;
    width: 100%;
}

/* Why Us */
.why-us {
    padding: 140px 0;
    position: relative;
    background: var(--primary);
}

.why-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: transparent;
}

.why-us .section-tag {
    color: rgba(255,255,255,0.7);
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.15);
}

.why-us h2 {
    color: #ffffff;
}

.why-us .gradient-text {
    background: linear-gradient(135deg, #ffffff, rgba(255,255,255,0.7));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.feature {
    padding: 40px 28px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, rgba(255,255,255,0.6), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature:hover::before { opacity: 1; }

.feature:hover {
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.08);
}

.feature-number {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.feature h4 {
    color: #ffffff;
    margin-bottom: 12px;
    font-size: 1.05rem;
}

.feature p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.88rem;
    line-height: 1.7;
}

/* Testimonials */
.testimonials {
    padding: 140px 0;
    position: relative;
    background: var(--bg-alt);
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.google-rating-badge {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px 10px;
    margin-top: 18px;
    padding: 10px 16px;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 999px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.google-rating-badge .google-rating-stars {
    color: #f59e0b;
    letter-spacing: 1px;
}

.google-rating-badge strong {
    color: var(--text);
    font-weight: 700;
}

.google-reviews-link {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    margin-left: 4px;
}

.google-reviews-link:hover {
    text-decoration: underline;
}

.google-attribution {
    margin-top: 20px;
    text-align: center;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.testimonials-track {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    padding: 36px;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: var(--transition);
}

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

.testimonial-skeleton {
    min-height: 220px;
    background: linear-gradient(90deg, #f3f4f6 25%, #e5e7eb 37%, #f3f4f6 63%);
    background-size: 400% 100%;
    animation: shimmer 1.4s ease infinite;
    border: none;
}

@keyframes shimmer {
    0% { background-position: 100% 0; }
    100% { background-position: 0 0; }
}

.testimonials-empty {
    grid-column: 1 / -1;
    text-align: center;
    color: var(--text-muted);
}

.stars {
    color: #f59e0b;
    font-size: 1rem;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.testimonial-card p {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.8;
    margin-bottom: 24px;
    font-style: italic;
}

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

.author-avatar,
.author-avatar-img {
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.8rem;
    object-fit: cover;
    flex-shrink: 0;
}

.testimonial-author strong {
    display: block;
    font-size: 0.9rem;
    color: var(--text);
}

.testimonial-author span {
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* Book Now */
.book {
    padding: 140px 0;
    position: relative;
    background: var(--bg);
}

.book::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.book-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 80px;
    align-items: start;
}

.book-info h2 { margin-bottom: 16px; }

.book-info > p {
    color: var(--text-muted);
    margin-bottom: 36px;
    font-size: 1.05rem;
    line-height: 1.8;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 36px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 0.92rem;
    color: var(--text-muted);
}

.contact-icon-wrap {
    width: 40px;
    height: 40px;
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--primary);
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.trust-badge {
    padding: 8px 16px;
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--primary);
}

.book-form-wrapper {
    background: #ffffff;
    padding: 44px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.book-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary);
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

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

.form-group label {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 15px 18px;
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: 10px;
    font-size: 0.92rem;
    font-family: 'Inter', sans-serif;
    color: var(--text);
    transition: var(--transition);
}

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

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%235a6a82' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    background-color: var(--bg-alt);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(26, 39, 68, 0.08);
    background: #ffffff;
}

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

/* Footer */
.footer {
    position: relative;
    padding: 0 0 32px;
    background: var(--primary);
    color: #ffffff;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.footer-top {
    padding: 80px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 60px;
}

.footer-cta {
    text-align: center;
}

.footer-cta h3 {
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 24px;
}

.footer-cta .btn-glow {
    background: #ffffff;
    color: var(--primary);
}

.footer-cta .btn-glow:hover {
    background: rgba(255,255,255,0.9);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 60px;
}

.footer-brand .logo-text {
    color: #ffffff;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    line-height: 1.8;
    margin-top: 16px;
    margin-bottom: 20px;
}

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

.social-link {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition);
    text-decoration: none;
}

.social-link:hover {
    border-color: #ffffff;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
}

.footer-links h4 {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ffffff;
    margin-bottom: 24px;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    font-size: 0.88rem;
    transition: var(--transition);
}

.footer-links a:hover { color: #ffffff; }

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.82rem;
}

.footer-bottom .built-by {
    margin-top: 10px;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.35);
}

.footer-bottom .built-by a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.footer-bottom .built-by a:hover {
    color: #ffffff;
}


/* Reveal Animations */
.reveal, .reveal-up, .reveal-left, .reveal-right {
    opacity: 0;
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal { transform: translateY(30px); }
.reveal-up { transform: translateY(50px); }
.reveal-left { transform: translateX(-50px); }
.reveal-right { transform: translateX(50px); }

.reveal.active, .reveal-up.active, .reveal-left.active, .reveal-right.active {
    opacity: 1;
    transform: translate(0, 0);
}

/* Responsive */
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-track { grid-template-columns: 1fr; max-width: 600px; margin: 0 auto; }
    .pricing-grid { grid-template-columns: 1fr; max-width: 500px; margin-left: auto; margin-right: auto; }
    .price-card.featured { transform: none; }
    .price-card.featured:hover { transform: translateY(-6px); }
}

@media (max-width: 768px) {
    .container { padding: 0 20px; }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 16px;
        right: 16px;
        background: var(--bg-card);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 24px;
        gap: 16px;
        border: 1px solid var(--border);
        border-radius: var(--radius);
        box-shadow: var(--shadow);
    }
    .nav-links.active { display: flex; }
    .nav-links a { font-size: 1rem; padding: 10px 0; }
    .nav-btn { display: none; }
    .mobile-toggle { display: flex; }
    
    h1 { font-size: 2.6rem; }
    h2 { font-size: 2rem; }
    
    .hero { padding: 120px 0 80px; min-height: auto; }
    .hero-subtitle { font-size: 1rem; }
    .hero-stats { flex-direction: column; gap: 24px; padding: 28px; }
    .stat-number { font-size: 2rem; }
    .stat-divider { width: 60px; height: 1px; }
    .scroll-indicator { display: none; }
    .hero-actions { flex-direction: column; align-items: stretch; }
    .hero-actions .btn { width: 100%; justify-content: center; }
    
    .about-grid { grid-template-columns: 1fr; gap: 60px; }
    .about-image { max-width: 300px; margin: 0 auto; }
    .floating-badge { display: none; }
    
    .services-grid { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr; }
    
    .book-grid { grid-template-columns: 1fr; gap: 40px; }
    .book-form-wrapper { padding: 24px; }
    .form-row { grid-template-columns: 1fr; }
    
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-cta h3 { font-size: 1.5rem; }
    .certifications { grid-template-columns: 1fr; }
    .trust-badges { flex-direction: column; }

    .btn { padding: 16px 28px; font-size: 0.95rem; min-height: 52px; }
    .btn-lg { padding: 18px 32px; min-height: 56px; }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 16px 18px;
        font-size: 1rem;
        min-height: 52px;
    }

    .price-item { padding: 16px 0; }
    .section-header { margin-bottom: 48px; }
    .about, .services, .pricing, .why-us, .testimonials, .book { padding: 100px 0; }
}

/* Very small screens */
@media (max-width: 375px) {
    .container { padding: 0 16px; }
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.7rem; }
    .hero-badge { font-size: 0.75rem; padding: 8px 16px; }
    .stat-number { font-size: 1.7rem; }
    .stat-label { font-size: 0.68rem; }
    .book-form-wrapper { padding: 20px; }
    .price-card .btn { margin: 8px 20px 20px; width: calc(100% - 40px); }
    .price-header { padding: 24px 20px 20px; }
    .price-body { padding: 16px 20px; }
}

/* Sticky Book Now button on mobile */
.mobile-sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--border);
    transform: translateY(100%);
    transition: transform 0.4s ease;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
}

.mobile-sticky-cta.visible {
    transform: translateY(0);
}

.mobile-sticky-cta .btn {
    width: 100%;
    justify-content: center;
}

@media (max-width: 768px) {
    .mobile-sticky-cta { display: block; }
    .footer { padding-bottom: 80px; }
}
