:root {
    --color-bg: #0a0a0a;
    --color-text: #ffffff;
    --color-text-muted: #a0a0a0;
    --color-gold: #D4AF37;
    --color-gold-light: #F4D06F;
    --color-gold-dark: #AA8C2C;
    --color-surface: rgba(255, 255, 255, 0.05);
    --color-surface-hover: rgba(255, 255, 255, 0.08);
    --border-color: rgba(212, 175, 55, 0.2);

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

    --container-width: 1200px;
    --header-height: 80px;
    --transition: all 0.3s ease;
}

@media (max-width: 768px) {
    :root {
        --header-height: 70px;
    }
}

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

html.lenis {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

.lenis.lenis-scrolling iframe {
    pointer-events: none;
}

body {
    background-color: var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-body);
    line-height: 1.8;
    /* Increased from 1.6 */
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    letter-spacing: 0.01em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

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

/* Typography Utilities */
.text-gold {
    color: var(--color-gold);
    background: linear-gradient(135deg, var(--color-gold-light), var(--color-gold), var(--color-gold-dark));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-gold {
    background: var(--color-gold);
    color: #000;
    font-weight: 600;
}

.btn-gold:hover {
    background: var(--color-gold-light);
    transform: translateY(-2px);
}

.btn-outline {
    border-color: var(--color-gold);
    color: var(--color-gold);
}

.btn-outline:hover {
    background: rgba(212, 175, 55, 0.1);
}

.btn-primary {
    background: var(--color-gold);
    color: #000;
    padding: 10px 24px;
    font-weight: 600;
}

.btn-primary:hover {
    background: var(--color-gold-light);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    z-index: 100;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-inner {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 40px;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-link {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-text-muted);
}

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

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

.mobile-toggle span {
    width: 24px;
    height: 2px;
    background: var(--color-gold);
    transition: var(--transition);
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

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



.nav {
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

@media (max-width: 900px) {
    .nav {
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        height: 100vh;
        background: #0a0a0a;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transform: translateX(100%);
        z-index: 99;
    }

    .nav.active {
        transform: translateX(0);
    }

    .nav-list {
        flex-direction: column;
        gap: 30px;
    }

    .nav-link {
        font-size: 1.5rem;
    }
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: var(--header-height);
    background: url('../assets/hero-bg.png') no-repeat center center/cover;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    /* Overlay for text readability */
    z-index: 1;
}

.hero-content {
    max-width: 800px;
    z-index: 2;
    position: relative;
}

.hero-title {
    font-size: 5rem;
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

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

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .hero-actions .btn {
        width: 100%;
        text-align: center;
    }
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--color-text-muted);
    max-width: 500px;
    margin-bottom: 40px;
}

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

/* Sections General */
.section {
    padding: 180px 0;
    /* Increased from 120px for more breathing room */
}

@media (max-width: 768px) {
    .section {
        padding: 80px 0;
    }
}

.section-header {
    margin-bottom: 100px;
    text-align: center;
}

.section-title {
    font-size: 3.5rem;
    /* Slightly larger */
    margin-bottom: 24px;
    color: var(--color-gold);
    letter-spacing: -0.02em;
    /* Tighter headings for modern look */
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.2rem;
    }
}

.section-desc {
    color: var(--color-text-muted);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    letter-spacing: 0.02em;
    font-weight: 300;
}

/* About Grid */
.about-content-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.about-text .section-header {
    margin-bottom: 40px;
}

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

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.about-image {
    position: relative;
    height: 100%;
    min-height: 500px;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-card {
    background: var(--color-surface);
    padding: 30px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-card:hover {
    background: var(--color-surface-hover);
    transform: translateX(10px);
    border-color: var(--color-gold);
}

@media (max-width: 900px) {
    .about-content-wrapper {
        grid-template-columns: 1fr;
    }

    .about-image {
        min-height: 300px;
        order: -1;
        margin-bottom: 40px;
    }
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--color-bg);
    padding: 40px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05), transparent);
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-gold);
}

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

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--color-gold);
    position: relative;
    z-index: 2;
}

.service-card p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    position: relative;
    z-index: 2;
}

/* Featured Service Card (Transport) */
.service-card.transport-card {
    background: url('../assets/transport.png') no-repeat center center/cover;
}

.service-card.transport-card::before {
    opacity: 0.8;
    background: linear-gradient(to top, #000, rgba(0, 0, 0, 0.5));
}

.service-card.transport-card:hover::before {
    opacity: 0.9;
}

.service-card.transport-card h3,
.service-card.transport-card p {
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

/* Feature Card Images */
.service-card.zero-waiting-card {
    background: url('../assets/zero-waiting.png') no-repeat center center/cover;
}

.service-card.lounge-card {
    background: url('../assets/lounge.png') no-repeat center center/cover;
}

.service-card.appointment-card {
    background: url('../assets/appointment.png') no-repeat center center/cover;
}

.service-card.medicine-card {
    background: url('../assets/medicine.png') no-repeat center center/cover;
}

.service-card.nurse-card {
    background: url('../assets/nurse.png') no-repeat center center/cover;
}

.service-card.lunch-card {
    background: url('../assets/lunch.png') no-repeat center center/cover;
}

.service-card.beverages-card {
    background: url('../assets/beverages.png') no-repeat center center/cover;
}

.service-card.doctor-card {
    background: url('../assets/doctor.png') no-repeat center center/cover;
}

/* Common Overlay for all Image Cards */
.service-card[class*="-card"]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, #000, rgba(0, 0, 0, 0.4));
    opacity: 0.7;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.service-card[class*="-card"]:hover::before {
    opacity: 0.9;
}

.service-card[class*="-card"] h3,
.service-card[class*="-card"] p {
    position: relative;
    z-index: 2;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* Founders */
.founders-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    max-width: 900px;
    margin: 0 auto;
}

.founder-card {
    text-align: center;
}

.founder-img-placeholder {
    width: 100%;
    aspect-ratio: 3/4;
    background: var(--color-surface);
    margin-bottom: 24px;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.founder-img-placeholder::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(212, 175, 55, 0.1), transparent);
}

.founder-card h3 {
    font-size: 1.8rem;
    margin-bottom: 8px;
    color: var(--color-gold);
}

.founder-role {
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
}

/* Packages */
.packages {
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.05), transparent 70%);
}

.package-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    padding: 60px;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.package-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1), transparent 60%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.package-card:hover::after {
    opacity: 1;
}

.package-header {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.package-header h3 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.package-header .price {
    font-size: 1.2rem;
    color: var(--color-gold);
}

.package-features {
    margin-bottom: 40px;
    text-align: left;
    display: inline-block;
}

.package-features li {
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.package-features li::before {
    content: '✦';
    color: var(--color-gold);
}

/* Contact */
.contact-inner {
    text-align: center;
    padding: 80px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), transparent);
    border: 1px solid var(--border-color);
    overflow: hidden;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .contact-inner {
        padding: 25px 12px;
    }

    .contact-inner h2 {
        font-size: 1.5rem;
        word-wrap: break-word;
        margin-bottom: 16px;
    }

    .contact-inner p {
        font-size: 0.8rem;
        word-wrap: break-word;
        margin-bottom: 20px;
    }
}

.contact-inner h2 {
    font-size: 3rem;
    margin-bottom: 24px;
    color: var(--color-gold);
}

.contact-details {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 40px;
}

.contact-link {
    font-size: 1.2rem;
    padding-bottom: 4px;
    word-break: keep-all;
    white-space: nowrap;
    overflow-wrap: normal;
}

@media (max-width: 768px) {
    .contact-link {
        font-size: 0.65rem;
        word-break: keep-all;
        white-space: nowrap;
        overflow-wrap: normal;
        display: block;
        margin: 8px 0;
        max-width: 100%;
    }
}

/* Footer */
.footer {
    padding: 80px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(0, 0, 0, 0.3);
}

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

.footer-section h4 {
    color: var(--color-gold);
    font-size: 1.1rem;
    margin-bottom: 20px;
    font-family: var(--font-heading);
}

.footer-brand-logo {
    height: 60px;
    width: auto;
    margin-bottom: 16px;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--color-gold);
    margin-bottom: 12px;
}

.footer-tagline {
    color: var(--color-text);
    font-size: 0.9rem;
    margin-bottom: 12px;
    font-weight: 500;
}

.footer-description {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    max-width: 350px;
    margin-bottom: 16px;
}

.footer-company {
    color: var(--color-text-muted);
    font-size: 0.85rem;
    margin-top: 12px;
}

.footer-company strong {
    color: var(--color-text);
    font-weight: 600;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

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

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

.social-link {
    width: 40px;
    height: 40px;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--color-gold);
    color: #000;
    transform: translateY(-3px);
}

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

.copyright {
    color: var(--color-text-muted);
    font-size: 0.85rem;
}

@media (max-width: 768px) {
    .footer {
        padding: 60px 0 30px;
    }

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

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

    .social-links {
        justify-content: flex-start;
    }
}

/* Responsive */
/* Responsive */
@media (max-width: 900px) {
    .mobile-toggle {
        display: flex;
        z-index: 101;
        /* Above the nav overlay */
    }

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

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
        /* Redundant but safe */
    }

    /* .nav is handled above */

    .about-grid,
    .founders-grid {
        grid-template-columns: 1fr;
    }

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

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

    .package-card {
        padding: 30px;
    }

    .package-header h3 {
        font-size: 2rem;
    }

    .form-row {
        flex-direction: column;
        gap: 15px;
    }
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #000;
    /* Strictly black */
    z-index: 9999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.preloader-logo img {
    height: 180px;
    /* Increased from 80px */
    width: auto;
    opacity: 0;
    /* Ensure it blends if it has a background, though transparent PNG is best */
    mix-blend-mode: screen;
}

.preloader-text {
    font-family: 'Cinzel', serif;
    /* Exclusive font */
    color: var(--color-gold);
    font-size: 2.5rem;
    /* Larger text */
    letter-spacing: 0.8em;
    /* Wide spacing for luxury */
    font-weight: 600;
    opacity: 0;
    transform: translateY(30px);
    text-transform: uppercase;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

/* Micro-interactions */
.btn {
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    /* Smooth easing */
}

.btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.nav-link {
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-gold);
    transition: width 0.3s ease;
}

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

/* Utilities */
.mt-3 {
    margin-top: 1rem;
}

.mt-4 {
    margin-top: 1.5rem;
}

.mt-5 {
    margin-top: 3rem;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.mb-4 {
    margin-bottom: 1.5rem;
}

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

.font-italic {
    font-style: italic;
}

.about-body p,
.about-footer p {
    margin-bottom: 1rem;
    color: var(--color-text-muted);
}

.about-body h3,
.about-footer h3 {
    font-size: 1.5rem;
    font-family: var(--font-heading);
}

.founder-email {
    display: block;
    margin-top: 0.5rem;
    color: var(--color-text-muted);
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.3s ease;
    word-break: break-all;
    overflow-wrap: anywhere;
}

.founder-email:hover {
    color: var(--color-gold);
}

/* Inquiry Form */
.inquiry-form-wrapper {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
}

.form-heading {
    font-family: var(--font-heading);
    color: var(--color-gold);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.inquiry-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

.form-input {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--color-text);
    font-family: var(--font-body);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--color-gold);
    background: rgba(255, 255, 255, 0.1);
}

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

.btn-block {
    width: 100%;
    margin-top: 1rem;
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

.cursor-follower {
    position: fixed;
    width: 20px;
    height: 20px;
    border: 1px solid var(--color-gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.1s, width 0.3s, height 0.3s, background 0.3s;
    mix-blend-mode: difference;
}

.cursor-active {
    width: 50px;
    height: 50px;
    background: rgba(212, 175, 55, 0.2);
    border-color: transparent;
}

@media (hover: none) {
    .cursor-follower {
        display: none;
    }
}