/* ==========================================================================
   The Oriental Holidays - Stylesheet
   Theme: Red + White (Oriental warmth)
   ========================================================================== */

:root {
    --primary: #c0392b;           /* Oriental Red */
    --primary-dark: #922b21;
    --primary-light: #e74c3c;     /* Lighter red */
    --secondary: #e74c3c;         /* Coral/red accent */
    --secondary-dark: #c0392b;
    --accent: #ff6b6b;            /* Soft coral */
    --dark: #2c2c2c;              /* Dark gray (replaces navy) */
    --dark-soft: #4a4a4a;
    --gray: #6c757d;
    --light-gray: #f5f5f5;
    --soft-bg: #fafafa;
    --white: #ffffff;
    --text: #333333;
    --footer-bg: #2c2c2c;
    --footer-bg-2: #1f1f1f;
    --border: #ececec;
    --shadow: 0 4px 18px rgba(192, 57, 43, 0.08);
    --shadow-hover: 0 10px 30px rgba(192, 57, 43, 0.18);
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Poppins', 'Segoe UI', Tahoma, Arial, sans-serif;
    font-size: 15px;
    line-height: 1.65;
    color: var(--text);
    background: #fff;
    overflow-x: hidden;
}

a { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--primary-dark); }
img { max-width: 100%; height: auto; display: block; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 15px; }
.row { display: flex; flex-wrap: wrap; margin: 0 -10px; }
[class*="col-"] { padding: 0 10px; width: 100%; }

@media (min-width: 576px) {
    .col-sm-6 { width: 50%; }
}
@media (min-width: 768px) {
    .col-md-3 { width: 25%; }
    .col-md-4 { width: 33.333%; }
    .col-md-6 { width: 50%; }
    .col-md-8 { width: 66.666%; }
}
@media (min-width: 992px) {
    .col-lg-3 { width: 25%; }
    .col-lg-4 { width: 33.333%; }
    .col-lg-6 { width: 50%; }
    .col-lg-8 { width: 66.666%; }
}

/* ===== TOP BAR ===== */
.top-bar {
    background: linear-gradient(90deg, var(--primary-dark), var(--primary));
    color: #fff;
    font-size: 13px;
    padding: 9px 0;
}
.top-bar .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.top-bar .left a, .top-bar .right a { color: #fff; margin-right: 18px; display: inline-block; }
.top-bar .left a:hover, .top-bar .right a:hover { color: #ffd; }
.top-bar .right a.cta-btn {
    background: #fff;
    color: var(--primary);
    padding: 5px 16px;
    border-radius: 30px;
    font-weight: 600;
    margin-right: 0;
}
.top-bar .right a.cta-btn:hover { background: var(--dark); color: #fff; }

/* ===== HEADER / NAV ===== */
header.main-header {
    background: #fff;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    position: sticky;
    top: 0;
    z-index: 999;
    border-bottom: 3px solid var(--primary);
}
.main-header .container { display: flex; justify-content: space-between; align-items: center; padding: 12px 15px; }
.logo a { display: flex; align-items: center; }
.logo .logo-mark-img {
    width: 56px; height: 56px;
    display: block;
    filter: drop-shadow(0 4px 10px rgba(192,57,43,0.28));
}
.logo .logo-text { margin-left: 12px; }
.logo .logo-text .brand-name { font-size: 22px; font-weight: 700; color: var(--primary); line-height: 1; }
.logo .logo-text .brand-tag { font-size: 11px; color: var(--gray); letter-spacing: 2px; text-transform: uppercase; }

nav.main-nav ul { list-style: none; display: flex; align-items: center; }
nav.main-nav ul li { position: relative; }
nav.main-nav ul li a {
    color: var(--dark);
    padding: 12px 14px;
    font-weight: 500;
    font-size: 14px;
    display: block;
}
nav.main-nav ul li a:hover { color: var(--primary); }
nav.main-nav ul li a.home-btn { margin-right: 4px; }
/* Active page = red pill (moves to whichever page you're on) */
nav.main-nav ul li a.active {
    background: var(--primary);
    color: #fff;
    border-radius: 30px;
    padding: 8px 22px;
}
nav.main-nav ul li a.active:hover { background: var(--primary-dark); color: #fff; }
nav.main-nav ul li ul.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    box-shadow: var(--shadow-hover);
    min-width: 220px;
    display: none;
    flex-direction: column;
    border-top: 3px solid var(--primary);
    z-index: 100;
    border-radius: 0 0 6px 6px;
}
nav.main-nav ul li:hover ul.dropdown { display: flex; }
nav.main-nav ul li ul.dropdown li a { padding: 10px 18px; font-size: 13px; }
nav.main-nav ul li ul.dropdown li a:hover { background: #fff5f5; }

.mobile-toggle {
    display: none;
    background: var(--primary);
    color: #fff;
    border: none;
    padding: 9px 13px;
    font-size: 18px;
    border-radius: 4px;
    cursor: pointer;
}

/* ===== HERO BANNER ===== */
.hero-banner {
    position: relative;
    height: 560px;
    background: linear-gradient(135deg, rgba(192,57,43,0.6), rgba(231,76,60,0.5)),
                url('../images/banners/hero.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
}
.hero-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.15), rgba(0,0,0,0.35));
}
.hero-banner .hero-content { max-width: 850px; padding: 0 20px; position: relative; z-index: 2; }
.hero-banner h1 {
    font-size: 54px;
    font-weight: 700;
    margin-bottom: 18px;
    line-height: 1.15;
    text-shadow: 2px 2px 12px rgba(0,0,0,0.4);
}
.hero-banner p {
    font-size: 19px;
    margin-bottom: 30px;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.4);
    opacity: 0.95;
}
.hero-banner .btn-hero {
    display: inline-block;
    background: #fff;
    color: var(--primary);
    padding: 15px 42px;
    border-radius: 30px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    transition: var(--transition);
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}
.hero-banner .btn-hero:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(192,57,43,0.5);
}

/* ===== SERVICE ICONS (below banner) ===== */
.service-icons {
    margin-top: -70px;
    position: relative;
    z-index: 10;
    margin-bottom: 60px;
}
.service-icons .row { justify-content: center; }
.service-icon-box {
    text-align: center;
    padding: 28px 18px;
    background: #fff;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-top: 4px solid var(--primary);
    height: 100%;
}
.service-icon-box:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-top-color: var(--primary-light);
}
.service-icon-box .icon-circle {
    width: 75px; height: 75px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 50%;
    margin: 0 auto 18px;
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 32px;
    box-shadow: 0 6px 16px rgba(192,57,43,0.25);
}
.service-icon-box h4 { color: var(--primary); font-size: 17px; margin-bottom: 12px; font-weight: 600; }
.service-icon-box p { font-size: 13px; color: var(--gray); line-height: 1.6; }

/* ===== SECTIONS ===== */
section { padding: 70px 0; }
.section-light { background: var(--soft-bg); }
.section-title { text-align: center; margin-bottom: 45px; }
.section-title h2 {
    font-size: 36px;
    color: var(--dark);
    font-weight: 700;
    letter-spacing: -0.5px;
}
.section-title h2 span { color: var(--primary); }
.section-title .underline {
    width: 70px; height: 4px;
    background: var(--primary);
    margin: 14px auto 0;
    border-radius: 2px;
    position: relative;
}
.section-title .underline::after {
    content: '';
    width: 12px; height: 4px;
    background: var(--primary-light);
    position: absolute;
    left: 50%; top: 0;
    transform: translateX(-50%);
    border-radius: 2px;
}

/* ===== TOUR PACKAGES ===== */
.package-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-bottom: 28px;
    transition: var(--transition);
    border: 1px solid var(--border);
}
.package-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary);
}
.package-card .package-img {
    position: relative;
    height: 190px;
    background-size: cover;
    background-position: center;
}
.package-card .package-img::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,0.4));
}
.package-card .package-img .img-badge {
    position: absolute;
    top: 12px; right: 12px;
    background: var(--primary);
    color: #fff;
    padding: 4px 10px;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 600;
    z-index: 2;
}
.package-card .package-body { padding: 18px; }
.package-card .package-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 12px;
    min-height: 44px;
    line-height: 1.4;
}
.package-card .package-meta {
    display: flex;
    align-items: center;
    font-size: 12.5px;
    color: var(--gray);
    margin-bottom: 8px;
}
.package-card .package-meta i { color: var(--primary); margin-right: 6px; width: 14px; }
.package-card .price-box {
    background: #fff5f5;
    padding: 10px 14px;
    border-radius: 6px;
    margin: 14px 0;
    display: flex; justify-content: space-between; align-items: center;
    border-left: 3px solid var(--primary);
}
.package-card .price-box .label { font-size: 11px; color: var(--gray); text-transform: uppercase; letter-spacing: 0.5px; }
.package-card .price-box .price { font-size: 20px; font-weight: 700; color: var(--primary); }
.package-card .price-box .price small { font-size: 12px; color: var(--gray); font-weight: 400; }
.package-card .btn-group { display: flex; gap: 8px; }
.package-card .btn-book, .package-card .btn-view {
    flex: 1;
    text-align: center;
    padding: 9px 0;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.3px;
}
.package-card .btn-book { background: var(--primary); color: #fff; }
.package-card .btn-book:hover { background: var(--primary-dark); }
.package-card .btn-view { background: #fff; color: var(--primary); border: 2px solid var(--primary); padding: 7px 0; }
.package-card .btn-view:hover { background: var(--primary); color: #fff; }

.view-all-btn-wrap { text-align: center; margin-top: 25px; }
.view-all-btn {
    display: inline-block;
    background: #fff;
    color: var(--primary);
    border: 2px solid var(--primary);
    padding: 12px 35px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
}
.view-all-btn:hover { background: var(--primary); color: #fff; transform: translateY(-2px); box-shadow: var(--shadow-hover); }

/* ===== PACKAGES BY CITY ===== */
.packages-by-city {
    background: #fff;
    padding: 70px 0;
}
.packages-by-city .section-title h2 { color: var(--dark); }
.packages-by-city .section-title h2 span { color: var(--primary); }

.city-card {
    display: block;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 22px;
    height: 220px;
    background-color: var(--light-gray);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow);
}
.city-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 40%, rgba(192,57,43,0.85));
    transition: var(--transition);
}
.city-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}
.city-card:hover::before {
    background: linear-gradient(to bottom, rgba(192,57,43,0.4) 0%, rgba(192,57,43,0.9));
}
.city-card .city-label {
    position: absolute;
    bottom: 18px;
    left: 18px;
    right: 18px;
    background: rgba(255,255,255,0.95);
    color: var(--primary);
    padding: 10px 16px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 15px;
    text-align: center;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: var(--transition);
}
.city-card:hover .city-label {
    background: var(--primary);
    color: #fff;
}

/* ===== PACKAGES BY THEME ===== */
.theme-card {
    text-align: center;
    margin-bottom: 28px;
    transition: var(--transition);
    cursor: pointer;
}
.theme-card:hover { transform: translateY(-6px); }
.theme-card .theme-img {
    height: 180px;
    border-radius: 12px;
    background-size: cover;
    background-position: center;
    margin-bottom: 14px;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}
.theme-card .theme-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 60%, rgba(192,57,43,0.6));
    transition: var(--transition);
}
.theme-card:hover .theme-img::after {
    background: linear-gradient(to bottom, rgba(192,57,43,0.2), rgba(192,57,43,0.8));
}
.theme-card:hover .theme-img { box-shadow: var(--shadow-hover); }
.theme-card .theme-name {
    color: var(--dark);
    font-weight: 600;
    font-size: 15px;
}
.theme-card:hover .theme-name { color: var(--primary); }

/* ===== TESTIMONIALS ===== */
.testimonials-section {
    background: linear-gradient(135deg, #fff5f5 0%, #fff 60%, #ffe9e9 100%);
    color: var(--text);
}
.testimonials-section .section-title h2 { color: var(--dark); }
.testimonials-section .section-title h2 span { color: var(--primary); }

.testimonial-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px 25px 22px;
    color: var(--text);
    box-shadow: var(--shadow);
    position: relative;
    margin-bottom: 22px;
    border-top: 4px solid var(--primary);
    transition: var(--transition);
}
.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}
.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 8px; left: 18px;
    font-size: 70px;
    color: var(--primary);
    opacity: 0.15;
    font-family: Georgia, serif;
    line-height: 1;
}
.testimonial-card .quote {
    font-size: 14px;
    color: var(--dark-soft);
    line-height: 1.75;
    margin: 18px 0 15px;
    font-style: italic;
}
.testimonial-card .read-more {
    font-size: 13px;
    color: var(--primary);
    font-weight: 600;
    cursor: pointer;
}
.testimonial-card .author-name {
    margin-top: 18px;
    padding-top: 15px;
    border-top: 1px dashed var(--border);
    font-weight: 600;
    color: var(--dark);
    text-align: center;
}

/* ===== ABOUT / WELCOME ===== */
.welcome-section { background: #fff; padding: 70px 0; }
.welcome-section .welcome-text h2 {
    color: var(--dark);
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 700;
}
.welcome-section .welcome-text h2 span { color: var(--primary); }
.welcome-section .welcome-text p {
    color: var(--gray);
    margin-bottom: 15px;
    line-height: 1.8;
}
.welcome-section .welcome-text .read-more-btn {
    display: inline-block;
    background: var(--primary);
    color: #fff;
    padding: 12px 32px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    margin-top: 12px;
    transition: var(--transition);
}
.welcome-section .welcome-text .read-more-btn:hover { background: var(--primary-dark); transform: translateY(-2px); }
.welcome-section .welcome-img {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    min-height: 320px;
    background-size: cover;
    background-position: center;
    box-shadow: var(--shadow-hover);
}
.welcome-section .welcome-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(192,57,43,0.55), rgba(231,76,60,0.45));
}
.welcome-section .welcome-img .landmarks-text {
    position: relative;
    z-index: 2;
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    padding: 30px;
    height: 100%;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.4);
}
.welcome-section .welcome-img .landmarks-text i { font-size: 56px; margin-bottom: 14px; }

/* ===== FOOTER ===== */
footer.main-footer {
    background: linear-gradient(180deg, var(--footer-bg) 0%, var(--footer-bg-2) 100%);
    color: #d0d0d0;
    padding: 55px 0 0;
    border-top: 4px solid var(--primary);
}
footer.main-footer h4 {
    color: #fff;
    font-size: 17px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary);
    display: inline-block;
    font-weight: 600;
}
footer.main-footer ul { list-style: none; }
footer.main-footer ul li { margin-bottom: 9px; }
footer.main-footer ul li a {
    color: #d0d0d0;
    font-size: 13px;
    display: inline-block;
    transition: var(--transition);
}
footer.main-footer ul li a::before {
    content: '\f054';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 9px;
    color: var(--primary);
    margin-right: 8px;
}
footer.main-footer ul li a:hover { color: var(--primary-light); padding-left: 4px; }

footer .quick-enquiry input, footer .quick-enquiry select, footer .quick-enquiry textarea {
    width: 100%;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    color: #fff;
    padding: 10px 13px;
    margin-bottom: 10px;
    border-radius: 6px;
    font-size: 13px;
    font-family: inherit;
    transition: var(--transition);
}
footer .quick-enquiry input::placeholder,
footer .quick-enquiry textarea::placeholder { color: #aaa; }
footer .quick-enquiry input:focus, footer .quick-enquiry select:focus, footer .quick-enquiry textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255,255,255,0.1);
}
footer .quick-enquiry .btn-send {
    width: 100%;
    background: var(--primary);
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 13px;
}
footer .quick-enquiry .btn-send:hover { background: var(--primary-light); transform: translateY(-2px); }

footer .contact-info p, footer .contact-info a {
    font-size: 13px;
    color: #d0d0d0;
    margin-bottom: 12px;
    display: block;
    line-height: 1.6;
}
footer .contact-info i { color: var(--primary-light); margin-right: 8px; }
footer .contact-info a:hover { color: var(--primary-light); }

footer .social-icons { margin-top: 18px; }
footer .social-icons a {
    display: inline-block;
    width: 38px; height: 38px;
    background: rgba(255,255,255,0.08);
    color: #fff;
    border-radius: 50%;
    text-align: center;
    line-height: 38px;
    margin-right: 8px;
    font-size: 15px;
    transition: var(--transition);
}
footer .social-icons a::before { display: none; }
footer .social-icons a:hover {
    background: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(192,57,43,0.4);
}

footer .footer-bottom {
    background: #1a1a1a;
    padding: 18px 0;
    margin-top: 35px;
    text-align: center;
    font-size: 12px;
    color: #999;
}
footer .footer-bottom a { color: var(--primary-light); }

/* ===== MODAL FORM (Inquiry Popup) ===== */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(44,44,44,0.75);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.modal-overlay.active { display: flex; }
.modal-box {
    background: #fff;
    border-radius: 12px;
    max-width: 560px;
    width: 100%;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0,0,0,0.4);
    animation: modalFadeIn 0.3s ease;
}
@keyframes modalFadeIn {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}
.modal-header {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: #fff;
    padding: 20px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.modal-header h3 { font-size: 19px; font-weight: 600; }
.modal-close {
    background: rgba(255,255,255,0.2);
    color: #fff;
    border: none;
    width: 34px; height: 34px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    transition: var(--transition);
}
.modal-close:hover { background: rgba(255,255,255,0.35); transform: rotate(90deg); }
.modal-body { padding: 28px; }
.modal-body .form-row { display: flex; gap: 12px; margin-bottom: 14px; }
.modal-body .form-row .form-col { flex: 1; }
.modal-body .form-group { margin-bottom: 14px; }
.modal-body label { font-size: 13px; font-weight: 500; color: var(--dark); display: block; margin-bottom: 6px; }
.modal-body input, .modal-body select, .modal-body textarea {
    width: 100%;
    padding: 11px 13px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    font-family: inherit;
    transition: var(--transition);
    background: #fafafa;
}
.modal-body input:focus, .modal-body select:focus, .modal-body textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(192,57,43,0.1);
}
.modal-body .btn-submit {
    width: 100%;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: #fff;
    border: none;
    padding: 13px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 8px;
}
.modal-body .btn-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(192,57,43,0.4); }
.modal-body .form-message {
    padding: 11px 14px;
    border-radius: 6px;
    margin-bottom: 14px;
    font-size: 13px;
    display: none;
}
.modal-body .form-message.success { background: #d4edda; color: #155724; display: block; }
.modal-body .form-message.error { background: #f8d7da; color: #721c24; display: block; }

/* ===== PAGE BANNER (inner pages) ===== */
.page-banner {
    background: linear-gradient(135deg, rgba(192,57,43,0.85), rgba(231,76,60,0.75)),
                url('../images/banners/page-banner.jpg') center/cover no-repeat;
    color: #fff;
    padding: 90px 0 70px;
    text-align: center;
    position: relative;
}
.page-banner h1 { font-size: 42px; margin-bottom: 12px; font-weight: 700; letter-spacing: -0.5px; }
.page-banner .breadcrumb { font-size: 14px; opacity: 0.95; }
.page-banner .breadcrumb a { color: #fff; font-weight: 500; }
.page-banner .breadcrumb a:hover { color: #ffe; }

/* ===== CONTENT PAGES ===== */
.content-section { padding: 60px 0; background: #fff; }
.content-section h2 { color: var(--primary); font-size: 26px; margin: 25px 0 14px; font-weight: 600; }
.content-section h3 { color: var(--dark); font-size: 19px; margin: 18px 0 10px; font-weight: 600; }
.content-section p { margin-bottom: 13px; color: var(--gray); line-height: 1.8; }
.content-section ul { margin: 14px 0 14px 25px; }
.content-section ul li { margin-bottom: 8px; color: var(--gray); line-height: 1.7; }

/* ===== CONTACT FORM PAGE ===== */
.contact-info-card {
    background: #fff;
    padding: 30px 22px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    margin-bottom: 22px;
    text-align: center;
    transition: var(--transition);
    border-bottom: 3px solid var(--primary);
    height: 100%;
}
.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-bottom-color: var(--primary-light);
}
.contact-info-card .icon {
    width: 68px; height: 68px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: #fff;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 26px;
    margin: 0 auto 18px;
    box-shadow: 0 6px 16px rgba(192,57,43,0.25);
}
.contact-info-card h4 { color: var(--dark); margin-bottom: 10px; font-weight: 600; font-size: 17px; }
.contact-info-card p, .contact-info-card a { color: var(--gray); font-size: 14px; line-height: 1.6; }
.contact-info-card a:hover { color: var(--primary); }

.contact-form-card {
    background: #fff;
    padding: 32px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    border-top: 4px solid var(--primary);
}
.contact-form-card .form-row { display: flex; gap: 15px; margin-bottom: 15px; flex-wrap: wrap; }
.contact-form-card .form-col { flex: 1; min-width: 200px; }
.contact-form-card input, .contact-form-card select, .contact-form-card textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    font-family: inherit;
    margin-bottom: 8px;
    background: #fafafa;
    transition: var(--transition);
}
.contact-form-card input:focus, .contact-form-card select:focus, .contact-form-card textarea:focus {
    outline: none; border-color: var(--primary); background: #fff;
    box-shadow: 0 0 0 3px rgba(192,57,43,0.08);
}
.contact-form-card .btn-send {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: #fff;
    border: none;
    padding: 13px 40px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 14px;
}
.contact-form-card .btn-send:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(192,57,43,0.4); }

/* ===== COOKIE BANNER ===== */
.cookie-banner {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: var(--dark);
    color: #fff;
    padding: 16px 20px;
    z-index: 9000;
    display: none;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
    border-top: 3px solid var(--primary);
}
.cookie-banner.active { display: block; }
.cookie-banner .container { display: flex; justify-content: space-between; align-items: center; gap: 15px; flex-wrap: wrap; }
.cookie-banner p { font-size: 13px; margin: 0; flex: 1; min-width: 220px; }
.cookie-banner a { color: var(--primary-light); text-decoration: underline; }
.cookie-banner .btn-accept {
    background: var(--primary);
    color: #fff;
    border: none;
    padding: 9px 25px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}
.cookie-banner .btn-accept:hover { background: var(--primary-light); }

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 58px; height: 58px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 30px;
    box-shadow: 0 6px 18px rgba(37,211,102,0.5);
    z-index: 998;
    transition: var(--transition);
    animation: wapulse 2s infinite;
}
@keyframes wapulse {
    0% { box-shadow: 0 6px 18px rgba(37,211,102,0.5), 0 0 0 0 rgba(37,211,102,0.6); }
    70% { box-shadow: 0 6px 18px rgba(37,211,102,0.5), 0 0 0 14px rgba(37,211,102,0); }
    100% { box-shadow: 0 6px 18px rgba(37,211,102,0.5), 0 0 0 0 rgba(37,211,102,0); }
}
.whatsapp-float:hover { transform: scale(1.1); color: #fff; }

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
    .mobile-toggle { display: block; }
    nav.main-nav {
        position: absolute;
        top: 100%; left: 0; right: 0;
        background: #fff;
        box-shadow: var(--shadow);
        display: none;
    }
    nav.main-nav.active { display: block; }
    nav.main-nav ul { flex-direction: column; align-items: stretch; }
    nav.main-nav ul li a.home-btn { margin: 8px; border-radius: 6px; }
    nav.main-nav ul li ul.dropdown { position: static; box-shadow: none; padding-left: 15px; }
    .hero-banner h1 { font-size: 38px; }
    .hero-banner { height: 460px; }
    .welcome-section .welcome-img { margin-top: 30px; }
}
@media (max-width: 575px) {
    section { padding: 50px 0; }
    .top-bar { font-size: 11px; padding: 7px 0; }
    .top-bar .container { justify-content: center; }
    .top-bar .left a { margin-right: 10px; }
    .hero-banner { height: 420px; }
    .hero-banner h1 { font-size: 28px; }
    .hero-banner p { font-size: 15px; }
    .section-title h2 { font-size: 26px; }
    .page-banner { padding: 70px 0 50px; }
    .page-banner h1 { font-size: 30px; }
    .modal-body .form-row { flex-direction: column; gap: 0; }
    .city-card { height: 180px; }
}
