/* CSS Variables for Premium Aesthetics */
:root {
    --primary-color: #0f2027; /* Deep Blue */
    --secondary-color: #ff8c00; /* Vibrant Orange */
    --secondary-hover: #e07a00;
    --text-main: #333333;
    --text-muted: #666666;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #eaeaea;
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;
    
    --shadow-sm: 0 4px 6px rgba(0,0,0,0.05);
    --shadow-md: 0 10px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 20px 40px rgba(0,0,0,0.12);
    
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    line-height: 1.6;
    background-color: var(--bg-white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    margin-bottom: 15px;
    line-height: 1.2;
}

.text-center { text-align: center; }
.text-white { color: #fff !important; }
.mt-4 { margin-top: 40px; }

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-family: var(--font-body);
}

.btn-primary {
    background-color: var(--secondary-color);
    color: #fff;
}

.btn-primary:hover {
    background-color: var(--secondary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(255, 140, 0, 0.3);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: #fff;
}

/* Top Bar */
.top-bar {
    background-color: var(--primary-color);
    color: #fff;
    font-size: 14px;
    padding: 8px 0;
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info a {
    color: #fff;
    margin-right: 20px;
}

.contact-info a i {
    color: var(--secondary-color);
    margin-right: 5px;
}

.social-links a {
    color: #fff;
    margin-left: 15px;
    font-size: 16px;
}

.social-links a:hover {
    color: var(--secondary-color);
}

/* Header */
.main-header {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--primary-color);
}

.logo-icon {
    color: var(--secondary-color);
    font-size: 28px;
}

.nav-menu ul {
    display: flex;
    gap: 30px;
}

.nav-menu a {
    font-weight: 500;
    color: var(--text-main);
    padding: 10px 0;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transition: var(--transition);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--secondary-color);
}

.has-dropdown {
    position: relative;
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 200px;
    box-shadow: var(--shadow-md);
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    flex-direction: column;
    gap: 0 !important;
    padding: 10px 0;
    z-index: 100;
}

.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown li a {
    padding: 10px 20px;
    display: block;
}

.dropdown li a::after {
    display: none;
}

.dropdown li a:hover {
    background-color: var(--bg-light);
    color: var(--secondary-color);
}

.mobile-toggle {
    display: none;
    background: transparent;
    border: none;
    font-size: 24px;
    color: var(--primary-color);
    cursor: pointer;
}

/* Sections */
.section {
    padding: 80px 0;
}

.section-header {
    margin-bottom: 50px;
}

.sub-heading {
    color: var(--secondary-color);
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 14px;
    display: block;
    margin-bottom: 10px;
}

.heading {
    font-size: 36px;
}

.heading-line {
    width: 60px;
    height: 3px;
    background-color: var(--secondary-color);
    margin: 15px auto 0;
    border-radius: 2px;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 85vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    background: linear-gradient(to right, #203a43, #0f2027); /* Default gradient background */
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1506461883276-594a12b11cf3?q=80&w=2070&auto=format&fit=crop') center/cover no-repeat;
    opacity: 0.6;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-title {
    color: #fff;
    font-size: 56px;
    margin-bottom: 20px;
}

.hero-title span {
    color: var(--secondary-color);
}

.hero-subtitle {
    color: #e0e0e0;
    font-size: 20px;
    max-width: 700px;
    margin: 0 auto 40px;
}

/* Search Form */
.search-form-wrapper {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 20px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 900px;
    margin: 0 auto;
}

.search-form {
    display: flex;
    background: #fff;
    border-radius: 10px;
    padding: 10px;
    box-shadow: var(--shadow-lg);
}

.input-group {
    flex: 1;
    padding: 10px 20px;
    border-right: 1px solid var(--border-color);
    text-align: left;
}

.input-group:last-of-type {
    border-right: none;
}

.input-group label {
    display: block;
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
    margin-bottom: 5px;
}

.input-group label i {
    color: var(--secondary-color);
    margin-right: 5px;
}

.input-group input,
.input-group select {
    width: 100%;
    border: none;
    outline: none;
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--primary-color);
    font-weight: 600;
    background: transparent;
}

.btn-search {
    border-radius: 8px;
    padding: 0 30px;
}

/* Grid System */
.grid {
    display: grid;
    gap: 30px;
}

.packages-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.services-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

/* Package Cards */
.package-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.card-img-wrapper {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.img-placeholder {
    width: 100%;
    height: 100%;
    transition: var(--transition);
}

.gradient-1 { background: linear-gradient(135deg, #11998e, #38ef7d); }
.gradient-2 { background: linear-gradient(135deg, #ff9966, #ff5e62); }
.gradient-3 { background: linear-gradient(135deg, #4facfe, #00f2fe); }

.package-card:hover .img-placeholder {
    transform: scale(1.1);
}

.badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--secondary-color);
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    z-index: 2;
}

.card-content {
    padding: 25px;
}

.card-meta {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.card-meta i {
    color: var(--secondary-color);
}

.card-title {
    font-size: 22px;
    margin-bottom: 10px;
}

.card-title a:hover {
    color: var(--secondary-color);
}

.card-desc {
    color: var(--text-muted);
    font-size: 15px;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
}

.price {
    font-size: 14px;
    color: var(--text-muted);
}

.price span {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    font-family: var(--font-heading);
}

/* Services */
.bg-light {
    background-color: var(--bg-light);
}

.service-box {
    background: #fff;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.service-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 140, 0, 0.1);
    color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 36px;
    margin: 0 auto 25px;
    transition: var(--transition);
}

.service-box:hover .service-icon {
    background: var(--secondary-color);
    color: #fff;
}

/* Why Choose Us Section */
.why-choose-section {
    background-color: var(--bg-light);
}

.why-choose-container {
    display: flex;
    gap: 50px;
    align-items: stretch;
    flex-wrap: wrap;
}

.why-choose-img-wrapper {
    flex: 1;
    min-width: 0;
    width: 100%;
    display: flex;
    align-items: center;
    position: relative;
}

.why-choose-img-sticky {
    width: 100%;
}

.why-choose-img {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
}

.why-choose-content {
    flex: 1;
    min-width: 300px;
    padding: 40px 0;
}

.why-choose-text {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.why-choose-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.stat-box {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    border-bottom: 3px solid var(--primary-color);
}

.stat-num {
    color: var(--secondary-color);
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.stat-label {
    color: var(--text-main);
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
}

/* Contact Section */
.contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    max-width: 900px;
    margin: 0 auto;
}

/* Footer */
.main-footer {
    background-color: var(--primary-color);
    color: #fff;
    padding-top: 80px;
}

.footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-logo {
    color: #fff;
    margin-bottom: 20px;
}

.brand-col p {
    color: #aaa;
    margin-bottom: 25px;
}

.footer-col h3 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 25px;
    font-family: var(--font-body);
    font-weight: 600;
}

.footer-col ul li {
    margin-bottom: 15px;
}

.footer-col ul li a {
    color: #aaa;
}

.footer-col ul li a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.footer-col ul li a i {
    margin-right: 8px;
    font-size: 12px;
}

.contact-list li {
    display: flex;
    gap: 15px;
    color: #aaa;
}

.contact-list li i {
    color: var(--secondary-color);
    margin-top: 5px;
}

.footer-socials a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    margin-right: 10px;
    transition: var(--transition);
}

.footer-socials a:hover {
    background: var(--secondary-color);
    color: #fff;
    transform: translateY(-3px);
}

.footer-bottom {
    background-color: #0b171c;
    padding: 20px 0;
    text-align: center;
    color: #888;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 991px) {
    .search-form {
        flex-direction: column;
    }
    .input-group {
        border-right: none;
        border-bottom: 1px solid var(--border-color);
    }
    .btn-search {
        border-radius: 0 0 10px 10px;
        padding: 15px;
    }
    .footer-inner {
        grid-template-columns: 1fr 1fr;
    }
    .why-choose-container {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 40px 0;
    }
    
    .top-bar {
        display: none;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: #fff;
        flex-direction: column;
        transition: var(--transition);
        overflow-y: auto;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu ul {
        flex-direction: column;
        padding: 30px;
        gap: 0;
    }
    
    .nav-menu ul li {
        width: 100%;
        border-bottom: 1px solid var(--border-color);
    }
    
    .nav-menu a {
        display: block;
        padding: 15px 0;
    }
    
    .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: var(--bg-light);
        display: none;
    }
    
    .has-dropdown.active .dropdown {
        display: flex;
    }
    
    .mobile-toggle {
        display: block;
    }
    
    .hero-section {
        height: auto;
        min-height: 500px;
        padding: 100px 0 50px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .heading {
        font-size: 28px;
    }
    
    .why-choose-content {
        padding: 10px 0;
    }
    
    .why-choose-stats {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-top: 25px;
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-inner {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .card-img-wrapper {
        height: 200px;
    }
}
