:root {
    /* Base Colors - Dark (Default) */
    --bg-dark: #020617;
    --navy-900: #0f172a;
    --navy-800: #1e293b;

    /* Semantic Colors */
    --bg-primary: var(--bg-dark);
    --bg-secondary: var(--navy-900);
    --bg-card: var(--navy-900);
    --bg-input: rgba(255, 255, 255, 0.05);

    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;

    --accent-pink: #f43f5e;
    --accent-purple: #8b5cf6;

    --glass-bg: rgba(15, 23, 42, 0.7);
    --glass-border: rgba(255, 255, 255, 0.1);

    --gradient-primary: linear-gradient(135deg, var(--accent-pink), var(--accent-purple));
    --shadow-color: rgba(0, 0, 0, 0.4);
}

[data-theme="light"] {
    --bg-primary: #f8fafc;
    --bg-secondary: #ffffff;
    --bg-card: #ffffff;
    --bg-input: rgba(0, 0, 0, 0.05);

    --text-primary: #0f172a;
    --text-secondary: #475569;

    /* Adjust accents for light mode if needed */
    --accent-pink: #e11d48;
    --accent-purple: #7c3aed;

    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(0, 0, 0, 0.1);

    --shadow-color: rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

h1,
h2,
h3,
.logo-text {
    font-family: 'Outfit', sans-serif;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Glassmorphism Header */
.glass-header {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
    z-index: 1000;
    padding: 1rem 0;
}

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

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

.logo-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
}

.accent-text {
    color: var(--accent-pink);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    transition: color 0.3s;
}

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

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

/* Buttons */
.btn-primary {
    background: var(--gradient-primary);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
    display: inline-block;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(244, 63, 94, 0.3);
}

.btn-outline {
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
    display: inline-block;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.05);
}

.theme-toggle {
    background: none;
    border: none;
    color: var(--text-primary);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
    margin-left: 1rem;
}

.theme-toggle:hover {
    background-color: var(--glass-border);
}

.theme-toggle svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Default (Dark Mode): Show Sun to switch to Light */
.theme-toggle .sun-icon {
    display: block;
    color: #ffd700;
    /* Golden */
    filter: drop-shadow(0 0 3px #f59e0b) drop-shadow(0 0 8px #ea580c) drop-shadow(0 0 15px #c2410c);
}

.theme-toggle .moon-icon {
    display: none;
}

/* Light Mode: Show Moon to switch to Dark */
[data-theme="light"] .theme-toggle .sun-icon {
    display: none;
}

[data-theme="light"] .theme-toggle .moon-icon {
    display: block;
    color: var(--navy-900);
}

/* Hero Section */
.hero-section {
    padding-top: 10rem;
    padding-bottom: 5rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 2rem;
    font-weight: 800;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtext {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
}

/* Animations */
.reveal-text {
    animation: fadeInUp 0.8s ease-out forwards;
}

.reveal-text-delay {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.3s forwards;
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.visual-container {
    position: relative;
}

.hero-img {
    width: 100%;
    max-width: 500px;
    border-radius: 30px;
    position: relative;
    z-index: 2;
}

.floating {
    animation: floating 4s ease-in-out infinite;
}

@keyframes floating {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

.glow-sphere {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: var(--accent-purple);
    filter: blur(100px);
    opacity: 0.3;
    z-index: 1;
}

/* Services Section */
.services-section {
    padding: 8rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

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

.glass-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    padding: 3rem 2rem;
    border-radius: 24px;
    text-align: center;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s;
    cursor: pointer;
}

.glass-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--accent-pink);
    box-shadow: 0 20px 40px var(--shadow-color);
}

.destination-card .card-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

/* Services 9-Point Grid */
.services-grid-9 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.service-card {
    text-align: center;
    padding: 3rem 2rem;
}

.service-card .card-icon {
    font-size: 3rem;
    margin-bottom: 2rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

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

/* About Page Styles */
.about-page .page-hero {
    padding: 12rem 0 6rem;
    text-align: center;
}

.about-page .hero-subtext {
    margin: 0 auto 2.5rem;
    text-align: center;
}

.about-page .content-section {
    padding: 4rem 0;
}

.about-page .mission-vision {
    padding: 4rem 0 8rem;
}

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

.about-page .glass-card {
    padding: 4rem;
}

.about-page h2,
.about-page h3 {
    margin-bottom: 2rem;
}

.section-title-center {
    text-align: center;
    margin-bottom: 4rem;
}

.founders-grid {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    margin-bottom: 8rem;
}

.founder-card {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 4rem;
    align-items: center;
    padding: 3rem !important;
}

.founder-image-container {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px var(--shadow-color);
}

.founder-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.founder-card:hover .founder-img {
    transform: scale(1.05);
}

.founder-info h3 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.founder-bio {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

@media (max-width: 991px) {
    .founder-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .founder-image-container {
        max-width: 300px;
        margin: 0 auto;
    }
}

.about-page p {
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Contact Section */
.contact-section {
    padding: 8rem 0;
}

.glass-form-container {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-radius: 32px;
    overflow: hidden;
}

.form-info {
    padding: 4rem;
    background: var(--bg-secondary);
}

.form-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.interactive-form {
    padding: 4rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

input,
textarea {
    width: 100%;
    background: var(--bg-input);
    border: 1px solid var(--glass-border);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 1rem;
    transition: border-color 0.3s;
}

input:focus,
textarea:focus {
    outline: none;
    border-color: var(--accent-pink);
}

textarea {
    height: 150px;
}

.full-width {
    width: 100%;
}

/* Responsive */
@media (max-width: 968px) {

    .hero-grid,
    .glass-form-container {
        grid-template-columns: 1fr;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .hero-visual {
        order: -1;
    }
}