/*
Theme Name: Jet Set Go Custom
Author: Do Digitals
Description: Hand-coded, high-performance custom theme for Jet Set Go Enterprises.
Version: 1.0
Text Domain: jetsetgo
*/

/* ==========================================================================
   1. CSS VARIABLES (Mapped exactly from the new Logo)
   ========================================================================== */
:root {
    /* Brand Colors */
    --color-primary: #042E6F;      /* Deep Navy Blue ('JetSet' text & shield border) */
    --color-secondary: #27A64C;    /* Vibrant Green ('Go' text & map part) */
    --color-accent-blue: #00A9F4;  /* Cyan/Light Blue (Car & shield background) */
    --color-accent-yellow: #FFCC00;/* Bright Yellow (Location Pin) */
    
    /* Neutral Colors */
    --color-text-main: #222222;
    --color-text-muted: #7A8085;   /* Grey ('Tours & Travels' text) */
    --color-bg-body: #F4F7F6;
    --color-white: #FFFFFF;
    
    /* Layout & Typography */
    --font-primary: 'Helvetica Neue', Arial, sans-serif;
    --container-width: 1300px;
    --border-radius: 8px;
    --box-shadow: 0 4px 15px rgba(4, 46, 111, 0.08);
    --transition: all 0.3s ease-in-out;
}

/* ==========================================================================
   2. RESET & BASE STYLES
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    color: var(--color-text-main);
    background-color: var(--color-bg-body);
    line-height: 1.6;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

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

a:hover {
    color: var(--color-accent-blue);
}

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

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* ==========================================================================
   3. HEADER & NAVIGATION
   ========================================================================== */
.site-header {
    background-color: var(--color-white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 999;
}

.header-container {
    display: flex;
    padding: 15px 20px;
    max-width: var(--container-width);
    margin: 0 auto;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    align-content: center;
}

.site-logo img {
    max-width: 150px;
}

.main-navigation ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

.main-navigation a {
    font-weight: 600;
    color: var(--color-primary);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

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

/* ==========================================================================
   4. HOME PAGE SECTIONS
   ========================================================================== */
/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent-blue) 100%);
    color: var(--color-white);
    text-align: center;
    padding: 100px 20px;
}

.hero-section h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-section p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
}

/* About / Business Note Section */
.about-section {
    background-color: var(--color-white);
    padding: 80px 20px;
    text-align: center;
}

.about-section h2 {
    color: var(--color-primary);
    font-size: 2.2rem;
    margin-bottom: 25px;
}

.about-section p {
    color: var(--color-text-muted);
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
}

/* Services Grid */
.services-section {
    padding: 80px 20px;
}

.section-title {
    text-align: center;
    color: var(--color-primary);
    margin-bottom: 50px;
    font-size: 2.2rem;
}

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

.service-card {
    background: var(--color-white);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    border-top: 4px solid var(--color-secondary);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(4, 46, 111, 0.15);
    border-top-color: var(--color-accent-yellow);
}

.service-card h3 {
    color: var(--color-primary);
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.service-card p {
    color: var(--color-text-muted);
}

/* ==========================================================================
   5. FOOTER
   ========================================================================== */
.site-footer {
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 50px 20px 20px;
    text-align: center;
    margin-top: 40px;
}

.footer-info {
    margin-bottom: 20px;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.8);
}

.site-footer p {
    margin-bottom: 10px;
	text-align: left;
}
.footer-widget.links-widget {
    text-align: left;
}

/* ==========================================================================
   6. RESPONSIVE DESIGN (Mobile First Adjustments)
   ========================================================================== */
@media (max-width: 768px) {
    .header-container {
        gap: 15px;
    }
    
    .main-navigation ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    .hero-section h1 {
        font-size: 2.2rem;
    }
    
    .hero-section p {
        font-size: 1rem;
    }
}
/* ==========================================================================
   MOBILE MENU TOGGLE STYLES
   ========================================================================== */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1000;
}

.mobile-toggle .bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--color-primary);
    transition: var(--transition);
}

/* ==========================================================================
   RESPONSIVE DESIGN (Mobile Adjustments)
   ========================================================================== */
@media (max-width: 768px) {
    .mobile-toggle {
        display: block; /* Show hamburger on mobile */
    }

    /* Hide desktop nav alignment */
    .main-navigation {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--color-white);
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        display: none; /* Hidden by default on mobile */
    }

    /* Class added by JS when menu is open */
    .main-navigation.active {
        display: block; 
    }

    .main-navigation ul.nav-menu {
        flex-direction: column;
        gap: 0;
        padding: 0;
        margin: 0;
    }

    .main-navigation ul.nav-menu li {
        width: 100%;
        text-align: center;
    }

    .main-navigation ul.nav-menu a {
        display: block;
        padding: 15px 20px;
        border-bottom: 1px solid #f4f7f6;
    }

    /* Hamburger Animation (Cross effect when open) */
    .mobile-toggle.active .bar:nth-child(2) { opacity: 0; }
    .mobile-toggle.active .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .mobile-toggle.active .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
    
    .hero-section h1 { font-size: 2.2rem; }
    .hero-section p { font-size: 1rem; }
}
/* ==========================================================================
   HERO SECTION (2-Column Layout)
   ========================================================================== */
.hero-section {
    position: relative;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent-blue) 100%);
    color: var(--color-white);
    padding: 80px 20px;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg width="20" height="20" xmlns="http://www.w3.org/2000/svg"><circle cx="2" cy="2" r="2" fill="rgba(255,255,255,0.05)"/></svg>');
    z-index: 1;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    position: relative;
    z-index: 2;
}

/* Left Content */
.hero-content-left {
    flex: 1;
    text-align: left;
}

.hero-badge {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--color-accent-yellow);
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 204, 0, 0.3);
}

.hero-content-left h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 25px;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.hero-content-left p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.95;
    line-height: 1.6;
    max-width: 600px;
	margin-left:0;
}

/* Buttons */
.hero-cta-group {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--color-secondary);
    color: var(--color-white);
    box-shadow: 0 4px 15px rgba(39, 166, 76, 0.4);
}

.btn-primary:hover {
    background-color: #218c40;
    color: var(--color-white);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(39, 166, 76, 0.6);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-white);
    border-color: var(--color-white);
}

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

.btn-block {
    width: 100%;
    margin-top: 10px;
}

/* Right Form Box */
.hero-form-right {
    flex: 0 0 420px; /* Fixed width for form box */
    width: 100%;
}

.inquiry-form-box {
    background-color: var(--color-white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    color: var(--color-text-main);
    border-top: 5px solid var(--color-accent-yellow);
}

.inquiry-form-box h3 {
    color: var(--color-primary);
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.inquiry-form-box p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    margin-bottom: 25px;
}

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

.jetsetgo-form input,
.jetsetgo-form select {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    font-family: var(--font-primary);
    transition: var(--transition);
    background-color: #f9f9f9;
}

.jetsetgo-form input:focus,
.jetsetgo-form select:focus {
    outline: none;
    border-color: var(--color-accent-blue);
    background-color: var(--color-white);
    box-shadow: 0 0 0 3px rgba(0, 169, 244, 0.1);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
    }
    .hero-content-left {
        text-align: center;
    }
    .hero-content-left p {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-cta-group {
        justify-content: center;
    }
    .hero-form-right {
        flex: 1;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .hero-content-left h1 {
        font-size: 2.2rem;
    }
    .hero-content-left p {
        font-size: 1.05rem;
    }
    .hero-cta-group {
        flex-direction: column;
        width: 100%;
    }
    .btn {
        width: 100%;
    }
    .inquiry-form-box {
        padding: 25px;
    }
}
/* ==========================================================================
   GLOBAL UTILITIES
   ========================================================================== */
.text-center { text-align: center; }
.section-title {
    color: var(--color-primary);
    font-size: 2.4rem;
    margin-bottom: 10px;
    font-weight: 700;
}
.section-subtitle {
    color: var(--color-text-muted);
    font-size: 1.1rem;
    margin-bottom: 40px;
}

/* ==========================================================================
   BUSINESS MODEL SECTION
   ========================================================================== */
.about-model-section {
    background-color: var(--color-white);
    padding: 80px 20px;
}

.model-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.model-card {
    background: #f9fbfd;
    padding: 40px 30px;
    border-radius: var(--border-radius);
    border: 1px solid #eef2f6;
    transition: var(--transition);
}

.model-card:hover {
    background: var(--color-white);
    box-shadow: var(--box-shadow);
    transform: translateY(-5px);
}

.model-card .icon-box {
    font-size: 3rem;
    margin-bottom: 20px;
}

.model-card h3 {
    color: var(--color-primary);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.model-card p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

/* ==========================================================================
   SERVICES SECTION
   ========================================================================== */
.services-section {
    background-color: var(--color-bg-body);
    padding: 80px 20px;
}

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

.service-card {
    background: var(--color-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(4, 46, 111, 0.12);
}

.service-image-placeholder {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-content {
    padding: 30px;
}

.service-content h3 {
    color: var(--color-primary);
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.service-content p {
    color: var(--color-text-muted);
    margin-bottom: 0;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .section-title { font-size: 2rem; }
    .about-model-section, .services-section { padding: 60px 20px; }
}
/* ==========================================================================
   WHY CHOOSE US (FEATURES) SECTION
   ========================================================================== */
.features-section {
    background-color: var(--color-white);
    padding: 80px 20px;
    border-top: 1px solid #eef2f6;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.feature-item {
    text-align: center;
    padding: 20px;
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: var(--color-accent-blue);
}

.feature-item h4 {
    color: var(--color-primary);
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.feature-item p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

/* ==========================================================================
   VENDOR CTA SECTION
   ========================================================================== */
.vendor-cta-section {
    background-color: var(--color-secondary);
    padding: 70px 20px;
    border-top: 5px solid var(--color-primary);
}

.vendor-cta-section h2 {
    color: var(--color-primary);
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.vendor-cta-section p {
    color: var(--color-text-main);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

.vendor-cta-section .btn-secondary:hover {
    background-color: var(--color-primary) !important;
    color: var(--color-white) !important;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .features-grid {
        gap: 30px;
    }
    .vendor-cta-section h2 {
        font-size: 1.8rem;
    }
}

/* ==========================================================================
   DESIGNER FOOTER STYLES
   ========================================================================== */
.designer-footer {
    background-color: #021a42; /* A deeper, richer navy blue */
    color: #a0aec0;
    margin-top: 0px;
    position: relative;
    font-family: var(--font-primary);
}

/* CTA Bar */
.footer-top-cta {
    background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-accent-blue) 100%);
    padding: 40px 20px;
    transform: translateY(-40px); /* Overlaps the section above it slightly */
    border-radius: 12px;
    max-width: 1160px;
    margin: 0 auto;
    box-shadow: 0 15px 30px rgba(0, 169, 244, 0.2);
    position: relative;
    z-index: 10;
}

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

.cta-text h3 {
    color: var(--color-white);
    font-size: 1.8rem;
    margin-bottom: 5px;
}

.cta-text p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-size: 1.05rem;
}

.shadow-btn {
    box-shadow: 0 8px 20px rgba(0,0,0,0.2) !important;
    border: none;
}

/* Main Footer Content */
.footer-main {
    padding: 20px 20px 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
}

.footer-widget h4 {
    color: var(--color-white);
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
	    text-align: left;
}

.footer-widget h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background-color: var(--color-secondary); /* Brand Green */
    border-radius: 2px;
}

/* Brand Widget */
.footer-logo-text {
    color: var(--color-white);
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 15px;
	text-align:left;
}

.footer-logo-text span {
    color: var(--color-secondary);
}

.footer-desc {
    margin-bottom: 25px;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Social Icons */
.social-links {
    display: flex;
    gap: 12px;
}

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

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

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #a0aec0;
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--color-accent-yellow);
    transform: translateX(5px); /* Slide right effect */
}

/* Contact Widget & Badges */
.contact-info-list {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
	text-align: left;
}

.contact-info-list li {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    line-height: 1.5;
    font-size: 0.95rem;
}

.contact-info-list a {
    color: #a0aec0;
}

.contact-info-list a:hover {
    color: var(--color-accent-blue);
}

.trust-badges {
    display: flex;
    gap: 15px;
}

.badge {
    background-color: rgba(255,255,255,0.05);
    padding: 10px 15px;
    border-radius: 6px;
    border: 1px solid rgba(255,255,255,0.1);
    font-size: 0.8rem;
}

.badge-title {
    display: block;
    color: var(--color-text-muted);
    text-transform: uppercase;
    font-size: 0.7rem;
    letter-spacing: 1px;
    margin-bottom: 3px;
}

.badge-value {
    color: var(--color-white);
    font-weight: 600;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 25px 0;
    text-align: center;
    font-size: 0.9rem;
}

/* Responsive Footer */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .footer-top-cta {
        margin: 0 20px;
        text-align: center;
        padding: 30px 20px;
    }
    .cta-container {
        flex-direction: column;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .trust-badges {
        flex-direction: column;
    }
}

/* ==========================================================================
   POPUP MODAL (GET A QUOTE)
   ========================================================================== */
.modal-overlay {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(2, 26, 66, 0.8); /* Dark navy background */
    backdrop-filter: blur(5px);
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-overlay.show {
    display: flex;
    opacity: 1;
}

.modal-content {
    background-color: var(--color-white);
    padding: 40px;
    border-radius: 12px;
    width: 90%;
    max-width: 450px;
    position: relative;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    border-top: 5px solid var(--color-accent-yellow);
    transform: translateY(-30px);
    transition: transform 0.3s ease;
}

.modal-overlay.show .modal-content {
    transform: translateY(0);
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2rem;
    color: var(--color-text-muted);
    cursor: pointer;
    transition: color 0.2s;
    line-height: 1;
}

.close-modal:hover {
    color: var(--color-primary);
}

.modal-content h3 {
    color: var(--color-primary);
    margin-bottom: 10px;
    font-size: 1.6rem;
}

.modal-content p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    margin-bottom: 25px;
}


/* ==========================================================================
   ABOUT PAGE STYLES
   ========================================================================== */
.about-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(4, 46, 111, 0.1);
}

.page-header {
    position: relative;
    overflow: hidden;
}

/* Optional background pattern for header */
.page-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 10%, transparent 10.5%) 0 0 / 20px 20px;
    z-index: 1;
}

.page-header .container {
    position: relative;
    z-index: 2;
}
/* ==========================================================================
   CONTACT PAGE STYLES
   ========================================================================== */
.contact-container {
    display: flex;
    gap: 50px;
    align-items: stretch;
}

.contact-info-wrapper {
    flex: 1;
}

.contact-form-wrapper {
    flex: 1;
    max-width: 550px;
}

.contact-info-card {
    display: flex;
    align-items: flex-start;
    background-color: var(--color-white);
    padding: 25px;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin-bottom: 20px;
    border-left: 4px solid var(--color-secondary);
    transition: var(--transition);
}

.contact-info-card:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 20px rgba(4, 46, 111, 0.1);
}

.contact-info-card .icon {
    font-size: 2rem;
    margin-right: 20px;
    background-color: #f4f7f6;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.contact-info-card .details h4 {
    color: var(--color-primary);
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.contact-info-card .details p {
    color: var(--color-text-muted);
    margin: 0;
    line-height: 1.5;
    font-size: 0.95rem;
}

.contact-info-card .details a {
    color: var(--color-accent-blue);
}

.contact-info-card .details a:hover {
    color: var(--color-primary);
}

/* Responsive */
@media (max-width: 992px) {
    .contact-container {
        flex-direction: column;
    }
    .contact-form-wrapper {
        max-width: 100%;
        margin-top: 30px;
    }
}

/* ==========================================================================
   STANDARD PAGES (PRIVACY POLICY, TERMS, ETC.)
   ========================================================================== */
.content-container {
    max-width: 900px; /* Text padhne me aasan rahe isliye width thodi kam rakhi hai */
    margin: 0 auto;
    background-color: var(--color-white);
    padding: 50px 60px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-top: 4px solid var(--color-accent-yellow);
}

/* Auto-Styling for WordPress Editor Content */
.rich-text-content {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--color-text-main);
}

.rich-text-content p {
    margin-bottom: 25px;
}

.rich-text-content h1,
.rich-text-content h2,
.rich-text-content h3,
.rich-text-content h4 {
    color: var(--color-primary);
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: 700;
}

.rich-text-content h2 {
    font-size: 1.8rem;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 10px;
}

.rich-text-content h3 {
    font-size: 1.4rem;
}

.rich-text-content ul,
.rich-text-content ol {
    margin-bottom: 25px;
    padding-left: 25px;
}

.rich-text-content li {
    margin-bottom: 10px;
}

/* Custom Bullet Points */
.rich-text-content ul {
    list-style-type: none;
}

.rich-text-content ul li {
    position: relative;
}

.rich-text-content ul li::before {
    content: '■';
    color: var(--color-secondary);
    position: absolute;
    left: -20px;
    top: -1px;
    font-size: 0.8rem;
}

.rich-text-content a {
    color: var(--color-accent-blue);
    text-decoration: underline;
}

.rich-text-content a:hover {
    color: var(--color-primary);
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .content-container {
        padding: 30px 20px;
    }
    .rich-text-content h2 {
        font-size: 1.5rem;
    }
}