/* ===========================
   GCM Netting - Main Stylesheet
   Modern, Colorful & Creative Design
   =========================== */

:root {
    --primary-color: #2563eb;
    --secondary-color: #7c3aed;
    --accent-color: #f59e0b;
    --success-color: #10b981;
    --danger-color: #ef4444;
    --dark-text: #1f2937;
    --light-bg: #ffffff;
    --gray-light: #f3f4f6;
    --gray-medium: #6b7280;
    --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-3: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --gradient-4: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    --gradient-5: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
    --gradient-6: linear-gradient(135deg, #30cfd0 0%, #330867 100%);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

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

html {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--dark-text);
    background-color: var(--light-bg);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ===========================
   Typography
   =========================== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
    color: var(--dark-text);
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
}

/* ===========================
   Top Bar
   =========================== */
.top-bar {
    background: var(--primary-color);
    color: white;
    padding: 8px 0;
    font-size: 0.9rem;
    min-height: 36px;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 50;
}

.top-bar-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.top-bar a {
    color: white;
    margin: 0 15px;
    transition: opacity 0.3s;
}

.top-bar a:hover {
    opacity: 0.8;
}

.top-bar i {
    margin-right: 5px;
}

/* ===========================
   Marquee
   =========================== */
.marquee-container {
    background: linear-gradient(90deg, #fbbf24, #f59e0b, #fbbf24);
    padding: 10px 0;
    overflow: hidden;
    border-bottom: 2px solid #f59e0b;
    min-height: 40px;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 49;
}

.marquee-content {
    display: inline-block;
    white-space: nowrap;
    animation: marquee 30s linear infinite;
    color: var(--dark-text);
    font-weight: 600;
    font-size: 0.95rem;
}

.marquee-content span {
    margin: 0 50px;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ===========================
   Header
   =========================== */
header {
    background: white;
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 0;
    z-index: 9998;
    min-height: 140px;
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 120px;
}

/* Desktop: Header contains both logo and menu */
@media (min-width: 969px) {
    header {
        position: sticky;
        top: 0;
    }
    
    .header-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
}

.logo h1 {
    margin: 0;
    color: var(--primary-color);
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.logo a {
    text-decoration: none;
    display: block;
}

.logo a:hover h1 {
    color: var(--secondary-color);
}

.logo img {
    height: 120px;
    width: auto;
    max-width: 400px;
    display: block;
}

.logo img:hover {
    opacity: 0.9;
}

/* ===========================
   Navigation & Mega Menu
   =========================== */
nav {
    background: white;
    overflow: visible !important;
}

/* Desktop: Nav sits beside logo in header */
@media (min-width: 969px) {
    nav {
        position: static;
        border: none;
        box-shadow: none;
        background: transparent;
        min-height: auto;
    }
}

/* Mobile: Keep original positioning */
@media (max-width: 968px) {
    nav {
        position: relative;
    }
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    overflow: visible !important;
}

/* Desktop: Remove container constraints when inside header */
@media (min-width: 969px) {
    .nav-container {
        max-width: none;
        margin: 0;
        padding: 0;
    }
}

.menu {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: visible !important;
}

/* Desktop: Adjust menu positioning */
@media (min-width: 969px) {
    .menu {
        justify-content: flex-end;
        margin: 0;
    }
}

.menu > li {
    position: relative;
    list-style: none;
    overflow: visible !important;
}

.menu > li > a {
    display: block;
    padding: 15px 20px;
    color: var(--dark-text);
    font-weight: 600;
    transition: all 0.3s;
}

.menu > li > a:hover {
    background: var(--gray-light);
    color: var(--primary-color);
}

.menu > li.has-dropdown > a::after {
    content: '▼';
    font-size: 0.7rem;
    margin-left: 5px;
}

/* Dropdown Levels */
.dropdown,
.dropdown-level-2,
.dropdown-level-3,
.dropdown-level-4 {
    position: absolute;
    background: white;
    min-width: 250px;
    box-shadow: var(--shadow-xl);
    border-radius: 8px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    list-style: none;
}

.dropdown {
    top: 100%;
    left: 0;
    overflow: visible !important;
}

.dropdown-level-2,
.dropdown-level-3,
.dropdown-level-4 {
    top: 0;
    left: 100%;
    margin-left: 5px;
}

@media (min-width: 969px) {
    .dropdown-level-2 {
        min-width: 280px;
        max-height: none;
        overflow: visible !important;
        z-index: 9999;
        padding-bottom: 10px;
    }
}

/* Add scrolling to 3rd level dropdown (Areas) - Desktop only */
@media (min-width: 969px) {
    .dropdown-level-3 {
        max-height: 400px;
        overflow-y: auto;
        overflow-x: hidden;
        z-index: 99999 !important;
        position: absolute !important;
        left: 100% !important;
        top: 0 !important;
        margin-left: 5px;
    }
}

/* Scrollbar styling for dropdown level 2 and 3 */
.dropdown-level-2::-webkit-scrollbar,
.dropdown-level-3::-webkit-scrollbar {
    width: 8px;
}

.dropdown-level-2::-webkit-scrollbar-track,
.dropdown-level-3::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.dropdown-level-2::-webkit-scrollbar-thumb,
.dropdown-level-3::-webkit-scrollbar-thumb {
    background: #667eea;
    border-radius: 10px;
}

.dropdown-level-2::-webkit-scrollbar-thumb:hover,
.dropdown-level-3::-webkit-scrollbar-thumb:hover {
    background: #5568d3;
}

/* Firefox scrollbar */
.dropdown-level-2,
.dropdown-level-3 {
    scrollbar-width: thin;
    scrollbar-color: #667eea #f1f1f1;
}

.menu > li:hover > .dropdown,
.dropdown-item:hover > .dropdown-level-2,
.dropdown-item-level-2:hover > .dropdown-level-3,
.dropdown-item-level-3:hover > .dropdown-level-4 {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item,
.dropdown-item-level-2,
.dropdown-item-level-3,
.dropdown-item-level-4 {
    position: relative;
    list-style: none;
    overflow: visible !important;
}

/* Ensure level-2 items don't clip level-3 dropdowns */
.dropdown-item-level-2 {
    overflow: visible !important;
    position: relative;
}

/* Remove all bullets from dropdown lists */
.dropdown ul,
.dropdown-level-2 ul,
.dropdown-level-3 ul,
.dropdown-level-4 ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dropdown li,
.dropdown-level-2 li,
.dropdown-level-3 li,
.dropdown-level-4 li {
    list-style: none;
}

.dropdown-item a,
.dropdown-item-level-2 a,
.dropdown-item-level-3 a,
.dropdown-item-level-4 a {
    display: block;
    padding: 10px 20px;
    color: var(--dark-text);
    transition: all 0.3s;
    white-space: nowrap;
}

.dropdown-item a:hover,
.dropdown-item-level-2 a:hover,
.dropdown-item-level-3 a:hover,
.dropdown-item-level-4 a:hover {
    background: var(--gray-light);
    color: var(--primary-color);
    padding-left: 25px;
}

.dropdown-item.has-dropdown > a,
.dropdown-item-level-2.has-dropdown > a,
.dropdown-item-level-3.has-dropdown > a {
    padding-right: 35px;
    position: relative;
}

.dropdown-item.has-dropdown > a::after,
.dropdown-item-level-2.has-dropdown > a::after,
.dropdown-item-level-3.has-dropdown > a::after {
    content: '▶';
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.7rem;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: var(--primary-color) !important;
    color: white !important;
    border: none;
    padding: 12px 16px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    z-index: 10000;
    position: relative;
    opacity: 1 !important;
}

.menu-toggle:hover {
    background: var(--secondary-color);
    transform: scale(1.05);
}

.menu-toggle i {
    display: block;
    transition: all 0.3s ease;
    font-size: 1.5rem;
}

/* ===========================
   Hero Slider
   =========================== */
.hero-slider {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #000;
    contain: layout style paint;
    transform: translateZ(0);
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease-in-out, visibility 0s 1s;
    background-size: cover;
    background-position: center;
    will-change: opacity;
    backface-visibility: hidden;
    transform: translateZ(0);
}

.slide.active {
    opacity: 1;
    visibility: visible;
    transition: opacity 1s ease-in-out, visibility 0s 0s;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.7), rgba(0,0,0,0.3));
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide-content {
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 20px;
}

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

.slide-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.slide-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: white;
}

.btn-primary {
    display: inline-block;
    padding: 15px 40px;
    background: var(--gradient-1);
    color: white;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: var(--shadow-lg);
}

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

.slider-controls {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

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

.slider-dot.active {
    background: white;
    width: 40px;
    border-radius: 6px;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.3);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s;
}

.slider-arrow:hover {
    background: rgba(255,255,255,0.5);
}

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

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

/* ===========================
   Sections
   =========================== */
.section {
    padding: 80px 20px;
}

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

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.section-title p {
    font-size: 1.1rem;
    color: var(--gray-medium);
    margin-top: 10px;
}

/* ===========================
   Grid Layouts
   =========================== */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

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

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

/* ===========================
   Cards
   =========================== */
.card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s;
}

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

.card-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: white;
}

.card-icon.gradient-1 { background: var(--gradient-1); }
.card-icon.gradient-2 { background: var(--gradient-2); }
.card-icon.gradient-3 { background: var(--gradient-3); }
.card-icon.gradient-4 { background: var(--gradient-4); }
.card-icon.gradient-5 { background: var(--gradient-5); }
.card-icon.gradient-6 { background: var(--gradient-6); }

.card h3 {
    text-align: center;
    margin-bottom: 15px;
}

.card p {
    text-align: center;
    color: var(--gray-medium);
}

/* ===========================
   Contact Form
   =========================== */
.contact-form-wrapper {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 40px;
    border-radius: 20px;
    color: white;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #d1d5db;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s;
    background: white;
}

.form-control::placeholder {
    color: #9ca3af;
    opacity: 1;
}

.form-control:hover {
    border-color: #9ca3af;
}

.form-control:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1);
    background: white;
}

select.form-control {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%236b7280'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 18px;
    padding-right: 45px;
}

select.form-control option {
    padding: 10px;
    background: white;
    color: var(--dark-text);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    width: 100%;
    padding: 15px;
    background: var(--accent-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit:hover {
    background: #d97706;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* ===========================
   Offers Section
   =========================== */
.offers-section {
    background: var(--gradient-5);
    padding: 40px;
    border-radius: 20px;
    color: white;
}

.offer-card {
    background: white;
    color: var(--dark-text);
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 15px;
    box-shadow: var(--shadow-md);
}

.offer-card h4 {
    color: var(--danger-color);
    margin-bottom: 10px;
}

/* ===========================
   Footer
   =========================== */
footer {
    background: white;
    color: var(--dark-text);
    padding: 60px 20px 20px;
    border-top: 3px solid var(--primary-color);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    margin-bottom: 20px;
    color: var(--primary-color);
}

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

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

.footer-section ul li a {
    color: var(--dark-text);
    transition: all 0.3s;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #e5e7eb;
}

/* ===========================
   Floating Buttons
   =========================== */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    z-index: 999;
}

.float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    box-shadow: var(--shadow-xl);
    transition: all 0.3s;
    animation: pulse 2s infinite;
}

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

.float-btn.whatsapp {
    background: #25d366;
}

.float-btn.phone {
    background: var(--primary-color);
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    50% {
        box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
    }
}

/* ===========================
   Responsive Design
   =========================== */
@media (max-width: 968px) {
    .menu-toggle {
        display: block !important;
        position: absolute !important;
        top: 48px !important;
        right: 15px !important;
        z-index: 99999 !important;
        box-shadow: 0 4px 12px rgba(0,0,0,0.3) !important;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
        width: 50px !important;
        height: 50px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    /* Make button more visible when menu is open */
    nav.mobile-active ~ .menu-toggle,
    header nav.mobile-active ~ * .menu-toggle {
        z-index: 99999 !important;
        box-shadow: 0 6px 16px rgba(0,0,0,0.4) !important;
    }
    
    /* Mobile backdrop overlay */
    body::after {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.6);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
        z-index: 9997;
        pointer-events: none;
    }
    
    body.menu-open::after {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }
    
    nav {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 70%;
        height: 100vh;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        box-shadow: 4px 0 20px rgba(0,0,0,0.15);
        overflow-y: auto !important;
        overflow-x: hidden !important;
        z-index: 9998;
        -webkit-overflow-scrolling: touch;
        padding-top: 80px;
        padding-bottom: 20px;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        visibility: hidden;
    }
    
    nav.mobile-active {
        transform: translateX(0);
        visibility: visible;
    }
    
    nav::-webkit-scrollbar {
        width: 6px;
    }
    
    nav::-webkit-scrollbar-track {
        background: #f1f1f1;
    }
    
    nav::-webkit-scrollbar-thumb {
        background: var(--primary-color);
        border-radius: 3px;
    }
    
    nav.mobile-active {
        display: block;
    }
    
    .menu {
        flex-direction: column;
        min-height: auto;
        height: auto;
        overflow: visible !important;
    }
    
    .menu > li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        min-height: auto;
        height: auto;
    }
    
    .menu > li > a {
        padding: 15px 20px;
        color: white !important;
    }
    
    .menu > li > a:hover {
        background: rgba(255, 255, 255, 0.1);
    }
    
    .menu > li.has-dropdown > a {
        position: relative;
    }
    
    .menu > li.has-dropdown > a::after {
        position: absolute;
        right: 20px;
        transition: transform 0.3s;
    }
    
    .menu > li.has-dropdown.active > a::after {
        transform: rotate(180deg);
    }
    
    .menu > li.has-dropdown.active > .dropdown {
        display: block;
    }
    
    .dropdown,
    .dropdown-level-2,
    .dropdown-level-3,
    .dropdown-level-4 {
        position: static !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        box-shadow: none;
        display: none;
        margin-left: 20px;
        border-radius: 0;
        padding: 0;
        background: rgba(255, 255, 255, 0.05);
        left: auto !important;
        top: auto !important;
        overflow: visible !important;
        max-height: none !important;
        height: auto !important;
    }
    
    .dropdown-level-2 {
        background: rgba(255, 255, 255, 0.08);
        overflow: visible !important;
    }
    
    .dropdown-level-3 {
        max-height: none;
        overflow-y: visible !important;
        overflow-x: visible !important;
        background: rgba(255, 255, 255, 0.12);
        border-left: 3px solid rgba(255, 255, 255, 0.3);
    }
    
    .dropdown-level-3::-webkit-scrollbar {
        width: 5px;
    }
    
    .dropdown-level-3::-webkit-scrollbar-track {
        background: #e5e7eb;
    }
    
    .dropdown-level-3::-webkit-scrollbar-thumb {
        background: var(--primary-color);
        border-radius: 3px;
    }
    
    .dropdown-item,
    .dropdown-item-level-2,
    .dropdown-item-level-3,
    .dropdown-item-level-4 {
        overflow: visible !important;
        position: relative;
    }
    
    .dropdown-item.active > .dropdown-level-2,
    .dropdown-item-level-2.active > .dropdown-level-3,
    .dropdown-item-level-3.active > .dropdown-level-4 {
        display: block !important;
    }
    
    .dropdown-item a,
    .dropdown-item-level-2 a,
    .dropdown-item-level-3 a,
    .dropdown-item-level-4 a {
        padding: 12px 20px;
        font-size: 0.9rem;
        display: block;
        color: white !important;
    }
    
    .dropdown-item a:hover,
    .dropdown-item-level-2 a:hover,
    .dropdown-item-level-3 a:hover,
    .dropdown-item-level-4 a:hover {
        background: rgba(255, 255, 255, 0.1) !important;
    }
    
    .dropdown-item.has-dropdown > a::after,
    .dropdown-item-level-2.has-dropdown > a::after,
    .dropdown-item-level-3.has-dropdown > a::after {
        display: inline-block;
        margin-left: 8px;
    }
    
    .dropdown-item.has-dropdown.active > a::after,
    .dropdown-item-level-2.has-dropdown.active > a::after,
    .dropdown-item-level-3.has-dropdown.active > a::after {
        transform: rotate(90deg);
    }
    
    /* Ensure last items have bottom padding */
    .menu > li:last-child,
    .dropdown-item:last-child,
    .dropdown-item-level-2:last-child,
    .dropdown-item-level-3:last-child {
        padding-bottom: 10px;
    }
    
    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .slide-content h2 {
        font-size: 2rem;
    }
    
    .slide-content p {
        font-size: 1rem;
    }
    
    /* Contact Form - 60% size for mobile */
    .contact-form-wrapper {
        padding: 24px;
        border-radius: 12px;
    }
    
    .contact-form-wrapper h3 {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }
    
    .form-group {
        margin-bottom: 12px;
    }
    
    .form-group label {
        margin-bottom: 5px;
        font-size: 0.85rem;
    }
    
    .form-control,
    select.form-control {
        padding: 8px 10px;
        font-size: 0.9rem;
        border-radius: 6px;
        border: 2px solid #d1d5db;
    }
    
    select.form-control {
        background-size: 16px;
        background-position: right 10px center;
        padding-right: 38px;
    }
    
    textarea.form-control {
        min-height: 80px;
    }
    
    .btn-submit {
        padding: 10px;
        font-size: 0.95rem;
        border-radius: 20px;
    }
    
    /* Offers Section - 60% size for mobile */
    .offers-section {
        padding: 24px;
        border-radius: 12px;
    }
    
    .offers-section h3 {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }
    
    .offer-card {
        padding: 12px;
        border-radius: 10px;
        margin-bottom: 10px;
    }
    
    .offer-card h4 {
        font-size: 1rem;
        margin-bottom: 5px;
    }
    
    .offer-card p {
        font-size: 0.85rem;
        margin-bottom: 5px;
    }
    
    .offer-card .badge {
        font-size: 0.75rem;
        padding: 3px 8px;
    }
}

@media (max-width: 576px) {
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .top-bar-content {
        flex-direction: column;
        text-align: center;
    }
    
    .floating-buttons {
        bottom: 250px;
        right: 20px;
    }
    
    .float-btn {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    /* Even smaller forms for very small screens */
    .contact-form-wrapper {
        padding: 20px;
    }
    
    .contact-form-wrapper h3 {
        font-size: 1.1rem;
    }
    
    .form-control,
    select.form-control {
        padding: 7px 9px;
        font-size: 0.85rem;
        border: 2px solid #d1d5db;
    }
    
    select.form-control {
        background-size: 14px;
        background-position: right 8px center;
        padding-right: 35px;
    }
    
    textarea.form-control {
        min-height: 70px;
    }
    
    .btn-submit {
        padding: 20px;
        font-size: 1.3rem;
    }
    
    .offers-section {
        padding: 20px;
    }
    
    .offer-card {
        padding: 10px;
    }
}

/* ===========================
   Utility Classes
   =========================== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.p-1 { padding: 0.5rem; }
.p-2 { padding: 1rem; }
.p-3 { padding: 1.5rem; }
.p-4 { padding: 2rem; }
