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

:root {
    /* Dark Theme Colors */
    --bg-dark: #0A0A0A;
    --bg-dark-secondary: #111111;
    --bg-dark-tertiary: #1A1A1A;
    --text-white: #FFFFFF;
    --text-light-grey: #A0A0A0;
    --text-medium-grey: #6B6B6B;

    /* Teal/Emerald Color Palette */
    --primary-color: #14B8A6;
    --primary-light: #2DD4BF;
    --primary-dark: #0D9488;
    --accent-color: #10B981;
    --accent-light: #34D399;

    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Poppins', sans-serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;

    /* 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-primary);
    color: var(--text-white);
    background-color: var(--bg-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 1.75rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.02em;
    transition: all var(--transition-base);
    border: none;
    cursor: pointer;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: #fff;
    box-shadow: 0 4px 20px rgba(20, 184, 166, 0.35);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(20, 184, 166, 0.5);
}

.btn-outline-dark {
    background: transparent;
    color: var(--text-white);
    border: 2px solid rgba(255, 255, 255, 0.25);
}

.btn-outline-dark:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.45);
}

.btn-nav {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: #fff;
    padding: 0.65rem 1.35rem;
    font-size: 0.8rem;
    box-shadow: 0 4px 15px rgba(20, 184, 166, 0.3);
}

.btn-nav:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(20, 184, 166, 0.45);
}

.btn-large {
    padding: 1rem 2.25rem;
    font-size: 1rem;
}

/* Section Titles */
.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1rem;
    color: var(--text-white);
}

.section-title.center {
    text-align: center;
}

.section-subtitle {
    color: var(--text-light-grey);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.section-subtitle.center {
    text-align: center;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--spacing-sm) var(--spacing-md);
    transition: all var(--transition-base);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: var(--spacing-xs) var(--spacing-md);
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.1) 0%, rgba(16, 185, 129, 0.08) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--spacing-md);
    box-shadow: 0 4px 24px rgba(20, 184, 166, 0.2);
    border: 1px solid rgba(20, 184, 166, 0.2);
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: transform var(--transition-base);
}

.logo-link:hover {
    transform: scale(1.02);
}

.logo-img {
    height: 42px;
    width: 42px;
    object-fit: contain;
    margin-right: 0.75rem;
    border-radius: 50%;
    background: var(--bg-dark-tertiary);
    border: 2px solid rgba(20, 184, 166, 0.3);
    box-shadow: 0 0 15px rgba(20, 184, 166, 0.25);
    transition: all var(--transition-base);
}

.logo-link:hover .logo-img {
    box-shadow: 0 0 20px rgba(20, 184, 166, 0.45);
    border-color: rgba(20, 184, 166, 0.6);
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-white);
    letter-spacing: -0.02em;
}

.logo-accent {
    color: var(--primary-color);
    margin-left: 0.25rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: clamp(1rem, 2vw, 1.75rem);
    align-items: center;
    flex: 1;
    justify-content: center;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    transition: color var(--transition-base);
    position: relative;
    padding: var(--spacing-xs) 0;
}

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

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

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: rgba(17, 17, 17, 0.8);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    gap: 5px;
    flex-shrink: 0;
}

.mobile-only {
    display: none;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-white);
    border-radius: 2px;
    transition: all var(--transition-base);
}

.navbar.scrolled {
    padding: 0.5rem var(--spacing-md);
}

.navbar.scrolled .nav-container {
    background: rgba(10, 10, 10, 0.92);
    border-color: rgba(20, 184, 166, 0.15);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 100px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: var(--bg-dark);
    background-image: url('hero-bg.svg');
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.92) 0%, rgba(10, 10, 10, 0.75) 50%, rgba(10, 10, 10, 0.85) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 0 var(--spacing-md);
    animation: fadeInUp 1s ease forwards;
}

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

.clinic-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(20, 184, 166, 0.15);
    border: 1px solid rgba(20, 184, 166, 0.3);
    color: var(--primary-light);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.tag-dot {
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

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

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 10vw, 7rem);
    font-weight: 800;
    line-height: 0.95;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
}

.title-white {
    display: block;
    color: var(--text-white);
}

.title-teal {
    display: block;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    color: var(--text-light-grey);
    font-size: clamp(0.95rem, 2vw, 1.25rem);
    font-weight: 500;
    letter-spacing: 0.12em;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    border: none;
    color: var(--text-white);
    cursor: pointer;
    opacity: 0.7;
    transition: opacity var(--transition-base);
}

.hero-scroll:hover {
    opacity: 1;
}

.scroll-text {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.scroll-arrow {
    width: 24px;
    height: 24px;
    animation: bounce 2s infinite;
}

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

/* Stats Section */
.stats-section {
    padding: var(--spacing-xl) 0;
    background: var(--bg-dark-secondary);
    position: relative;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(20, 184, 166, 0.3), transparent);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-md);
    text-align: center;
}

.stat-item {
    padding: var(--spacing-md);
    position: relative;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.stat-number {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-light-grey);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* About & Services Overview */
.about-services {
    padding: var(--spacing-xl) 0;
    background: var(--bg-dark);
}

.services-modern-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
}

.service-modern-card {
    position: relative;
    background: var(--bg-dark-tertiary);
    border-radius: 24px;
    padding: var(--spacing-lg) var(--spacing-md);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all var(--transition-base);
}

.service-modern-card:hover {
    transform: translateY(-8px);
    border-color: rgba(20, 184, 166, 0.25);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.service-card-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.2), rgba(16, 185, 129, 0.15));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.service-card-icon svg {
    width: 30px;
    height: 30px;
}

.service-card-title {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-white);
}

.service-card-description {
    color: var(--text-light-grey);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-weight: 600;
    transition: gap var(--transition-base);
}

.service-card-link svg {
    width: 18px;
    height: 18px;
}

.service-card-link:hover {
    gap: 0.75rem;
}

.service-card-gradient {
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(20, 184, 166, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

/* Why Choose Us */
.why-choose-us {
    padding: var(--spacing-xl) 0;
    background: var(--bg-dark-secondary);
}

.why-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.why-subtitle {
    color: var(--text-light-grey);
    font-size: 1.1rem;
}

.why-subtitle.center {
    text-align: center;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.why-card {
    background: var(--bg-dark-tertiary);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: var(--spacing-md);
    transition: all var(--transition-base);
}

.why-card:hover {
    transform: translateY(-5px);
    border-color: rgba(20, 184, 166, 0.25);
}

.why-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.2), rgba(16, 185, 129, 0.15));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    margin-bottom: 1.25rem;
}

.why-icon svg {
    width: 26px;
    height: 26px;
}

.why-card-title {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.why-card-text {
    color: var(--text-light-grey);
    font-size: 0.95rem;
    line-height: 1.6;
}

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

.why-conclusion {
    color: var(--text-light-grey);
    font-size: 1.15rem;
    line-height: 1.8;
    font-style: italic;
}

/* Reviews Section */
.reviews-section {
    padding: var(--spacing-xl) 0;
    background: var(--bg-dark);
}

.reviews-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.google-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #fff;
    color: #333;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.google-badge svg {
    width: 20px;
    height: 20px;
}

.reviews-modern-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.review-modern-card {
    background: var(--bg-dark-tertiary);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: var(--spacing-md);
    transition: all var(--transition-base);
}

.review-modern-card:hover {
    transform: translateY(-5px);
    border-color: rgba(20, 184, 166, 0.2);
}

.review-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.review-stars {
    display: flex;
    gap: 0.25rem;
}

.review-stars svg {
    width: 18px;
    height: 18px;
}

.review-text {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.review-author-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    color: #fff;
}

.review-author-info {
    display: flex;
    flex-direction: column;
}

.review-author-name {
    color: var(--text-white);
    font-size: 0.95rem;
}

.review-verified {
    color: var(--text-medium-grey);
    font-size: 0.8rem;
}

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

/* FAQ Section */
.faq {
    padding: var(--spacing-xl) 0;
    background: var(--bg-dark-secondary);
}

.faq .section-title {
    margin-bottom: var(--spacing-lg);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--bg-dark-tertiary);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    overflow: hidden;
    transition: border-color var(--transition-base);
}

.faq-item.active {
    border-color: rgba(20, 184, 166, 0.25);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem var(--spacing-md);
    background: transparent;
    border: none;
    color: var(--text-white);
    font-family: var(--font-primary);
    font-size: 1.05rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: color var(--transition-base);
}

.faq-question:hover {
    color: var(--primary-color);
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    transition: transform var(--transition-base);
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

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

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    color: var(--text-light-grey);
    padding: 0 var(--spacing-md) 1.25rem;
    line-height: 1.7;
}

/* CTA Section */
.cta-section {
    padding: var(--spacing-xl) 0;
    background: var(--bg-dark);
}

.cta-box {
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.15) 0%, rgba(16, 185, 129, 0.1) 100%);
    border: 1px solid rgba(20, 184, 166, 0.2);
    border-radius: 24px;
    padding: var(--spacing-lg) var(--spacing-md);
    text-align: center;
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta-text {
    color: var(--text-light-grey);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 1.75rem;
}

/* Footer */
.footer {
    padding: var(--spacing-lg) 0 var(--spacing-md);
    background: var(--bg-dark-secondary);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    text-align: center;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.footer-tagline {
    color: var(--text-light-grey);
    font-size: 0.95rem;
}

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

.footer-links a {
    color: var(--text-light-grey);
    font-weight: 500;
    transition: color var(--transition-base);
}

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

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--bg-dark-tertiary);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light-grey);
    transition: all var(--transition-base);
}

.social-icon svg {
    width: 20px;
    height: 20px;
}

.social-icon:hover {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-text {
    color: var(--text-medium-grey);
    font-size: 0.85rem;
    margin-top: 0.5rem;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 999;
    width: 56px;
    height: 56px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
}

/* Page Header */
.page-header {
    position: relative;
    min-height: 45vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 120px;
    padding-bottom: var(--spacing-md);
    overflow: hidden;
}

.page-header-bg {
    position: absolute;
    inset: 0;
    background-image: url('header-bg.svg');
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.page-header-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.92) 0%, rgba(10, 10, 10, 0.8) 100%);
    z-index: 1;
}

.page-header-content {
    position: relative;
    z-index: 2;
}

.page-header-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    margin-bottom: 0.75rem;
}

.page-header-subtitle {
    color: var(--text-light-grey);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Content Section */
.content-section {
    padding: var(--spacing-xl) 0;
    background: var(--bg-dark);
}

.content-section.alt {
    background: var(--bg-dark-secondary);
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
}

.content-text h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.content-text p {
    color: var(--text-light-grey);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.content-image {
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.content-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 350px;
}

/* Services Page */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
}

.service-card {
    background: var(--bg-dark-tertiary);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: var(--spacing-md);
    transition: all var(--transition-base);
}

.service-card:hover {
    transform: translateY(-6px);
    border-color: rgba(20, 184, 166, 0.25);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.35);
}

.service-card h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

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

/* Pricing Table */
.pricing-table {
    background: var(--bg-dark-tertiary);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    overflow: hidden;
}

.pricing-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.15rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    color: var(--text-white);
    font-weight: 500;
    transition: background var(--transition-base);
}

.pricing-row:last-child {
    border-bottom: none;
}

.pricing-row:hover {
    background: rgba(20, 184, 166, 0.08);
}

.pricing-price {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--primary-light);
    white-space: nowrap;
    margin-left: 1rem;
}

/* Instagram Feed Section */
.instagram-section {
    padding: var(--spacing-xl) 0;
    background: var(--bg-dark-secondary);
}

.instagram-header {
    text-align: center;
    margin-bottom: var(--spacing-md);
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
    margin-bottom: var(--spacing-md);
}

.instagram-item {
    aspect-ratio: 1;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    background: var(--bg-dark-tertiary);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.instagram-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-base);
}

.instagram-item:hover img {
    transform: scale(1.08);
}

.instagram-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-base);
}

.instagram-item:hover .instagram-overlay {
    opacity: 1;
}

.instagram-overlay svg {
    width: 32px;
    height: 32px;
    color: #fff;
}

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

/* Gallery Section */
.gallery-item {
    aspect-ratio: 1;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    background: var(--bg-dark-tertiary);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-base);
}

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

.gallery-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-medium-grey);
    font-size: 0.95rem;
    font-weight: 500;
    text-align: center;
    padding: 1rem;
}

/* About page text-only layout */
.about-text-only {
    grid-template-columns: 1fr;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-text-only .content-text p {
    text-align: center;
}

.gallery-grid {
    grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 768px) {
    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Contact Page */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
}

.contact-info-card,
.contact-form-card {
    background: var(--bg-dark-tertiary);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: var(--spacing-md);
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-info-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.2), rgba(16, 185, 129, 0.15));
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-icon svg {
    width: 22px;
    height: 22px;
}

.contact-info-text h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.contact-info-text p,
.contact-info-text a {
    color: var(--text-light-grey);
    font-size: 0.95rem;
}

.contact-info-text a:hover {
    color: var(--primary-color);
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.85rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--text-white);
    font-family: var(--font-primary);
    font-size: 0.95rem;
    transition: border-color var(--transition-base), background var(--transition-base);
}

.form-group select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1.2rem;
    padding-right: 2.75rem;
    cursor: pointer;
}

.form-group select option {
    background: #1a1a1a;
    color: var(--text-white);
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
}

.form-group select option:hover,
.form-group select option:focus {
    background: var(--primary-color);
    color: #0a0a0a;
}

.form-group select option:checked {
    background: var(--primary-color);
    color: #0a0a0a;
}

.form-group select option:first-child {
    color: var(--text-medium-grey);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.07);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-medium-grey);
}

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

/* Responsive */
@media (max-width: 1024px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

@media (max-width: 768px) {
    .nav-container {
        padding: var(--spacing-xs) var(--spacing-sm);
        gap: var(--spacing-sm);
    }

    .nav-actions {
        display: none;
    }

    .mobile-only {
        display: block;
        margin-top: 0.75rem;
        padding-top: 0.75rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .mobile-only a {
        display: inline-block;
        min-width: 220px;
        padding: 1rem 3rem;
        background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
        color: #0a0a0a;
        border-radius: 50px;
        font-weight: 700;
        font-size: 1rem;
        text-align: center;
        text-decoration: none;
        letter-spacing: 0.02em;
        white-space: nowrap;
    }

    .logo-text {
        display: none;
    }

    .logo-img {
        margin-right: 0;
        height: 40px;
        width: 40px;
    }

    .nav-menu {
        position: fixed;
        top: 85px;
        left: var(--spacing-sm);
        right: var(--spacing-sm);
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        border: 1px solid rgba(20, 184, 166, 0.2);
        border-radius: 16px;
        flex-direction: column;
        padding: 1.25rem var(--spacing-md);
        gap: 0.5rem;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: all var(--transition-base);
    }

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

    .nav-menu a {
        width: 100%;
        padding: 0.85rem 0;
        text-align: center;
        font-size: 1rem;
    }

    .nav-menu a::after {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

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

    .nav-toggle.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

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

    .stat-item:nth-child(2)::after {
        display: none;
    }

    .services-modern-grid,
    .content-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .why-grid,
    .reviews-modern-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }

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

    .btn {
        width: 100%;
        max-width: 280px;
    }

    .contact-form-card .btn {
        max-width: none;
    }

    .footer-links {
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: var(--spacing-xs);
    }

    .logo-text {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

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

    .page-header {
        min-height: 35vh;
        padding-top: 100px;
    }

    .page-header-subtitle {
        font-size: 0.95rem;
        padding: 0 var(--spacing-sm);
    }

    .stat-number {
        font-size: 1.75rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }

    .instagram-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .pricing-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }

    .pricing-price {
        margin-left: 0;
    }

    .contact-info-card,
    .contact-form-card {
        padding: var(--spacing-sm);
    }
}
