@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600;700;800&family=Inter:wght@300;400;500;600&display=swap');

:root {
    /* Premium Color Palette */
    --clr-primary: #063133; /* Deep Luxury Teal */
    --clr-primary-light: #0d5c60; /* Vibrant Accent Teal */
    --clr-secondary: #005696; /* Professional Blue */
    --clr-accent: #D4AF37; /* Metallic Gold */
    --clr-accent-light: #F9F3E3; /* Soft Gold Tint */
    --clr-accent-glow: #FCEABB; /* Gold Glow */
    --clr-text: #1a1a1a;
    --clr-text-light: #4A5568; /* Slate gray for better readability */
    --clr-bg-light: #F8FAFC; /* Crisp cool gray instead of generic off-white */
    --clr-white: #ffffff;
    --clr-orange: #D4AF37;
    
    --ff-heading: 'Montserrat', sans-serif;
    --ff-body: 'Inter', sans-serif;
    
    /* Modern Shadows & Depth */
    --shadow-main: 0 20px 40px rgba(6, 49, 51, 0.08); /* Colored shadow base */
    --shadow-hover: 0 25px 50px rgba(6, 49, 51, 0.15);
    --shadow-glass: 0 8px 32px 0 rgba(31, 38, 135, 0.1);
    
    /* Premium Transitions */
    --transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    --transition-bounce: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

body {
    font-family: var(--ff-body);
    color: var(--clr-text);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--clr-white);
}

h1, h2, h3, h4, .logo-text {
    font-family: var(--ff-heading);
    color: var(--clr-primary);
    font-weight: 700;
}

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

/* --- Premium Gradient Utilities --- */
.gradient-text-gold {
    background: linear-gradient(135deg, #D4AF37 0%, #FCEABB 50%, #D4AF37 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shine 5s linear infinite;
}

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

/* --- Top Bar & Badges --- */
.top-bar {
    background: var(--clr-primary);
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.badge-mini {
    font-size: 0.65rem;
    font-weight: 800;
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    background: rgba(197, 160, 89, 0.15);
    color: var(--clr-accent);
    border: 1px solid var(--clr-accent);
    letter-spacing: 0.5px;
}

.badge-mini.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
}

/* --- Navigation & Mega Menu --- */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: var(--transition);
}

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

nav.scrolled {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(15px);
    padding: 0.8rem 0;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
}

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

.logo-text {
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: white;
}

nav.scrolled .logo-text {
    color: var(--clr-primary);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-links > li {
    position: relative;
    padding: 10px 0;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-weight: 600;
    font-size: 0.85rem;
    transition: var(--transition);
    letter-spacing: 0.5px;
}

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

nav.scrolled .nav-links .btn-primary {
    color: white;
}

/* Mega Menu Structure */
.mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    width: 600px;
    background: white;
    box-shadow: 0 30px 60px rgba(0,0,0,0.12);
    border-radius: 8px;
    padding: 2.5rem;
    display: none;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    opacity: 0;
    transition: var(--transition);
    border-top: 4px solid var(--clr-accent);
}

.nav-links > li:hover .mega-menu {
    display: grid;
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.mega-menu h4 {
    color: var(--clr-accent);
    font-size: 0.8rem;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.mega-menu ul {
    list-style: none;
}

.mega-menu li {
    margin-bottom: 0.8rem;
}

.mega-menu a {
    color: var(--clr-primary) !important;
    font-size: 0.9rem;
    font-weight: 500;
}

.mega-menu a:hover {
    color: var(--clr-accent) !important;
    padding-left: 5px;
}

/* Mobile Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: white;
    transition: var(--transition);
    border-radius: 2px;
}

nav.scrolled .hamburger span {
    background: var(--clr-primary);
}

/* --- Buttons --- */
.btn {
    padding: 0.8rem 1.8rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 700;
    font-family: var(--ff-heading);
    transition: var(--transition);
    display: inline-block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, var(--clr-primary), var(--clr-primary-light));
    color: var(--clr-white);
    box-shadow: 0 10px 20px rgba(6, 49, 51, 0.2);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, var(--clr-primary-light), var(--clr-primary));
    opacity: 0;
    transition: var(--transition);
    z-index: -1;
}

.btn-primary:hover::before {
    opacity: 1;
}

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

.btn-primary-lite {
    background: linear-gradient(135deg, #D4AF37, #b59049);
    color: var(--clr-primary);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
}

.btn-primary-lite:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.3);
    color: white;
}

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

.btn-outline:hover {
    background: var(--clr-primary);
    color: white;
}

.full-width {
    width: 100%;
    text-align: center;
}

/* --- Hero Section --- */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    background: #000;
    color: var(--clr-white);
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(6, 49, 51, 0.95) 0%, rgba(6, 49, 51, 0.6) 40%, rgba(0,0,0,0.4) 100%);
    z-index: 1;
    backdrop-filter: blur(2px);
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 80px;
    max-width: 700px;
}

.hero-content h1 {
    font-size: 3.8rem;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    font-weight: 800;
}

.hero-content p {
    font-size: 1.2rem;
    max-width: 600px;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    line-height: 1.8;
}

/* --- Stats Banner --- */
.stats-banner {
    background: var(--clr-primary);
    padding: 4rem 0;
    color: white;
}

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

.stat-item h2 {
    font-size: 3rem;
    color: var(--clr-accent);
    margin-bottom: 0.5rem;
}

.stat-item p {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.8rem;
    opacity: 0.8;
}

/* --- Page Hero Utility --- */
.page-hero {
    padding: 10rem 0 5rem 0;
    background: var(--clr-bg-light);
    border-bottom: 5px solid var(--clr-accent);
}

.page-hero h1 {
    font-size: 3.2rem;
    margin-bottom: 1rem;
}

/* --- Features/Solutions --- */
.section-padding {
    padding: 7rem 0;
}

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

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--clr-text-light);
    max-width: 600px;
    margin: 0 auto;
}

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

.feature-card {
    padding: 3rem;
    background: white;
    border-radius: 8px;
    box-shadow: var(--shadow-main);
    transition: var(--transition);
    border-bottom: 3px solid transparent;
}

.feature-card:hover {
    transform: translateY(-12px);
    border-bottom: 3px solid var(--clr-accent);
    box-shadow: var(--shadow-hover);
}

.feature-card h3 {
    font-size: 1.4rem;
    margin: 1.5rem 0 1rem 0;
}

.feature-card p {
    color: var(--clr-text-light);
    line-height: 1.7;
}

.icon-box {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 1.5rem;
}

.blue-lite { background: rgba(0, 86, 150, 0.1); color: var(--clr-secondary); }
.green-lite { background: rgba(0, 75, 80, 0.1); color: var(--clr-primary); }

/* --- Form Styles --- */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.6rem;
    font-weight: 700;
    color: var(--clr-primary);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem 1.2rem;
    border-radius: 4px;
    border: 1px solid #e2e8f0;
    background: #fafafa;
    font-family: var(--ff-body);
    font-size: 0.95rem;
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--clr-accent);
    box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.1);
    background: white;
}

/* --- Footer --- */
footer {
    background: #0a0a0a;
    color: white;
    padding: 6rem 0 2rem 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand h2 {
    color: white;
    margin-bottom: 1.5rem;
}

.footer-links h4 {
    color: var(--clr-accent);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

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

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
}

/* --- Smooth Page Transitions & Micro Animations --- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes shine {
    to {
        background-position: 200% center;
    }
}

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

@keyframes pulse-glow {
    0% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(212, 175, 55, 0); }
    100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
}

.hero-content {
    animation: fadeInUp 1.2s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.feature-card img {
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

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

/* Glassmorphism Classes for use in HTML */
.glass-effect {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* --- Scrollbar --- */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--clr-accent);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #b59049;
}

/* --- Selection Color --- */
::selection {
    background: var(--clr-accent);
    color: white;
}

/* --- Responsive Design --- */
@media (max-width: 1024px) {
    .hero-content h1 { font-size: 3rem; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 3rem; }
    .feature-grid { grid-template-columns: 1fr 1fr; }
    .grid-2 { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .top-bar { display: none; }
    
    .hamburger {
        display: flex;
    }
    
    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: var(--clr-primary);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        z-index: 999;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-links a {
        color: white !important;
        font-size: 1.2rem;
    }
    
    .mega-menu {
        display: none !important;
    }
    
    .hero {
        min-height: 80vh;
    }
    
    .hero-content {
        padding-top: 100px;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .stat-item h2 {
        font-size: 2rem;
    }
    
    .page-hero {
        padding: 8rem 0 3rem 0;
    }
    
    .page-hero h1 {
        font-size: 2rem;
    }
    
    .section-padding {
        padding: 4rem 0;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* Responsive Utilities for inline-style replacement */
    .responsive-grid-2 {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }

    .mobile-text-center {
        text-align: center !important;
    }

    .mobile-flex-column {
        flex-direction: column !important;
        gap: 1rem !important;
    }

    .stat-item h2 {
        font-size: 2.2rem;
    }

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

    .package-card-featured {
        transform: scale(1) !important;
        margin: 1rem 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1.2rem;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .btn {
        font-size: 0.75rem;
        padding: 0.7rem 1.2rem;
    }
}
