/* ===================================
   Travel Zone - Modern Landing Page
   =================================== */

/* CSS Variables */
:root {
    /* Colors */
    --primary-color: #FF6B35;
    --primary-dark: #E55527;
    --primary-light: #FF8A5C;
    --secondary-color: #004E89;
    --secondary-dark: #003A66;
    --accent-color: #F7931E;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    --gradient-secondary: linear-gradient(135deg, #004E89 0%, #1A659E 100%);
    --gradient-overlay: linear-gradient(135deg, rgba(255, 107, 53, 0.9) 0%, rgba(247, 147, 30, 0.9) 100%);
    
    /* Neutral Colors */
    --dark: #1A1A2E;
    --text-dark: #2C3E50;
    --text-light: #6C757D;
    --white: #FFFFFF;
    --light-bg: #F8F9FA;
    --border-color: #E9ECEF;
    
    /* Typography */
    --font-primary: 'Inter', sans-serif;
    --font-heading: 'Sora', sans-serif;
    
    /* Spacing */
    --section-padding: 100px 0;
    --container-max: 1200px;
    
    /* Transitions */
    --transition: all 0.3s ease;
    --transition-slow: all 0.5s ease;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.15);
    --shadow-hover: 0 15px 50px rgba(255, 107, 53, 0.3);
}


/* FOTNS */
@import url('https://fonts.googleapis.com/css2?family=Anek+Bangla:wght@100..800&display=swap');

.anek-bangla-regular {
  font-family: "Anek Bangla", sans-serif;
  font-optical-sizing: auto;
  font-weight: 100;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
}

.anek-bangla-600 {
  font-family: "Anek Bangla", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
}

.tiro-bangla-regular {
  font-family: "Tiro Bangla", serif;
  font-weight: 400;
  font-style: normal;
}

.tiro-bangla-regular-italic {
  font-family: "Tiro Bangla", serif;
  font-weight: 400;
  font-style: italic;
}


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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
    background: var(--white);
}

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

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

ul {
    list-style: none;
}

/* Container */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.3;
    color: var(--dark);
}

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

/* Section Styling */
section {
    padding: var(--section-padding);
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-tag {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(247, 147, 30, 0.1) 100%);
    color: var(--primary-color);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 30px;
    margin-bottom: 15px;
}

.section-title {
    font-size: 42px;
    margin-bottom: 15px;
    color: var(--dark);
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.8;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    font-weight: 600;
    font-size: 15px;
    border-radius: 50px;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    z-index: -1;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

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

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

.btn-white {
    background: var(--white);
    color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

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

.btn-sm {
    padding: 10px 24px;
    font-size: 14px;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

/* ===================================
   NAVIGATION
   =================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    padding: 20px 0;
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    padding: 15px 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 600;
    color: var(--dark);
    transition: var(--transition);
}

.navbar.scrolled .logo {
    color: var(--dark);
}

.logo i {
    font-size: 28px;
    color: var(--primary-color);
}

.logo strong {
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    gap: 35px;
}

.nav-link {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 15px;
    position: relative;
    padding: 5px 0;
    transition: var(--transition);
}

.navbar.scrolled .nav-link {
    color: var(--text-dark);
}

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

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

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

.nav-cta .btn-call {
    background: var(--primary-color);
    color: var(--white);
    padding: 10px 24px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.nav-cta .btn-call:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

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

.navbar.scrolled .hamburger span {
    background: var(--dark);
}

/* ===================================
   HERO SECTION
   =================================== */
.hero {
    position: relative;
    padding: 180px 0 120px;
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Redesigned Hero Overrides */
.hero-redesigned {
    padding: 140px 0 0;
    min-height: 90vh;
}

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

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 40, 71, 0.9) 0%, rgba(0, 42, 75, 0.85) 40%, rgba(255, 107, 53, 0.75) 100%);
}

.hero-dots {
    position: absolute;
    inset: 0;
    opacity: 0.25;
    mix-blend-mode: soft-light;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-left {
    color: var(--white);
}

.hero-redesigned .hero-badge {
    margin-bottom: 22px;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.hero-redesigned .hero-title {
    font-size: clamp(36px, 6vw, 64px);
    letter-spacing: -0.5px;
}

.hero-redesigned .hero-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.95);
    max-width: 640px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-top: 24px;
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 24px;
    margin-top: 26px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

.meta-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.hero-right {
    position: relative;
}

.hero-visual {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.hero-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 4/3;
    filter: saturate(1.05) contrast(1.05);
}

.hero-card {
    position: absolute;
    left: 16px;
    bottom: 16px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(8px);
    border-radius: 16px;
    padding: 14px 16px;
    box-shadow: var(--shadow-md);
    display: grid;
    gap: 10px;
}

.hero-card .card-row {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 14px;
}

.hero-card .card-row i {
    color: var(--secondary-color);
}

.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    z-index: 2;
}

.hero-wave svg {
    display: block;
    width: 100%;
    height: 140px;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-redesigned {
        padding: 120px 0 0;
    }
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .hero-left {
        text-align: center;
    }
    .hero-actions {
        justify-content: center;
    }
    .hero-meta {
        justify-content: center;
    }
    .hero-visual img {
        aspect-ratio: 16/10;
    }
}

@media (max-width: 560px) {
    .hero-redesigned .hero-title {
        font-size: clamp(30px, 8vw, 40px);
    }
    .hero-card {
        left: 12px;
        right: 12px;
        bottom: 12px;
    }
}

/* ===================================
   SONADIA ISLAND PAGE STYLES
   =================================== */
.island-hero {
    position: relative;
    padding: 160px 0 0;
    min-height: 80vh;
    display: flex;
    align-items: flex-end;
    background: #0a3f63;
    overflow: hidden;
}
.island-hero-bg { position:absolute; inset:0; z-index:0; }
.island-hero-bg img { width:100%; height:100%; object-fit:cover; filter:brightness(0.65) saturate(1.1); }
.island-hero-overlay { position:absolute; inset:0; background:linear-gradient(120deg, rgba(0,78,137,0.85) 0%, rgba(255,107,53,0.55) 100%); mix-blend-mode:multiply; }
.island-hero-content { position:relative; z-index:2; max-width:760px; color:#fff; padding-bottom:60px; }
.island-badge { display:inline-flex; align-items:center; gap:8px; background:rgba(255,255,255,0.18); padding:10px 20px; border-radius:40px; font-size:14px; font-weight:600; border:1px solid rgba(255,255,255,0.25); margin-bottom:22px; }
.island-badge i { color:#FFA500; }
.island-title { font-size:64px; line-height:1.1; margin-bottom:20px; color:#fff; letter-spacing:-1px; }
.island-subtitle { font-size:19px; line-height:1.7; color:rgba(255,255,255,0.95); max-width:640px; }
.island-cta { display:flex; gap:16px; flex-wrap:wrap; margin-top:30px; }
.island-meta { display:flex; flex-wrap:wrap; gap:14px 24px; margin-top:28px; font-size:14px; font-weight:600; }
.island-meta span { display:inline-flex; align-items:center; gap:8px; color:rgba(255,255,255,0.9); }

/* Quick Nav */
.island-quick-nav { position:sticky; top:80px; background:#ffffff; z-index:900; box-shadow:0 4px 15px rgba(0,0,0,0.06); border-top:1px solid #e5e5e5; border-bottom:1px solid #e5e5e5; }
.island-quick-nav ul { display:flex; flex-wrap:wrap; gap:18px; padding:14px 0; margin:0; }
.island-quick-nav a { font-size:14px; font-weight:600; color:var(--text-dark); position:relative; padding:6px 4px; }
.island-quick-nav a:hover { color:var(--primary-color); }

/* Island Sections */
.island-section { padding:80px 0; background:#fff; position:relative; }
.island-section:nth-of-type(even) { background:var(--light-bg); }
.small-title { font-size:30px; margin-bottom:25px; }

/* Feature Grid */
.feature-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(220px,1fr)); gap:18px; }
.feature-box { background:#fff; padding:18px 18px; border-radius:14px; box-shadow:var(--shadow-sm); display:flex; align-items:center; gap:10px; font-size:15px; font-weight:600; border:1px solid #eef2f5; }
.feature-box i { color:var(--primary-color); }

/* Pricing Card */
.pricing-card { background:linear-gradient(135deg, #004E89 0%, #1A659E 50%, #FF6B35 100%); color:#fff; padding:40px 42px; border-radius:28px; box-shadow:var(--shadow-md); max-width:780px; margin:0 auto; position:relative; overflow:hidden; }
.pricing-card::after { content:''; position:absolute; right:-60px; top:-60px; width:220px; height:220px; background:rgba(255,255,255,0.12); border-radius:50%; }
.price-highlight { font-size:22px; margin:14px 0 10px; }

/* Included List */
.included-list, .rules-list, .refund-list { display:grid; gap:10px; grid-template-columns:repeat(auto-fit,minmax(260px,1fr)); font-size:14px; }
.included-list li, .rules-list li, .refund-list li { background:#fff; padding:12px 14px; border-radius:10px; box-shadow:var(--shadow-sm); border:1px solid #eef2f5; position:relative; }
.included-list li::before, .rules-list li::before, .refund-list li::before { content:'\f058'; font-family:'Font Awesome 6 Free'; font-weight:900; color:var(--primary-color); margin-right:8px; }
.rules-list li::before { content:'\f71c'; }
.refund-list li::before { content:'\f359'; }

/* Food Menu */
.food-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(250px,1fr)); gap:20px; }
.food-box { background:#fff; padding:20px 22px; border-radius:16px; box-shadow:var(--shadow-sm); border:1px solid #eef2f5; }
.food-box h4 { font-size:18px; margin-bottom:8px; }
.menu-note { margin-top:28px; font-size:14px; font-style:italic; color:var(--text-light); }

/* Facilities tags */
.tag-list { display:flex; flex-wrap:wrap; gap:12px; margin-top:10px; }
.tag-list span { background:linear-gradient(135deg, rgba(255,107,53,0.12) 0%, rgba(247,147,30,0.12) 100%); color:var(--primary-color); padding:10px 16px; font-size:13px; font-weight:600; border-radius:40px; border:1px solid rgba(255,107,53,0.25); }

/* Payment */
.payment-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(200px,1fr)); gap:16px; margin-top:10px; }
.pay-box { background:#fff; padding:18px 20px; border-radius:14px; box-shadow:var(--shadow-sm); font-size:15px; font-weight:600; display:flex; align-items:center; gap:10px; border:1px solid #eef2f5; }
.pay-box i { color:var(--secondary-color); }

/* Booking highlight */
.island-section.highlight { background:var(--gradient-secondary); color:#fff; }
.booking-box { max-width:820px; margin:0 auto; text-align:center; }
.booking-box h3 { font-size:34px; margin-bottom:18px; color:#fff; }
.booking-box p { font-size:18px; line-height:1.7; }
.booking-actions { display:flex; justify-content:center; flex-wrap:wrap; gap:16px; margin-top:30px; }

/* Responsive adjustments */
@media (max-width: 992px) {
    .island-title { font-size:56px; }
    .island-hero { padding:140px 0 0; }
    .pricing-card { padding:34px 36px; }
    .booking-box h3 { font-size:30px; }
}
@media (max-width: 680px) {
    .island-title { font-size:44px; }
    .island-subtitle { font-size:17px; }
    .island-quick-nav { position:static; box-shadow:none; border:0; }
    .island-quick-nav ul { justify-content:center; }
}
@media (max-width: 480px) {
    .island-title { font-size:36px; }
    .island-badge { font-size:12px; }
    .pricing-card { padding:26px 26px; }
    .booking-box h3 { font-size:26px; }
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(158, 158, 158, 0.8) 0%, rgba(255, 107, 53, 0.75) 100%);
    z-index: 1;
}

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

.hero-content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: var(--white);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    animation: fadeInDown 0.8s ease;
}

.hero-badge i {
    font-size: 18px;
    color: #FFA500;
}

.hero-title {
    font-size: 72px;
    line-height: 1.2;
    margin-bottom: 25px;
    font-weight: 800;
    color: var(--white);
    animation: fadeInUp 0.8s ease 0.2s backwards;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.95);
    animation: fadeInUp 0.8s ease 0.4s backwards;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    margin-bottom: 0;
    animation: fadeInUp 0.8s ease 0.6s backwards;
}

.btn-large {
    padding: 16px 36px;
    font-size: 16px;
    font-weight: 600;
}

.hero-stats-wrapper {
    animation: fadeInUp 0.8s ease 0.8s backwards;
}

.hero-stats {
    display: flex;
    gap: 0;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 30px 50px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 900px;
    margin: 0 auto;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 0 30px;
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--white);
}

.stat-content h3 {
    font-size: 36px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 2px;
    line-height: 1;
}

.stat-content p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    margin: 0;
}

.stat-divider {
    width: 1px;
    height: 60px;
    background: rgba(255, 255, 255, 0.3);
}

.hero-shape {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    z-index: 2;
}

.hero-shape svg {
    display: block;
    width: 100%;
    height: auto;
}

/* ===================================
   SERVICES SECTION
   =================================== */
.services {
    background: var(--light-bg);
}

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

.service-card {
    background: var(--white);
    padding: 35px 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.service-card.featured {
    background: var(--gradient-primary);
    color: var(--white);
}

.service-card.featured .service-icon {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.service-card.featured h3,
.service-card.featured p {
    color: var(--white);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(247, 147, 30, 0.1) 100%);
    color: var(--primary-color);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin-bottom: 20px;
    transition: var(--transition);
}

.service-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    font-weight: 600;
}

.service-card p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-link {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.service-card.featured .service-link {
    color: var(--white);
}

.service-link:hover {
    gap: 12px;
}

.service-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--white);
    color: var(--primary-color);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ===================================
   PACKAGES SECTION
   =================================== */
.packages {
    background: var(--white);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.packages-grid:has(.package-card:nth-child(2)) {
    max-width: 100%;
}

.package-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.package-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

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

.package-card:hover .package-image img {
    transform: scale(1.15);
}

.package-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    box-shadow: var(--shadow-md);
}

.package-content {
    padding: 25px;
}

.package-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 12px;
}

.package-header h3 {
    font-size: 22px;
    font-weight: 600;
}

.package-rating {
    display: flex;
    gap: 4px;
    color: #FFA500;
    font-size: 14px;
}

.package-content > p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
}

.package-features {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding: 15px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.package-features span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--text-light);
}

.package-features i {
    color: var(--primary-color);
}

.package-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.package-price {
    display: flex;
    flex-direction: column;
}

.price-label {
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 3px;
}

.price-value {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    font-family: var(--font-heading);
}

/* ===================================
   PARTNER PROMO SECTION
   =================================== */
.partner-promo {
    background: var(--gradient-primary);
    padding: 80px 0;
}

.promo-card {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 50px;
    border-radius: 25px;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.promo-content {
    color: var(--white);
}

.promo-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.promo-content h2 {
    font-size: 38px;
    color: var(--white);
    margin-bottom: 15px;
}

.promo-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 30px;
    opacity: 0.95;
}

.promo-content strong {
    font-weight: 700;
    text-decoration: underline;
}

.promo-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

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

.promo-card:hover .promo-image img {
    transform: scale(1.1);
}

/* ===================================
   ABOUT SECTION
   =================================== */
.about {
    background: var(--white);
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-images {
    position: relative;
}

.about-image-main {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image-main img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 25px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.experience-badge h3 {
    font-size: 42px;
    color: var(--white);
    margin-bottom: 5px;
}

.experience-badge p {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.about-image-grid img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
}

.about-content .section-tag {
    margin-bottom: 15px;
}

.about-content .section-title {
    text-align: left;
    margin-bottom: 20px;
}

.about-text {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 40px 0;
}

.about-feature {
    display: flex;
    gap: 20px;
    align-items: start;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(247, 147, 30, 0.1) 100%);
    color: var(--primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.about-feature h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

.about-feature p {
    font-size: 14px;
    color: var(--text-light);
}

.trust-badge {
    display: flex;
    gap: 20px;
    align-items: center;
    padding: 25px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(247, 147, 30, 0.1) 100%);
    border-radius: 15px;
    border-left: 4px solid var(--primary-color);
}

.trust-badge i {
    font-size: 48px;
    color: var(--primary-color);
}

.trust-badge h3 {
    font-size: 22px;
    margin-bottom: 5px;
}

.trust-badge p {
    font-size: 14px;
    color: var(--text-light);
}

/* ===================================
   TESTIMONIALS SECTION
   =================================== */
.testimonials {
    background: var(--light-bg);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--white);
    padding: 35px;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 80px;
    font-family: var(--font-heading);
    color: rgba(255, 107, 53, 0.1);
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.testimonial-header {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-bottom: 20px;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary-color);
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-header h4 {
    font-size: 18px;
    margin-bottom: 3px;
}

.testimonial-header p {
    font-size: 13px;
    color: var(--text-light);
}

.testimonial-rating {
    display: flex;
    gap: 4px;
    color: #FFA500;
    font-size: 14px;
    margin-bottom: 15px;
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-light);
    font-style: italic;
}

/* ===================================
   CONTACT SECTION
   =================================== */
.contact {
    background: var(--light-bg);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info .section-tag {
    margin-bottom: 15px;
}

.contact-info .section-title {
    text-align: left;
    margin-bottom: 20px;
}

.contact-info > p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: start;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.contact-item h4 {
    font-size: 16px;
    margin-bottom: 5px;
}

.contact-item p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

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

.social-link {
    width: 45px;
    height: 45px;
    background: var(--white);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.social-link:hover {
    background: var(--gradient-primary);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.contact-form-wrapper {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

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

.form-group {
    position: relative;
}

.form-group i {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
    font-size: 16px;
    pointer-events: none;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px 15px 50px;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    font-family: var(--font-primary);
    font-size: 15px;
    color: var(--text-dark);
    transition: var(--transition);
    background: var(--white);
}

.form-group textarea {
    resize: vertical;
    padding-top: 15px;
}

.form-group textarea ~ i {
    top: 20px;
    transform: none;
}

.form-group select ~ i {
    left: auto;
    right: 20px;
    pointer-events: none;
}

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

.form-group select {
    appearance: none;
    cursor: pointer;
}

/* ===================================
   FOOTER
   =================================== */
.footer {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.8);
    padding: 60px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-logo i {
    font-size: 28px;
    color: var(--primary-color);
}

.footer-logo strong {
    color: var(--primary-color);
}

.footer-col p {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 20px;
    opacity: 0.8;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-col h3 {
    color: var(--white);
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col ul li a {
    font-size: 14px;
    opacity: 0.8;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--primary-color);
    opacity: 1;
    padding-left: 5px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 18px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    font-family: var(--font-primary);
    font-size: 14px;
    transition: var(--transition);
}

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

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

.newsletter-form button {
    width: 45px;
    height: 45px;
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

.footer-bottom {
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 40px;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright-text {
    flex: 1;
}

.copyright-text p {
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 5px;
}

.copyright-text strong {
    color: var(--white);
    font-weight: 600;
}

.company-structure {
    font-size: 13px;
    opacity: 0.7;
}

.company-structure a {
    color: var(--primary-color);
    font-weight: 500;
    transition: var(--transition);
    text-decoration: none;
}

.company-structure a:hover {
    color: var(--primary-light);
    text-decoration: underline;
}

.footer-credits {
    text-align: right;
}

.footer-credits p {
    font-size: 14px;
    opacity: 0.8;
    margin: 0;
}

.footer-credits a {
    color: var(--white);
    font-weight: 600;
    transition: var(--transition);
    text-decoration: none;
}

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

.footer-bottom i {
    color: var(--primary-color);
}

.hidden{
    display: none;
}
/* ===================================
   FLOATING ELEMENTS
   =================================== */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.scroll-top.active {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.whatsapp-float {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    animation: pulse 2s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

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

/* ===================================
   ANIMATIONS
   =================================== */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

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

/* AOS Animation Fallback */
[data-aos] {
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos].aos-animate {
    opacity: 1;
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
}

[data-aos="fade-up"] {
    transform: translateY(30px);
}

[data-aos="fade-right"].aos-animate {
    transform: translateX(0);
}

[data-aos="fade-right"] {
    transform: translateX(-30px);
}

[data-aos="fade-left"].aos-animate {
    transform: translateX(0);
}

[data-aos="fade-left"] {
    transform: translateX(30px);
}

[data-aos="zoom-in"].aos-animate {
    transform: scale(1);
}

[data-aos="zoom-in"] {
    transform: scale(0.95);
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */
@media (max-width: 1024px) {
    .section-title {
        font-size: 36px;
    }
    
    .hero-title {
        font-size: 56px;
    }
    
    .hero-stats {
        padding: 25px 35px;
    }
    
    .stat-item {
        padding: 0 20px;
    }
    
    .about-wrapper,
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .promo-card {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 30px;
        transition: var(--transition);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-link {
        color: var(--text-dark);
        font-size: 18px;
    }
    
    .nav-cta {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    .hero {
        padding: 150px 0 80px;
        min-height: 70vh;
    }
    
    .hero-title {
        font-size: 42px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
        padding: 25px;
    }
    
    .stat-item {
        padding: 0;
        width: 100%;
        justify-content: center;
    }
    
    .stat-divider {
        display: none;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .services-grid,
    .packages-grid {
        grid-template-columns: 1fr;
    }
    
    .promo-content h2 {
        font-size: 28px;
    }
    
    .about-image-main img {
        height: 400px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-credits {
        text-align: center;
    }
    
    .whatsapp-float {
        bottom: 90px;
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: 28px;
    }
    
    .scroll-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }
    
    .hero {
        min-height: 600px;
        padding: 130px 0 60px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-stats {
        padding: 20px;
    }
    
    .stat-icon {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
    
    .stat-content h3 {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .section-subtitle {
        font-size: 16px;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .package-features {
        flex-direction: column;
        gap: 10px;
    }
    
    .contact-form-wrapper {
        padding: 25px;
    }
}

/* Gallery (Sonadia Page) */
.island-gallery .gallery-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(240px,1fr)); gap:22px; }
.gallery-item { position:relative; border-radius:18px; overflow:hidden; background:#fff; box-shadow:var(--shadow-sm); border:1px solid #eef2f5; }
.gallery-item img { width:100%; height:100%; object-fit:cover; aspect-ratio:4/3; transition:transform .6s ease, filter .6s ease; }
.gallery-item:hover img { transform:scale(1.06); filter:saturate(1.15); }
.gallery-item figcaption { position:absolute; left:0; bottom:0; width:100%; padding:10px 14px; background:linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,.6) 90%); color:#fff; font-size:14px; font-weight:600; }
.gallery-item figcaption::before { content:'\f03e'; font-family:'Font Awesome 6 Free'; font-weight:900; margin-right:6px; color:var(--primary-color); }
@media (max-width:600px){ .island-gallery .gallery-grid { gap:16px; } .gallery-item figcaption { font-size:13px; } }
