/* =============================================
   CV Royal Transportation - Premium Stylesheet
   ============================================= */

/* ===== CSS Variables ===== */
:root {
    /* Colors */
    --primary-blue: #1a2b5c;
    --secondary-blue: #2c4a8f;
    --gold: #d4af37;
    --dark-gold: #b8941f;
    --white: #ffffff;
    --off-white: #f8f9fa;
    --light-gray: #e9ecef;
    --gray: #6c757d;
    --dark-gray: #343a40;
    --black: #000000;
    
    /* Typography */
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Manrope', sans-serif;
    
    /* Spacing */
    --section-padding: 100px;
    --container-padding: 20px;
    
    /* Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s ease;
}

/* ===== Reset & Base Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--dark-gray);
    line-height: 1.8;
    overflow-x: hidden;
    background: var(--white);
    font-size: 17px;
}

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

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

button {
    border: none;
    outline: none;
    cursor: pointer;
    font-family: var(--font-body);
    transition: var(--transition-smooth);
}

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

/* ===== Typography ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    color: var(--primary-blue);
}

/* ===== Navigation ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, #2c3e5f 0%, #1a2744 100%);
    border-bottom: 3px solid var(--gold);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    transition: var(--transition-smooth);
    padding: 15px 0;
}

.navbar.scrolled {
    box-shadow: 0 4px 40px rgba(0, 0, 0, 0.6);
    padding: 10px 0;
}

.navbar.scrolled .nav-logo img {
    height: 70px;
}

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

.nav-logo {
    display: block;
    text-decoration: none;
    transition: var(--transition-fast);
}

.nav-logo:hover {
    transform: translateY(-2px);
    filter: drop-shadow(0 8px 20px rgba(212, 175, 55, 0.4));
}

.nav-logo img {
    height: 100px;
    width: auto;
    display: block;
    transition: var(--transition-fast);
    filter: drop-shadow(0 4px 10px rgba(212, 175, 55, 0.3));
}

.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 35px;
}

.nav-link {
    font-weight: 500;
    font-size: 17px;
    color: rgba(255, 255, 255, 0.95);
    position: relative;
    padding: 5px 0;
    transition: var(--transition-fast);
}

.nav-link:hover {
    color: var(--gold);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link.active {
    color: var(--gold);
    font-weight: 600;
}

.nav-phone {
    color: var(--gold);
    font-weight: 700;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 25px;
    border: 2px solid var(--gold);
    transition: var(--transition-fast);
}

.nav-phone:hover {
    background: var(--gold);
    color: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}
    font-weight: 600;
    padding: 10px 20px;
    background: var(--light-gray);
    border-radius: 30px;
    font-size: 16px;
}

.nav-phone:hover {
    background: var(--gold);
    color: var(--white);
}

.book-ride-btn {
    background: linear-gradient(135deg, var(--gold) 0%, var(--dark-gold) 100%);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.book-ride-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--gold);
    border-radius: 3px;
    transition: var(--transition-smooth);
}

/* ===== Hero Slider ===== */
.hero-slider {
    position: relative;
    height: 90vh;
    min-height: 600px;
    max-height: 900px;
    margin-top: 120px;
    overflow: hidden;
}

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

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease-in-out, visibility 0s linear 0.8s;
    z-index: 0;
}

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

.slide-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.5s ease;
}

.slide.active .slide-bg {
    transform: scale(1.05);
}

.slide-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        rgba(26, 43, 92, 0.88) 0%, 
        rgba(44, 74, 143, 0.75) 50%,
        rgba(212, 175, 55, 0.4) 100%);
}

.slide-content {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    z-index: 2;
}

.hero-text {
    animation: slideInUp 1s ease-out;
}

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

.hero-subtitle {
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
    animation: fadeIn 1s ease-out 0.2s both;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: var(--white);
    margin-bottom: 25px;
    line-height: 1.1;
    animation: slideInUp 1s ease-out 0.3s both;
}

.hero-title .accent {
    color: var(--gold);
    font-style: italic;
}

.hero-description {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 600px;
    animation: slideInUp 1s ease-out 0.5s both;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    animation: slideInUp 1s ease-out 0.7s both;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold) 0%, var(--dark-gold) 100%);
    color: var(--white);
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 18px;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.5);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid var(--white);
    color: var(--white);
    padding: 14px 38px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 18px;
    backdrop-filter: blur(10px);
}

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

/* Slider Controls */
.slider-controls {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 20px;
    z-index: 10;
}

.slider-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-btn:hover {
    background: var(--gold);
    border-color: var(--gold);
    transform: scale(1.1);
}

.slider-btn:active {
    transform: scale(0.95);
}

/* Slider Indicators */
.slider-indicators {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: scale(1.2);
}

.indicator.active {
    background: var(--gold);
    width: 30px;
    border-radius: 6px;
    border-color: var(--gold);
}

/* ===== Quick Stats ===== */
.quick-stats {
    background: linear-gradient(180deg, var(--off-white) 0%, var(--white) 100%);
    padding: 80px 0;
    position: relative;
    z-index: 2;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: var(--transition-smooth);
    position: relative;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.stat-image-wrapper {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

.stat-card:hover .stat-image {
    transform: scale(1.1);
}

.stat-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(26, 43, 92, 0.7) 100%);
}

.stat-content {
    padding: 30px 25px;
    position: relative;
}

.stat-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -50px auto 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
}

.stat-icon i {
    font-size: 28px;
    color: var(--white);
}

/* Colorful icon backgrounds */
.stat-icon.wheelchair {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.stat-icon.medical {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.stat-icon.time {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.stat-icon.safety {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.stat-icon.driver {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.stat-icon.available {
    background: linear-gradient(135deg, #30cfd0 0%, #330867 100%);
}

.stat-content h3 {
    font-size: 26px;
    margin-bottom: 12px;
    text-align: center;
    color: var(--primary-blue);
}

.stat-content p {
    color: var(--gray);
    line-height: 1.6;
    text-align: center;
    font-size: 17px;
}

/* ===== Section Headers ===== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 15px;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 20px;
}

.section-description {
    font-size: 20px;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ===== Services Preview ===== */
.services-preview {
    padding: var(--section-padding) 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--off-white) 100%);
}

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

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    opacity: 1; /* Ensure visible by default */
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--dark-gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gold), var(--dark-gold));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.service-icon i {
    font-size: 36px;
    color: var(--white);
}

.service-card h3 {
    font-size: 28px;
    margin-bottom: 15px;
}

.service-card p {
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.7;
    font-size: 18px;
}

.service-link {
    color: var(--gold);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 17px;
}

.service-link:hover {
    gap: 12px;
}

/* ===== Why Choose Us ===== */
.why-choose-us {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.why-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.why-description {
    font-size: 20px;
    color: var(--gray);
    margin-bottom: 40px;
    line-height: 1.8;
}

.why-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}

.why-feature {
    display: flex;
    gap: 20px;
}

.feature-icon {
    flex-shrink: 0;
}

.feature-icon i {
    font-size: 28px;
    color: var(--gold);
}

.feature-text h4 {
    font-size: 22px;
    margin-bottom: 8px;
}

.feature-text p {
    color: var(--gray);
    line-height: 1.6;
    font-size: 17px;
}

.why-image {
    position: relative;
}

.why-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* ===== CTA Section ===== */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--gold) 0%, transparent 70%);
    opacity: 0.1;
    top: -200px;
    right: -200px;
    border-radius: 50%;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    color: var(--white);
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 22px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-large {
    padding: 18px 50px;
    font-size: 18px;
}

/* ===== Footer ===== */
.footer {
    background: var(--primary-blue);
    color: rgba(255, 255, 255, 0.8);
    padding: 80px 0 30px;
}

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

.footer-logo {
    width: 180px;
    margin-bottom: 20px;
    border-radius: 10px;
}

.footer-description {
    margin-bottom: 25px;
    line-height: 1.7;
    font-size: 16px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

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

.social-link:hover {
    background: var(--gold);
}

.footer-col h4 {
    color: var(--white);
    font-size: 22px;
    margin-bottom: 25px;
    font-family: var(--font-heading);
}

.footer-links {
    list-style: none;
}

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

.footer-links a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 16px;
}

.footer-contact i {
    color: var(--gold);
    margin-top: 4px;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact a:hover {
    color: var(--gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom .webova-link {
    color: var(--gold);
    font-weight: 600;
    transition: var(--transition-fast);
}

.footer-bottom .webova-link:hover {
    color: var(--white);
    text-decoration: underline;
}

/* ===== WhatsApp Float Button ===== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 32px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.whatsapp-float:hover {
    transform: scale(1.15);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

/* ===== Booking Modal ===== */
.modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

.modal-content {
    position: relative;
    background: var(--white);
    border-radius: 20px;
    padding: 50px 40px;
    max-width: 700px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    animation: slideInUp 0.4s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--light-gray);
    font-size: 24px;
    color: var(--dark-gray);
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    background: var(--gold);
    color: var(--white);
}

.modal-title {
    font-size: 32px;
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.modal-subtitle {
    color: var(--gray);
    margin-bottom: 30px;
}

/* ===== Booking Form ===== */
.booking-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 8px;
    font-size: 16px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid var(--light-gray);
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 17px;
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
}

.form-group textarea {
    resize: vertical;
}

.btn-block {
    width: 100%;
    padding: 16px;
    font-size: 16px;
    margin-top: 10px;
}

/* ===== Responsive Design ===== */
@media (max-width: 1024px) {
    :root {
        --section-padding: 80px;
    }
    
    .nav-menu {
        position: fixed;
        top: 90px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 90px);
        background: linear-gradient(135deg, #2c3e5f 0%, #1a2744 100%);
        flex-direction: column;
        justify-content: flex-start;
        padding: 40px 30px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        transition: left 0.4s ease;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-link {
        font-size: 20px;
        padding: 15px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        width: 100%;
    }
    
    .nav-phone {
        margin-top: 20px;
        justify-content: center;
        font-size: 20px;
    }
    
    .book-ride-btn {
        display: none;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .why-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .why-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 10px 0;
    }
    
    .nav-logo img {
        height: 55px;
    }
    
    .nav-container {
        padding: 0 20px;
    }
    
    .hero-slider {
        min-height: 500px;
        height: 70vh;
        margin-top: 100px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .modal-content {
        padding: 40px 25px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
}

@media (max-width: 480px) {
    .nav-logo img {
        height: 45px;
    }
    
    .hero-slider {
        margin-top: 90px;
    }
    
    .slider-controls {
        bottom: 90px;
        gap: 15px;
    }
    
    .slider-btn {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
    
    .slider-indicators {
        bottom: 70px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-image-wrapper {
        height: 180px;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 26px;
        bottom: 20px;
        right: 20px;
    }
}

/* ===== Scroll Animations ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* =============================================
   ABOUT PAGE STYLES
   ============================================= */

/* ===== Page Header ===== */
.page-header {
    position: relative;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    overflow: hidden;
}

.page-header-bg {
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><rect fill="%231a2b5c" width="1200" height="800"/><g fill-opacity="0.05"><circle fill="%23fff" cx="200" cy="200" r="300"/><circle fill="%23fff" cx="800" cy="600" r="400"/><circle fill="%23fff" cx="1000" cy="200" r="250"/></g></svg>');
    background-size: cover;
    opacity: 0.3;
}

.page-header-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.page-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--white);
    margin-bottom: 20px;
    font-family: var(--font-heading);
}

.page-title .accent {
    color: var(--gold);
}

.page-subtitle {
    font-size: 22px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--gold);
}

.breadcrumb .separator {
    color: rgba(255, 255, 255, 0.5);
}

.breadcrumb .current {
    color: var(--white);
    font-weight: 600;
}

/* ===== Our Story Section ===== */
.about-story {
    padding: 100px 0;
    background: var(--white);
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.large-text {
    font-size: 22px;
    line-height: 1.7;
    color: var(--primary-blue);
    margin-bottom: 30px;
    font-weight: 500;
}

.story-paragraph {
    font-size: 18px;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 25px;
}

.story-quote {
    background: var(--light-gray);
    padding: 35px 40px;
    border-left: 4px solid var(--gold);
    border-radius: 0 10px 10px 0;
    margin-top: 40px;
    position: relative;
}

.quote-icon {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 40px;
    color: var(--gold);
    opacity: 0.3;
}

.quote-text {
    font-size: 20px;
    font-style: italic;
    color: var(--primary-blue);
    line-height: 1.7;
    margin-bottom: 15px;
    padding-left: 30px;
}

.quote-author {
    font-size: 16px;
    font-weight: 600;
    color: var(--gold);
    padding-left: 30px;
}

.story-image {
    position: relative;
}

.story-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.story-badge {
    position: absolute;
    bottom: -20px;
    right: 30px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--dark-gold) 100%);
    padding: 25px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
    display: flex;
    align-items: center;
    gap: 15px;
}

.badge-icon {
    font-size: 36px;
    color: var(--white);
}

.badge-text {
    display: flex;
    flex-direction: column;
}

.badge-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    font-family: var(--font-heading);
}

.badge-subtitle {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
}

/* ===== Mission & Vision Section ===== */
.mission-vision {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.mv-card {
    background: var(--white);
    padding: 50px 45px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.mv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(135deg, var(--gold) 0%, var(--dark-gold) 100%);
}

.mission-card::before {
    background: linear-gradient(135deg, var(--gold) 0%, var(--dark-gold) 100%);
}

.vision-card::before {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
}

.mv-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--dark-gold) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--white);
    margin-bottom: 25px;
}

.vision-card .mv-icon {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
}

.mv-card h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--primary-blue);
}

.mv-card p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--gray);
}

/* ===== Core Values Section ===== */
.core-values {
    padding: 100px 0;
    background: var(--white);
}

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

.value-card {
    background: var(--white);
    padding: 40px 35px;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    text-align: center;
    position: relative;
    transition: var(--transition-fast);
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.12);
}

.value-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 48px;
    font-weight: 700;
    color: var(--light-gray);
    font-family: var(--font-heading);
    line-height: 1;
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: var(--white);
    margin: 0 auto 25px;
}

.value-card h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: var(--primary-blue);
}

.value-card p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--gray);
}

/* ===== Why Choose About Section ===== */
.why-choose-about {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.why-choose-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
}

.why-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
}

.why-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.why-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--dark-gold) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
}

.why-content h4 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--primary-blue);
}

.why-content p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--gray);
}

.why-choose-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

/* ===== Service Coverage Section ===== */
.service-coverage {
    padding: 100px 0;
    background: var(--white);
}

.coverage-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.coverage-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin: 40px 0;
}

.coverage-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: var(--light-gray);
    border-radius: 10px;
}

.coverage-item i {
    font-size: 28px;
    color: var(--gold);
}

.coverage-item span {
    font-size: 17px;
    font-weight: 600;
    color: var(--primary-blue);
}

.coverage-note {
    font-size: 18px;
    color: var(--gray);
    margin-top: 30px;
    padding: 20px;
    background: var(--light-gray);
    border-radius: 10px;
    border-left: 4px solid var(--gold);
}

.phone-link {
    color: var(--gold);
    font-weight: 700;
    text-decoration: underline;
}

.phone-link:hover {
    color: var(--primary-blue);
}

.coverage-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

/* ===== Commitment Section ===== */
.commitment {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
}

.commitment-box {
    display: flex;
    align-items: center;
    gap: 50px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 60px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.commitment-icon {
    flex-shrink: 0;
}

.commitment-icon i {
    font-size: 100px;
    color: var(--gold);
}

.commitment-content h2 {
    font-size: 36px;
    color: var(--white);
    margin-bottom: 20px;
}

.commitment-content p {
    font-size: 20px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 35px;
}

.commitment-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* ===== Additional Button Styles ===== */
.btn-secondary {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
    padding: 14px 38px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 18px;
    transition: var(--transition-fast);
}

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

.btn-light {
    background: var(--white);
    color: var(--primary-blue);
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 18px;
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.3);
    transition: var(--transition-fast);
}

.btn-light:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.4);
}

.btn-outline-light {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
    padding: 14px 38px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 18px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition-fast);
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--primary-blue);
}

.btn-large {
    padding: 18px 45px;
    font-size: 18px;
}

/* ===== Responsive Design for About Page ===== */
@media (max-width: 1024px) {
    .story-content,
    .why-choose-content,
    .coverage-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .mv-grid {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .commitment-box {
        flex-direction: column;
        text-align: center;
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 80px 0 60px;
    }

    .page-title {
        font-size: 2rem;
    }

    .page-subtitle {
        font-size: 18px;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .coverage-features {
        grid-template-columns: 1fr;
    }

    .commitment-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .large-text {
        font-size: 20px;
    }

    .story-paragraph {
        font-size: 17px;
    }
}

@media (max-width: 480px) {
    .about-story,
    .mission-vision,
    .core-values,
    .why-choose-about,
    .service-coverage,
    .commitment {
        padding: 60px 0;
    }

    .mv-card,
    .value-card {
        padding: 30px 25px;
    }

    .commitment-box {
        padding: 30px 20px;
    }

    .commitment-icon i {
        font-size: 60px;
    }

    .story-badge {
        bottom: 10px;
        right: 10px;
        padding: 15px 20px;
    }

    .badge-icon {
        font-size: 24px;
    }
}

/* =============================================
   SERVICES PAGE STYLES
   ============================================= */

/* ===== Services Intro Section ===== */
.services-intro {
    padding: 100px 0;
    background: var(--white);
}

.intro-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 80px;
    align-items: center;
}

.intro-paragraph {
    font-size: 18px;
    line-height: 1.8;
    color: var(--gray);
    margin-top: 25px;
}

.intro-stats {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.stat-box {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    padding: 35px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(26, 43, 92, 0.2);
    transition: var(--transition-fast);
}

.stat-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(26, 43, 92, 0.3);
}

.stat-box .stat-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    color: var(--white);
}

.stat-box h3 {
    font-size: 48px;
    color: var(--gold);
    margin-bottom: 10px;
    font-family: var(--font-heading);
}

.stat-box p {
    font-size: 18px;
    color: var(--white);
    margin: 0;
}

/* ===== Main Services Section ===== */
.main-services {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.service-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 100px;
    padding-bottom: 100px;
    border-bottom: 2px solid var(--light-gray);
}

.service-detail:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.service-detail.reverse {
    direction: rtl;
}

.service-detail.reverse > * {
    direction: ltr;
}

.service-detail-image {
    position: relative;
}

.service-detail-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.service-badge {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--dark-gold) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: var(--white);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.service-number {
    display: inline-block;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    border-radius: 50%;
    color: var(--white);
    font-size: 28px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-family: var(--font-heading);
}

.service-detail-content h2 {
    font-size: 36px;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.service-intro {
    font-size: 20px;
    line-height: 1.7;
    color: var(--dark-gray);
    margin-bottom: 35px;
}

.service-detail-content h3 {
    font-size: 24px;
    color: var(--primary-blue);
    margin: 35px 0 20px 0;
}

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

.service-features-list li {
    padding: 12px 0;
    font-size: 18px;
    line-height: 1.7;
    color: var(--dark-gray);
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.service-features-list i {
    color: var(--gold);
    font-size: 20px;
    margin-top: 3px;
    flex-shrink: 0;
}

.ideal-for-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 35px;
}

.tag {
    background: var(--light-gray);
    color: var(--primary-blue);
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 15px;
    font-weight: 600;
    transition: var(--transition-fast);
}

.tag:hover {
    background: var(--primary-blue);
    color: var(--white);
}

.btn-service {
    margin-top: 20px;
}

/* ===== Service Features Section ===== */
.service-features {
    padding: 100px 0;
    background: var(--white);
}

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

.feature-box-service {
    background: var(--white);
    padding: 45px 35px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: var(--transition-fast);
    border: 2px solid transparent;
}

.feature-box-service:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    border-color: var(--gold);
}

.feature-icon-service {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 40px;
    color: var(--white);
}

.feature-box-service h3 {
    font-size: 24px;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.feature-box-service p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--gray);
}

/* ===== Pricing Info Section ===== */
.pricing-info {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.pricing-content {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 80px;
    align-items: center;
}

.pricing-features {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin: 40px 0;
}

.pricing-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 25px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.pricing-item i {
    font-size: 32px;
    color: var(--gold);
    flex-shrink: 0;
}

.pricing-item h4 {
    font-size: 22px;
    color: var(--primary-blue);
    margin-bottom: 8px;
}

.pricing-item p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--gray);
}

.pricing-cta {
    margin-top: 40px;
}

.pricing-note {
    text-align: center;
    margin-top: 15px;
    font-size: 16px;
    color: var(--gray);
}

.pricing-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* ===== Responsive Design for Services Page ===== */
@media (max-width: 1024px) {
    .intro-content,
    .pricing-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .service-detail,
    .service-detail.reverse {
        grid-template-columns: 1fr;
        gap: 40px;
        direction: ltr;
    }

    .features-grid-service {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-intro,
    .main-services,
    .service-features,
    .pricing-info {
        padding: 60px 0;
    }

    .service-detail {
        margin-bottom: 60px;
        padding-bottom: 60px;
    }

    .features-grid-service {
        grid-template-columns: 1fr;
    }

    .service-detail-content h2 {
        font-size: 28px;
    }

    .service-intro {
        font-size: 18px;
    }

    .service-features-list li {
        font-size: 17px;
    }

    .ideal-for-tags {
        gap: 8px;
    }

    .tag {
        font-size: 14px;
        padding: 8px 16px;
    }

    .stat-box h3 {
        font-size: 36px;
    }

    .intro-stats {
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .service-badge {
        width: 60px;
        height: 60px;
        font-size: 24px;
        top: 20px;
        right: 20px;
    }

    .service-number {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }

    .service-detail-content h2 {
        font-size: 24px;
    }

    .service-detail-content h3 {
        font-size: 20px;
    }

    .feature-icon-service {
        width: 70px;
        height: 70px;
        font-size: 32px;
    }

    .feature-box-service h3 {
        font-size: 20px;
    }

    .pricing-item {
        padding: 20px;
    }

    .pricing-item i {
        font-size: 24px;
    }

    .pricing-item h4 {
        font-size: 19px;
    }

    .stat-box {
        padding: 25px 20px;
    }

    .stat-box .stat-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }
}

/* =============================================
   FAQ PAGE STYLES
   ============================================= */

/* ===== FAQ Intro Section ===== */
.faq-intro {
    padding: 100px 0;
    background: var(--white);
}

.intro-content-faq {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 80px;
    align-items: center;
}

.intro-paragraph-faq {
    font-size: 18px;
    line-height: 1.8;
    color: var(--gray);
    margin-top: 25px;
}

.phone-link-inline {
    color: var(--gold);
    font-weight: 700;
    text-decoration: underline;
}

.phone-link-inline:hover {
    color: var(--primary-blue);
}

.intro-image-faq img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* ===== FAQ Categories ===== */
.faq-categories {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

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

.category-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: var(--transition-fast);
    border: 2px solid transparent;
    text-decoration: none;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.12);
    border-color: var(--gold);
}

.category-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 36px;
    color: var(--white);
}

.category-card h3 {
    font-size: 24px;
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.category-card p {
    font-size: 17px;
    color: var(--gray);
    line-height: 1.6;
}

/* ===== FAQ Content Section ===== */
.faq-content {
    padding: 100px 0;
    background: var(--white);
}

.faq-section {
    margin-bottom: 80px;
}

.faq-section:last-child {
    margin-bottom: 0;
}

.faq-section-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 3px solid var(--gold);
}

.faq-section-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--dark-gold) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--white);
    flex-shrink: 0;
}

.faq-section-header h2 {
    font-size: 36px;
    color: var(--primary-blue);
    margin: 0;
}

/* ===== FAQ Accordion ===== */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    transition: var(--transition-fast);
}

.faq-item:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.faq-question {
    width: 100%;
    padding: 25px 30px;
    background: transparent;
    border: none;
    text-align: left;
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-blue);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    transition: var(--transition-fast);
}

.faq-question:hover {
    color: var(--gold);
}

.faq-question i {
    font-size: 18px;
    color: var(--gold);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    padding: 0 30px 30px 30px;
}

.faq-answer p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 15px;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer ul {
    margin: 15px 0;
    padding-left: 25px;
}

.faq-answer li {
    font-size: 17px;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 10px;
}

.faq-answer a {
    color: var(--gold);
    font-weight: 600;
    text-decoration: underline;
}

.faq-answer a:hover {
    color: var(--primary-blue);
}

.faq-answer strong {
    color: var(--primary-blue);
    font-weight: 600;
}

/* ===== Questions CTA Section ===== */
.questions-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.questions-content {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    padding: 60px;
    border-radius: 20px;
    text-align: center;
}

.questions-text h2 {
    font-size: 42px;
    color: var(--white);
    margin-bottom: 15px;
}

.questions-text p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

.questions-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* ===== Responsive Design for FAQ Page ===== */
@media (max-width: 1024px) {
    .intro-content-faq {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .faq-intro,
    .faq-categories,
    .faq-content,
    .questions-cta {
        padding: 60px 0;
    }

    .category-grid {
        grid-template-columns: 1fr;
    }

    .faq-section {
        margin-bottom: 60px;
    }

    .faq-section-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .faq-section-header h2 {
        font-size: 28px;
    }

    .faq-question {
        font-size: 18px;
        padding: 20px 25px;
    }

    .faq-answer p,
    .faq-answer li {
        font-size: 17px;
    }

    .questions-content {
        padding: 40px 30px;
    }

    .questions-text h2 {
        font-size: 32px;
    }

    .questions-text p {
        font-size: 18px;
    }

    .questions-buttons {
        flex-direction: column;
        align-items: stretch;
    }
}

@media (max-width: 480px) {
    .category-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }

    .category-card h3 {
        font-size: 20px;
    }

    .faq-section-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }

    .faq-section-header h2 {
        font-size: 24px;
    }

    .faq-question {
        font-size: 17px;
        padding: 18px 20px;
    }

    .faq-item.active .faq-answer {
        padding: 0 20px 25px 20px;
    }

    .questions-content {
        padding: 30px 20px;
    }

    .questions-text h2 {
        font-size: 28px;
    }
}

/* =============================================
   CONTACT PAGE STYLES
   ============================================= */

/* ===== Quick Contact Bar ===== */
.quick-contact-bar {
    padding: 0;
    background: var(--white);
    margin-top: -50px;
    position: relative;
    z-index: 10;
}

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

.quick-contact-item {
    background: var(--white);
    padding: 30px 25px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 20px;
    text-decoration: none;
    transition: var(--transition-fast);
    border: 2px solid transparent;
}

.quick-contact-item.clickable {
    cursor: pointer;
    border: none;
    width: 100%;
    text-align: left;
}

.quick-contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    border-color: var(--gold);
}

.quick-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--white);
    flex-shrink: 0;
}

.quick-icon.whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.quick-icon.email {
    background: linear-gradient(135deg, #EA4335 0%, #C5221F 100%);
}

.quick-icon.booking {
    background: linear-gradient(135deg, var(--gold) 0%, var(--dark-gold) 100%);
}

.quick-text h4 {
    font-size: 18px;
    color: var(--primary-blue);
    margin-bottom: 5px;
}

.quick-text p {
    font-size: 16px;
    color: var(--gray);
    margin: 0;
}

/* ===== Contact Main Section ===== */
.contact-main {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
}

/* ===== Contact Form ===== */
.contact-form-wrapper {
    background: var(--white);
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.08);
}

.form-header {
    margin-bottom: 40px;
}

.form-header p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--gray);
    margin-top: 15px;
}

.contact-form .form-group {
    margin-bottom: 25px;
}

.contact-form label {
    display: block;
    font-size: 17px;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.contact-form label i {
    margin-right: 8px;
    color: var(--gold);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 15px 20px;
    font-size: 17px;
    border: 2px solid var(--light-gray);
    border-radius: 10px;
    font-family: var(--font-body);
    transition: var(--transition-fast);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.contact-form textarea {
    resize: vertical;
    min-height: 150px;
}

.checkbox-group {
    margin: 30px 0;
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 17px;
    color: var(--dark-gray);
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-right: 12px;
}

.checkbox-text {
    line-height: 1.6;
}

.form-note {
    text-align: center;
    font-size: 15px;
    color: var(--gray);
    margin-top: 20px;
}

/* ===== Contact Info Sidebar ===== */
.contact-info-sidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-card {
    background: var(--white);
    padding: 35px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06);
}

.info-card.primary-card {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    color: var(--white);
    padding: 40px 35px;
}

.card-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--white);
    margin-bottom: 20px;
}

.card-icon-small {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--dark-gold) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--white);
    margin-bottom: 15px;
}

.info-card h3 {
    font-size: 24px;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.info-card.primary-card h3 {
    color: var(--white);
}

.info-card p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--gray);
    margin-bottom: 25px;
}

.info-card.primary-card p {
    color: rgba(255, 255, 255, 0.9);
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-detail:first-of-type {
    border-top: none;
    padding-top: 0;
}

.contact-detail i {
    font-size: 24px;
    color: var(--gold);
    margin-top: 5px;
    flex-shrink: 0;
}

.contact-detail h4 {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-link-large {
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition-fast);
}

.contact-link-large:hover {
    color: var(--gold);
}

.contact-text {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

/* ===== Hours Card ===== */
.hours-list {
    margin: 20px 0;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--light-gray);
}

.hours-row:last-child {
    border-bottom: none;
}

.day {
    font-size: 17px;
    color: var(--dark-gray);
    font-weight: 600;
}

.time {
    font-size: 17px;
    color: var(--gold);
    font-weight: 700;
}

.hours-note {
    font-size: 15px;
    color: var(--gray);
    margin-top: 15px;
    font-style: italic;
}

/* ===== Response List ===== */
.response-list {
    list-style: none;
    margin: 20px 0 0 0;
}

.response-list li {
    font-size: 17px;
    color: var(--dark-gray);
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.response-list i {
    color: var(--gold);
    font-size: 18px;
}

/* ===== Social Buttons ===== */
.social-buttons {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-btn {
    width: 45px;
    height: 45px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition-fast);
}

.social-btn:hover {
    transform: translateY(-3px);
}

.social-btn.facebook {
    background: #1877F2;
}

.social-btn.instagram {
    background: linear-gradient(45deg, #F58529, #DD2A7B, #8134AF, #515BD4);
}

.social-btn.twitter {
    background: #1DA1F2;
}

.social-btn.linkedin {
    background: #0A66C2;
}

/* ===== Map Section ===== */
.map-section {
    padding: 100px 0;
    background: var(--white);
}

.map-header {
    text-align: center;
    margin-bottom: 50px;
}

.map-header p {
    font-size: 18px;
    color: var(--gray);
    max-width: 700px;
    margin: 15px auto 0;
}

.map-container {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.1);
}

.map-placeholder iframe {
    display: block;
}

.service-areas {
    padding: 50px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.service-areas h3 {
    font-size: 28px;
    color: var(--primary-blue);
    margin-bottom: 25px;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-bottom: 25px;
}

.area-item {
    background: var(--white);
    padding: 15px 20px;
    border-radius: 10px;
    font-size: 17px;
    color: var(--dark-gray);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.area-item i {
    color: var(--gold);
    margin-right: 8px;
}

.areas-note {
    font-size: 17px;
    color: var(--gray);
    text-align: center;
}

.areas-note a {
    color: var(--gold);
    font-weight: 700;
    text-decoration: underline;
}

/* ===== Emergency Contact Section ===== */
.emergency-contact {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.emergency-box {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    padding: 50px 60px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 40px;
}

.emergency-icon {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: var(--white);
    flex-shrink: 0;
}

.emergency-content h2 {
    font-size: 36px;
    color: var(--white);
    margin-bottom: 15px;
}

.emergency-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
}

.btn-emergency {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--gold);
    color: var(--primary-blue);
    padding: 18px 35px;
    font-size: 20px;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    transition: var(--transition-fast);
    animation: pulse 2s infinite;
}

.btn-emergency:hover {
    background: var(--white);
    transform: scale(1.05);
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7);
    }
    50% {
        box-shadow: 0 0 0 20px rgba(212, 175, 55, 0);
    }
}

/* ===== Responsive Design for Contact Page ===== */
@media (max-width: 1024px) {
    .quick-contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-layout {
        grid-template-columns: 1fr;
    }

    .areas-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .quick-contact-bar {
        margin-top: 0;
        padding: 40px 0;
    }

    .quick-contact-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .quick-contact-item {
        padding: 25px 20px;
    }

    .contact-main,
    .map-section,
    .emergency-contact {
        padding: 60px 0;
    }

    .contact-form-wrapper {
        padding: 35px 25px;
    }

    .areas-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-areas {
        padding: 35px 25px;
    }

    .emergency-box {
        flex-direction: column;
        padding: 40px 30px;
        text-align: center;
    }

    .emergency-content h2 {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .quick-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .quick-text h4 {
        font-size: 16px;
    }

    .quick-text p {
        font-size: 14px;
    }

    .contact-form-wrapper {
        padding: 30px 20px;
    }

    .contact-form input,
    .contact-form select,
    .contact-form textarea {
        padding: 12px 15px;
        font-size: 16px;
    }

    .info-card {
        padding: 25px 20px;
    }

    .info-card.primary-card {
        padding: 30px 25px;
    }

    .areas-grid {
        grid-template-columns: 1fr;
    }

    .emergency-icon {
        width: 80px;
        height: 80px;
        font-size: 36px;
    }

    .btn-emergency {
        width: 100%;
        justify-content: center;
    }
}
