/* ===================================
   301 EVENTS - HUGE TEXT & MODERN DROPDOWN
   MATCHING SO COOL EVENTS EXACTLY
   =================================== */

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

:root {
    --teal-primary: #17a2b8;
    --teal-dark: #138496;
    --navy-dark: #1a1a2e;
    --cream: #f5f0e8;
    --beige: #e8dcc8;
    --gold: #d4af37;
    --text-dark: #2d2d2d;
    --text-light: #666;
    --white: #ffffff;
    --light-gray: #f8f9fa;
}

body {
    font-family: 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    font-size: 16px;
}

/* ===================================
   TOP UTILITY BAR
   =================================== */
.top-bar {
    background: var(--teal-primary);
    color: white;
    padding: 12px 0;
    font-size: 14px;
    text-align: center;
    font-weight: 600;
}

.top-bar .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.top-bar-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.partner-link {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
    transition: opacity 0.3s;
}

.partner-link:hover {
    opacity: 0.85;
}

.divider {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
    font-size: 16px;
}

/* ===================================
   MAIN HEADER
   =================================== */
.main-header {
    background: var(--navy-dark);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.logo img {
    height: 60px;
    display: block;
    transition: transform 0.3s;
}

.logo:hover img {
    transform: scale(1.05);
}

/* Search Container */
.search-container {
    flex: 1;
    max-width: 650px;
    position: relative;
}

.search-input {
    width: 100%;
    padding: 15px 55px 15px 25px;
    border: none;
    background: rgba(255, 255, 255, 0.12);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: white;
    font-size: 15px;
    transition: all 0.3s;
}

.search-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.search-input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.18);
    border-color: var(--teal-primary);
    box-shadow: 0 0 0 4px rgba(23, 162, 184, 0.15);
}

.search-btn {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    padding: 10px;
    transition: all 0.3s;
    border-radius: 6px;
}

.search-btn:hover {
    color: var(--teal-primary);
    background: rgba(255, 255, 255, 0.1);
}

/* Header Utilities */
.header-utilities {
    display: flex;
    gap: 35px;
}

.utility-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: var(--gold);
    text-decoration: none;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s;
    padding: 8px 12px;
    border-radius: 6px;
}

.utility-item svg {
    width: 28px;
    height: 28px;
    stroke: var(--gold);
    transition: all 0.3s;
}

.utility-item:hover {
    color: white;
    background: rgba(255, 255, 255, 0.08);
}

.utility-item:hover svg {
    stroke: white;
    transform: translateY(-3px);
}

/* ===================================
   MAIN NAVIGATION - HUGE TEXT
   =================================== */
.main-navigation {
    background: var(--navy-dark);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    position: relative;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.nav-menu {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    flex-wrap: wrap;
}

.nav-item {
    position: relative;
}

/* HUGE NAVIGATION TEXT */
.nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--gold);
    text-decoration: none;
    padding: 22px 25px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s;
    white-space: nowrap;
    border-radius: 6px 6px 0 0;
    font-family: 'Open Sans', sans-serif;
}

.nav-link:hover {
    background: var(--teal-primary);
    color: white;
}

.nav-link-cta {
    background: var(--teal-primary);
    color: white;
    border-radius: 6px;
    margin-left: 15px;
}

.nav-link-cta:hover {
    background: var(--teal-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(23, 162, 184, 0.4);
}

.dropdown-icon {
    stroke: currentColor;
    transition: transform 0.3s;
    margin-left: 3px;
}

.nav-item:hover .dropdown-icon {
    transform: rotate(180deg);
}

/* ===================================
   DROPDOWN MENUS
   =================================== */

/* Standard Dropdown */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-15px);
    background: #ffffff;
    backdrop-filter: blur(6px);
    border: 1px solid rgba(0,0,0,0.04);
    min-width: 320px;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s ease;
    z-index: 100;
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-list {
    list-style: none;
    padding: 0;
    margin: 0;
    background: #ffffff !important;
}

.dropdown-list li {
    margin: 0;
    background: #ffffff !important;
}

.dropdown-list a {
    display: block;
    padding: 10px 16px;
    color: #555;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: all 0.2s ease;
    border-radius: 6px;
    font-family: 'Open Sans', sans-serif;
    line-height: 1.5;
    background: #ffffff !important;
}

.dropdown-list a:hover {
    color: #000;
    background: rgba(23, 162, 184, 0.08) !important;
    padding-left: 24px;
    font-weight: 500;
}

/* ===================================
   SUPER MODERN CENTERED MEGA DROPDOWN
   =================================== */
.mega-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #ffffff;
    backdrop-filter: blur(6px);
    border: 1px solid rgba(0,0,0,0.04);
    border-radius: 12px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
    padding: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-15px);
    transition: all 0.35s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 1000;
    display: none;
}

.nav-item:hover .mega-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    display: block;
}

.dropdown-content {
    display: grid;
    grid-template-columns: repeat(6, minmax(160px, 1fr));
    gap: 0;
    background: #ffffff;
    max-width: 1400px;
    margin: 0 auto;
}

.dropdown-column {
    background: #ffffff !important;
    min-width: 0;
    padding: 20px;
    border-right: 1px solid #f0f0f0;
}

.dropdown-column:last-child {
    border-right: none;
}

/* Force all columns to have same styling */
.dropdown-content > .dropdown-column {
    background: #ffffff !important;
    padding: 20px !important;
}

.dropdown-content .dropdown-column:first-child,
.dropdown-content .dropdown-column:nth-child(2),
.dropdown-content .dropdown-column:nth-child(3),
.dropdown-content .dropdown-column:nth-child(4),
.dropdown-content .dropdown-column:nth-child(5),
.dropdown-content .dropdown-column:nth-child(6) {
    background: #ffffff !important;
    padding: 20px !important;
}

/* HUGE DROPDOWN HEADINGS */
.dropdown-heading {
    color: #222 !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.04em !important;
    margin-bottom: 12px !important;
    padding-bottom: 12px !important;
    border-bottom: 3px solid var(--teal-primary) !important;
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    font-family: 'Open Sans', sans-serif !important;
    background: transparent !important;
}

.dropdown-column .dropdown-list {
    padding: 0 !important;
    margin: 0 0 24px 0 !important;
    list-style: none !important;
    background: transparent !important;
}

.dropdown-column .dropdown-list:last-child {
    margin-bottom: 0 !important;
}

.dropdown-column .dropdown-list li {
    margin-bottom: 0 !important;
    background: transparent !important;
}

/* HUGE DROPDOWN ITEMS */
.dropdown-column .dropdown-list a {
    display: block !important;
    padding: 8px 0 !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    color: #555 !important;
    font-family: 'Open Sans', sans-serif !important;
    line-height: 1.5 !important;
    border-radius: 4px !important;
    text-decoration: none !important;
    transition: color 0.2s ease, padding-left 0.2s ease !important;
    background: transparent !important;
}

.dropdown-column .dropdown-list a:hover {
    color: #000 !important;
    padding-left: 8px !important;
    font-weight: 500 !important;
    background: transparent !important;
}

/* Badges */
.badge-new {
    display: inline-block;
    background: var(--teal-primary);
    color: white;
    font-size: 10px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.trending {
    color: var(--teal-primary);
    font-size: 12px;
    font-weight: 700;
    font-style: italic;
}

/* ===================================
   HERO SLIDER - ENHANCED
   =================================== */
.hero-slider {
    position: relative;
    height: 700px;
    overflow: hidden;
}

.slider-container {
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.3s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide.active {
    opacity: 1;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(26, 26, 46, 0.75) 0%, 
        rgba(23, 162, 184, 0.55) 100%);
}

.slide-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 1100px;
    padding: 0 40px;
    animation: slideContentFade 1.3s ease-out;
}

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

.slide-title {
    font-family: 'Oswald', sans-serif;
    font-size: 64px;
    font-weight: 700;
    letter-spacing: 5px;
    margin-bottom: 15px;
    text-transform: uppercase;
    text-shadow: 3px 3px 15px rgba(0,0,0,0.5);
}

.slide-subtitle {
    font-family: 'Oswald', sans-serif;
    font-size: 88px;
    font-weight: 700;
    letter-spacing: 8px;
    margin-bottom: 20px;
    line-height: 1;
    text-transform: uppercase;
    background: linear-gradient(135deg, #f4d03f 0%, #ffd700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(3px 3px 10px rgba(0,0,0,0.4));
}

.slide-description {
    font-size: 28px;
    font-weight: 300;
    letter-spacing: 4px;
    margin-bottom: 45px;
    text-transform: uppercase;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.4);
}

.slide-cta {
    display: inline-block;
    background: var(--teal-primary);
    color: white;
    padding: 18px 50px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all 0.3s;
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}

.slide-cta:hover {
    background: var(--teal-dark);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}

/* Slider Controls */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.95);
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    z-index: 10;
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

.slider-arrow:hover {
    background: white;
    transform: translateY(-50%) scale(1.15);
    box-shadow: 0 8px 30px rgba(0,0,0,0.35);
}

.slider-arrow.prev {
    left: 40px;
}

.slider-arrow.next {
    right: 40px;
}

.slider-arrow svg {
    stroke: var(--navy-dark);
    stroke-width: 3;
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 16px;
    z-index: 10;
}

.dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s;
    border: 3px solid transparent;
}

.dot:hover {
    background: rgba(255, 255, 255, 0.8);
    border-color: rgba(255, 255, 255, 0.5);
}

.dot.active {
    background: white;
    width: 40px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.4);
}

/* Chat Widget */
.chat-widget {
    position: fixed;
    bottom: 40px;
    right: 40px;
    background: var(--cream);
    color: var(--teal-primary);
    border: none;
    padding: 18px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.25);
    transition: all 0.3s;
    z-index: 1000;
}

.chat-widget:hover {
    background: var(--teal-primary);
    color: white;
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.35);
}

.chat-widget svg {
    width: 24px;
    height: 24px;
}

/* ===================================
   BROWSE CATALOG - HUGE TEXT
   =================================== */
.browse-catalog {
    padding: 100px 0;
    background: linear-gradient(to bottom, #f8f9fa 0%, rgba(23, 162, 184, 0.05) 100%);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.section-title {
    font-family: 'Open Sans', sans-serif;
    font-size: 42px;
    font-weight: 300;
    text-align: center;
    margin-bottom: 70px;
    color: var(--navy-dark);
    text-transform: none;
    letter-spacing: -1px;
    position: relative;
    padding-bottom: 25px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    height: 5px;
    background: linear-gradient(90deg, var(--teal-primary) 0%, var(--teal-dark) 100%);
    border-radius: 3px;
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
}

.catalog-item {
    text-decoration: none;
    text-align: center;
    transition: all 0.35s;
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border: 2px solid transparent;
}

.catalog-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(23, 162, 184, 0.25);
    border-color: rgba(23, 162, 184, 0.4);
}

.catalog-item img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 18px;
    transition: all 0.35s;
}

.catalog-item:hover img {
    transform: scale(1.08);
}

.catalog-item h3 {
    color: var(--text-dark);
    font-size: 16px;
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0;
    transition: color 0.3s;
    font-family: 'Open Sans', sans-serif;
}

.catalog-item:hover h3 {
    color: var(--teal-primary);
}

/* ===================================
   REMAINING SECTIONS - HUGE TEXT
   =================================== */

/* Trust Bar */
.trust-bar {
    background: white;
    padding: 50px 0;
    border-top: 1px solid #e5e5e5;
}

.trust-bar h3 {
    text-align: center;
    color: var(--text-dark);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 30px;
    font-family: 'Open Sans', sans-serif;
}

.trust-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.trust-logos span {
    color: var(--text-light);
    font-weight: 500;
    font-size: 16px;
    font-family: 'Open Sans', sans-serif;
}

/* Categories Section */
.categories {
    padding: 100px 0;
    background: white;
}

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

.section-header h2 {
    font-family: 'Open Sans', sans-serif;
    font-size: 42px;
    font-weight: 300;
    color: var(--navy-dark);
    text-transform: none;
    letter-spacing: -1px;
    margin-bottom: 18px;
}

.section-header p {
    font-size: 18px;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 400;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.category-card {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    text-decoration: none;
    box-shadow: 0 6px 25px rgba(0,0,0,0.12);
    transition: all 0.35s;
    border: 3px solid transparent;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 45px rgba(23, 162, 184, 0.3);
    border-color: var(--teal-primary);
}

.category-card img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    transition: transform 0.6s;
}

.category-card:hover img {
    transform: scale(1.12);
}

.category-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 35px;
    background: linear-gradient(to top, rgba(0,0,0,0.92), transparent);
    color: white;
    transform: translateY(0);
    transition: transform 0.3s;
}

.category-info h3 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 10px;
}

.category-info p {
    font-size: 15px;
    opacity: 0.95;
    margin-bottom: 15px;
    line-height: 1.5;
}

.category-arrow {
    color: var(--gold);
    font-weight: 700;
    font-size: 15px;
}

/* Why Choose Section */
.why-choose {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(23, 162, 184, 0.08) 0%, rgba(26, 26, 46, 0.05) 100%);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.why-item {
    text-align: center;
    padding: 45px 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 6px 25px rgba(0,0,0,0.1);
    transition: all 0.35s;
    border: 3px solid transparent;
}

.why-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 45px rgba(23, 162, 184, 0.25);
    border-color: rgba(23, 162, 184, 0.6);
}

.why-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--teal-primary), var(--teal-dark));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 700;
    margin: 0 auto 30px;
    box-shadow: 0 8px 25px rgba(23, 162, 184, 0.35);
}

.why-item h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 18px;
    color: var(--navy-dark);
}

.why-item p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 16px;
}

/* Packages Section */
.packages {
    padding: 100px 0;
    background: white;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.package-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    transition: all 0.35s;
    border: 3px solid transparent;
}

.package-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 18px 50px rgba(23, 162, 184, 0.3);
    border-color: rgba(23, 162, 184, 0.5);
}

.package-card.featured {
    border: 4px solid var(--teal-primary);
}

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

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

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

.package-badge {
    position: absolute;
    top: 25px;
    right: 25px;
    background: var(--teal-primary);
    color: white;
    padding: 10px 22px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.package-content {
    padding: 40px 35px;
}

.package-content h3 {
    font-size: 32px;
    font-weight: 700;
    color: var(--navy-dark);
    margin-bottom: 18px;
}

.package-price {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.package-price strong {
    font-size: 36px;
    color: var(--teal-primary);
    font-weight: 700;
}

.package-features {
    list-style: none;
    margin-bottom: 35px;
}

.package-features li {
    padding: 14px 0;
    border-bottom: 1px solid #f0f0f0;
    color: var(--text-dark);
    font-size: 16px;
}

.package-features li::before {
    content: '✓';
    color: var(--teal-primary);
    font-weight: 700;
    margin-right: 15px;
    font-size: 18px;
}

.package-btn {
    display: block;
    text-align: center;
    background: var(--teal-primary);
    color: white;
    padding: 16px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    transition: all 0.3s;
}

.package-btn:hover {
    background: var(--teal-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(23, 162, 184, 0.4);
}

/* Testimonials */
.testimonials {
    padding: 100px 0;
    background: linear-gradient(to right, rgba(23, 162, 184, 0.06) 0%, rgba(26, 26, 46, 0.03) 50%, rgba(23, 162, 184, 0.06) 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.testimonial-card {
    background: white;
    padding: 45px 35px;
    border-radius: 15px;
    box-shadow: 0 6px 25px rgba(0,0,0,0.1);
    transition: all 0.35s;
    border: 3px solid transparent;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 45px rgba(23, 162, 184, 0.25);
    border-color: rgba(23, 162, 184, 0.4);
}

.testimonial-stars {
    color: var(--gold);
    font-size: 24px;
    margin-bottom: 25px;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.9;
    color: var(--text-dark);
    margin-bottom: 30px;
    font-style: italic;
}

.testimonial-author {
    font-weight: 700;
    color: var(--navy-dark);
    font-size: 18px;
    margin-bottom: 6px;
}

.testimonial-role {
    color: var(--text-light);
    font-size: 14px;
}

/* CTA Section */
.cta-section {
    padding: 110px 0;
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--teal-dark) 100%);
    color: white;
    text-align: center;
}

.cta-section h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.cta-section p {
    font-size: 22px;
    margin-bottom: 50px;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    padding: 18px 45px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    transition: all 0.3s;
}

.btn-primary {
    background: var(--gold);
    color: var(--navy-dark);
}

.btn-primary:hover {
    background: #e6a93a;
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.5);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 3px solid white;
}

.btn-secondary:hover {
    background: white;
    color: var(--navy-dark);
    transform: translateY(-4px);
}

/* Footer */
footer {
    background: var(--navy-dark);
    color: white;
    padding: 70px 0 35px;
}

.footer-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
    margin-bottom: 50px;
}

.footer-section h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--gold);
}

.footer-section p {
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 12px;
    font-size: 15px;
}

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

.footer-section ul li {
    margin-bottom: 14px;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: all 0.3s;
    font-size: 15px;
}

.footer-section a:hover {
    color: var(--teal-primary);
    padding-left: 8px;
}

.social-links {
    display: flex;
    gap: 18px;
    margin-top: 25px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--teal-primary);
    transform: translateY(-4px);
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

@media (max-width: 1200px) {
    .dropdown-content {
        grid-template-columns: repeat(3, 1fr);
        gap: 35px;
    }
    
    .catalog-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .header-container {
        flex-wrap: wrap;
    }
    
    .search-container {
        order: 3;
        width: 100%;
        max-width: none;
        margin-top: 20px;
    }
    
    .nav-menu {
        flex-direction: column;
        align-items: stretch;
    }
    
    .nav-link {
        justify-content: space-between;
        padding: 18px 25px;
    }
    
    .mega-dropdown {
        position: static;
        transform: none;
        width: 100%;
        max-width: 100%;
        max-height: none;
        border-radius: 0;
        padding: 40px 30px;
        opacity: 0;
        visibility: hidden;
        max-height: 0;
        overflow: hidden;
        transition: all 0.3s ease;
    }

    .mega-dropdown::before {
        display: none;
    }

    .mega-dropdown::after {
        display: none;
    }
    
    .nav-item.active .mega-dropdown,
    .nav-item:hover .mega-dropdown {
        opacity: 1;
        visibility: visible;
        max-height: 3000px;
        transform: none;
    }
    
    .dropdown-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .catalog-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .slide-title {
        font-size: 42px;
    }
    
    .slide-subtitle {
        font-size: 58px;
    }
    
    .slide-description {
        font-size: 20px;
    }
    
    .slider-arrow {
        width: 50px;
        height: 50px;
    }
    
    .slider-arrow.prev {
        left: 25px;
    }
    
    .slider-arrow.next {
        right: 25px;
    }
    
    .catalog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .section-header h2 {
        font-size: 36px;
    }

    .nav-link {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .header-utilities {
        gap: 20px;
    }
    
    .utility-item span {
        display: none;
    }
    
    .catalog-grid {
        grid-template-columns: 1fr;
    }
    
    .dropdown-content {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
    }
}

/* ===================================
   SMOOTH ANIMATIONS
   =================================== */
@media (prefers-reduced-motion: no-preference) {
    * {
        scroll-behavior: smooth;
    }
}
.trust-bar {
  background: #f9fafb;
  padding: 50px 0;
  overflow: hidden;
}

.trust-bar h3 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 1.2rem;
  color: #333;
}

.logo-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.logo-track {
  display: flex;
  width: max-content;
  animation: scroll-left 30s linear infinite;
}

.logo-slider:hover .logo-track {
  animation-play-state: paused;
}

.logo-item {
  flex: 0 0 auto;
  padding: 15px 40px;
  font-weight: 600;
  color: #555;
  font-size: 1rem;
  white-space: nowrap;
  opacity: 0.85;
}

.logo-item:hover {
  opacity: 1;
}

/* Animation */
@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.trust-bar {
  background: #f9fafb;
  padding: 60px 0;
  overflow: hidden;
}

.trust-bar h3 {
  text-align: center;
  margin-bottom: 35px;
  font-size: 1.25rem;
  color: #222;
}

.logo-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.logo-track {
  display: flex;
  width: max-content;
  animation: scroll-left 35s linear infinite;
}

.logo-slider:hover .logo-track {
  animation-play-state: paused;
}

.logo-item {
  flex: 0 0 auto;
  padding: 20px 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-item img {
  max-height: 60px;
  max-width: 160px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.logo-item img:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}

/* Animation */
@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@media (max-width: 768px) {
  .logo-item {
    padding: 15px 30px;
  }

  .logo-item img {
    max-height: 45px;
    max-width: 120px;
  }
}
