/* ===================================
   Pattron Travel - Luxury Tourism Website
   Premium CSS Styling
   =================================== */

/* ===================================
   CSS Variables & Reset
   =================================== */
:root {
    /* Color Palette */
    --gold: #D4AF37;
    --gold-light: #E5C158;
    --gold-dark: #B8941F;
    --navy: #1a2332;
    --charcoal: #2c3e50;
    --white: #ffffff;
    --ivory: #FFFFF0;
    --ivory-dark: #F5F5DC;
    --gray-light: #f8f9fa;
    --gray: #6c757d;
    --black: #000000;
    
    /* Typography */
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Montserrat', sans-serif;
    
    /* Spacing */
    --section-padding: 100px 0;
    --container-width: 1200px;
    
    /* Transitions */
    --transition: all 0.3s ease;
    --transition-slow: all 0.6s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    color: var(--charcoal);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--white);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* ===================================
   Typography
   =================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    font-weight: 700;
    line-height: 1.2;
    color: var(--navy);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.2rem, 2vw, 1.5rem); }

p {
    margin-bottom: 1rem;
}

.lead {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--charcoal);
}

/* ===================================
   Layout & Container
   =================================== */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: var(--section-padding);
}

/* ===================================
   Buttons
   =================================== */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    border-radius: 2px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.btn-text {
    background: transparent;
    color: var(--gold);
    padding: 8px 0;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-text:hover {
    color: var(--gold-dark);
}

.btn-text i {
    transition: var(--transition);
}

.btn-text:hover i {
    transform: translateX(4px);
}

.btn-large {
    padding: 18px 42px;
    font-size: 1.1rem;
}

/* ===================================
   Section Headers
   =================================== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    display: block;
    font-size: 0.9rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 12px;
}

.section-title {
    margin-bottom: 20px;
}

.title-divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 0 auto;
}

/* ===================================
   Navigation
   =================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(26, 35, 50, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(26, 35, 50, 0.98);
    box-shadow: 0 2px 30px rgba(0,0,0,0.2);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-image {
    height: 50px;
    width: auto;
    object-fit: contain;
    filter: brightness(1.2) contrast(1.1);
}

.logo-text {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 1px;
}

.logo i {
    font-size: 1.8rem;
}

.nav-menu {
    display: flex;
    gap: 35px;
    align-items: center;
}

.nav-menu a {
    color: var(--white);
    font-weight: 500;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
}

/* ===================================
   WhatsApp Floating Buttons
   =================================== */
.whatsapp-float {
    position: fixed;
    right: 25px;
    bottom: 25px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #25D366;
    color: var(--white);
    padding: 14px 20px;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    font-weight: 600;
}

.whatsapp-btn:hover {
    background: #1ebe57;
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
}

.whatsapp-btn i {
    font-size: 1.8rem;
}

.whatsapp-text {
    font-size: 0.9rem;
}

/* ===================================
   Hero Section & Slider
   =================================== */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    margin-top: 80px;
}

.hero-slider {
    position: relative;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slide.active {
    opacity: 1;
}

.hero-content {
    text-align: center;
    color: var(--white);
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
    animation: fadeInUp 1s ease;
}

.hero-title {
    color: var(--white);
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 30px;
    color: var(--ivory);
    text-shadow: 1px 1px 5px rgba(0,0,0,0.3);
}

.hero-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(212, 175, 55, 0.9);
    color: var(--white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
}

.hero-nav:hover {
    background: var(--gold);
    transform: translateY(-50%) scale(1.1);
}

.hero-prev {
    left: 30px;
}

.hero-next {
    right: 30px;
}

.hero-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.hero-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: var(--transition);
}

.hero-indicator.active {
    background: var(--gold);
    width: 35px;
    border-radius: 6px;
}

/* ===================================
   About Section
   =================================== */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text p {
    margin-bottom: 20px;
    color: var(--charcoal);
}

.about-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.feature-item {
    text-align: center;
}

.feature-item i {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 15px;
}

.feature-item h4 {
    font-size: 1rem;
    font-weight: 600;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.about-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--white);
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.badge-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    font-family: var(--font-serif);
}

.badge-text {
    display: block;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===================================
   Destinations Grid
   =================================== */
.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.destination-card {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: var(--transition);
    cursor: pointer;
}

.destination-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.destination-card.featured {
    grid-column: span 2;
}

.destination-image {
    height: 350px;
    background-size: cover;
    background-position: center;
    position: relative;
    transition: var(--transition-slow);
}

.destination-card:hover .destination-image {
    transform: scale(1.1);
}

.destination-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.7) 100%);
}

.destination-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gold);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.destination-content {
    padding: 25px;
    background: var(--white);
}

.destination-content h3 {
    margin-bottom: 10px;
    color: var(--navy);
}

.destination-content p {
    color: var(--gray);
    margin-bottom: 15px;
}

/* ===================================
   Country Detail Sections
   =================================== */
.country-detail {
    padding: 0;
}

.country-hero {
    height: 60vh;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}

.country-title {
    color: var(--white);
    margin-bottom: 15px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

.country-subtitle {
    font-size: 1.3rem;
    color: var(--ivory);
    text-shadow: 1px 1px 5px rgba(0,0,0,0.5);
}

.country-content {
    padding: 80px 0;
}

.country-article {
    max-width: 900px;
    margin: 0 auto 60px;
}

.country-article h3 {
    margin-bottom: 25px;
    text-align: center;
}

.country-article p {
    margin-bottom: 20px;
    font-size: 1.05rem;
    line-height: 1.8;
}

.country-highlights h3 {
    text-align: center;
    margin-bottom: 50px;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.highlight-card {
    background: var(--gray-light);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition);
}

.highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.highlight-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.highlight-card h4 {
    padding: 20px 20px 10px;
    color: var(--navy);
}

.highlight-card p {
    padding: 0 20px 15px;
    color: var(--charcoal);
}

.highlight-card ul {
    padding: 0 20px 25px;
}

.highlight-card ul li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: var(--charcoal);
}

.highlight-card ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--gold);
}

.cta-center {
    text-align: center;
    margin-top: 50px;
}

/* ===================================
   Countries Showcase
   =================================== */
.country-showcase {
    margin-bottom: 80px;
    scroll-margin-top: 100px;
}

.showcase-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.country-showcase.reverse .showcase-content {
    direction: rtl;
}

.country-showcase.reverse .showcase-text {
    direction: ltr;
}

.showcase-label {
    display: inline-block;
    color: var(--gold);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 15px;
}

.showcase-text h3 {
    margin-bottom: 25px;
}

.showcase-text p {
    margin-bottom: 20px;
    color: var(--charcoal);
}

.showcase-highlights {
    margin: 30px 0;
}

.showcase-highlights li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--charcoal);
}

.showcase-highlights i {
    color: var(--gold);
    font-size: 1.1rem;
}

.showcase-image {
    position: relative;
}

.showcase-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

/* ===================================
   B2B Section
   =================================== */
.b2b {
    background: linear-gradient(135deg, var(--navy) 0%, var(--charcoal) 100%);
    color: var(--white);
}

.b2b .section-header * {
    color: var(--white);
}

.b2b-intro {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.b2b-intro p {
    color: var(--ivory);
}

.b2b-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.b2b-card {
    background: rgba(255,255,255,0.05);
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.b2b-card:hover {
    background: rgba(255,255,255,0.08);
    transform: translateY(-5px);
    border-color: var(--gold);
}

.b2b-icon {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.b2b-card h3 {
    color: var(--white);
    margin-bottom: 15px;
}

.b2b-card p {
    color: var(--ivory-dark);
}

.b2b-cta {
    text-align: center;
    background: rgba(212, 175, 55, 0.1);
    padding: 50px;
    border-radius: 8px;
    border: 2px solid var(--gold);
}

.b2b-cta h3 {
    color: var(--white);
    margin-bottom: 15px;
}

.b2b-cta p {
    color: var(--ivory);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

/* ===================================
   Why Choose Us
   =================================== */
.why-us {
    background: var(--gray-light);
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.why-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.why-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.why-icon {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.why-card h3 {
    margin-bottom: 15px;
    color: var(--navy);
}

.why-card p {
    color: var(--charcoal);
}

/* ===================================
   Contact Section
   =================================== */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

.contact-info h3 {
    margin-bottom: 20px;
}

.contact-info p {
    margin-bottom: 30px;
    color: var(--charcoal);
}

.contact-methods {
    margin-bottom: 40px;
}

.contact-method {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-method i {
    font-size: 2rem;
    color: var(--gold);
}

.contact-method h4 {
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.contact-method a {
    display: block;
    color: var(--charcoal);
    margin-bottom: 5px;
}

.contact-method a:hover {
    color: var(--gold);
}

.social-links h4 {
    margin-bottom: 20px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-icon:hover {
    background: var(--gold-dark);
    transform: translateY(-3px);
}

.contact-form {
    background: var(--gray-light);
    padding: 40px;
    border-radius: 8px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: var(--font-sans);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form button {
    width: 100%;
}

/* ===================================
   Footer
   =================================== */
.footer {
    background: var(--navy);
    color: var(--ivory);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo-image {
    height: 60px;
    width: auto;
    object-fit: contain;
    filter: brightness(1.2) contrast(1.1);
}

.footer-logo-text {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 1px;
}

.footer-logo-text {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
}

.footer-logo i {
    font-size: 1.8rem;
}

.footer-section h4 {
    color: var(--gold);
    margin-bottom: 20px;
}

.footer-section p {
    color: var(--ivory-dark);
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a:hover {
    color: var(--gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    color: var(--ivory-dark);
}

/* ===================================
   Scroll to Top Button
   =================================== */
.scroll-top {
    position: fixed;
    bottom: 100px;
    right: 25px;
    width: 50px;
    height: 50px;
    background: var(--gold);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 998;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: var(--gold-dark);
    transform: translateY(-3px);
}

/* ===================================
   Animations
   =================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.fade-in {
    animation: fadeIn 0.8s ease;
}

/* ===================================
   Responsive Design
   =================================== */

/* Tablet */
@media (max-width: 992px) {
    :root {
        --section-padding: 60px 0;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 280px;
        height: calc(100vh - 80px);
        background: var(--navy);
        flex-direction: column;
        padding: 40px 20px;
        gap: 20px;
        transition: var(--transition);
        box-shadow: -5px 0 20px rgba(0,0,0,0.2);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .about-content,
    .showcase-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .destination-card.featured {
        grid-column: span 1;
    }
    
    .country-showcase.reverse .showcase-content {
        direction: ltr;
    }
    
    .hero-nav {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .hero-prev {
        left: 15px;
    }
    
    .hero-next {
        right: 15px;
    }
    
    .whatsapp-text {
        display: none;
    }
    
    .whatsapp-btn {
        width: 55px;
        height: 55px;
        justify-content: center;
        padding: 0;
        border-radius: 50%;
    }
}

/* Mobile */
@media (max-width: 768px) {
    :root {
        --section-padding: 50px 0;
    }
    
    .hero {
        height: 70vh;
        margin-top: 70px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .about-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .destinations-grid,
    .highlights-grid,
    .why-us-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .b2b-features {
        grid-template-columns: 1fr;
    }
    
    .showcase-image img {
        height: 350px;
    }
    
    .country-hero {
        height: 50vh;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .scroll-top {
        bottom: 85px;
        right: 15px;
        width: 45px;
        height: 45px;
    }
    
    .whatsapp-float {
        right: 15px;
        bottom: 15px;
    }
    
    .nav-wrapper {
        padding: 15px 0;
    }
    
    .logo {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
    
    .btn-large {
        padding: 14px 30px;
        font-size: 1rem;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .b2b-cta {
        padding: 30px 20px;
    }
    
    .contact-form {
        padding: 25px 20px;
    }
}

/* High Resolution Displays */
@media (min-width: 1400px) {
    :root {
        --container-width: 1400px;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .whatsapp-float,
    .scroll-top,
    .hero-nav,
    .hero-indicators {
        display: none;
    }
    
    .section {
        page-break-inside: avoid;
    }
}
