/* Custom CSS variables for Harmain Taxi Service Theme */
:root {
    --primary-green: #063A22;
    --primary-green-light: #0D5936;
    --primary-green-dark: #032113;
    --secondary-gold: #C59B27;
    --secondary-gold-light: #DFBA6B;
    --secondary-gold-dark: #A07B1D;
    --gold-gradient: linear-gradient(135deg, #DFBA6B 0%, #C59B27 50%, #A07B1D 100%);
    --emerald-gradient: linear-gradient(135deg, #0D5936 0%, #063A22 60%, #032113 100%);
    --glass-green: rgba(6, 58, 34, 0.85);
    
    --text-dark: #1E2E25;
    --text-medium: #4D5E54;
    --text-light: #E4ECE7;
    --bg-light: #F4F7F5;
    --bg-white: #FFFFFF;
    --whatsapp-color: #25D366;
    --whatsapp-hover: #20BA5A;
    
    --card-shadow: 0 15px 35px rgba(6, 58, 34, 0.08);
    --hover-shadow: 0 20px 40px rgba(6, 58, 34, 0.16);
    --border-radius: 12px;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Base Resets */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--primary-green-dark);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

li {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 100px 0;
}

.bg-dark-green {
    background-color: var(--primary-green-dark);
    background-image: var(--emerald-gradient);
    color: var(--bg-white);
}

.bg-light-green {
    background-color: var(--bg-light);
}

.text-white {
    color: var(--bg-white) !important;
}

.text-light {
    color: var(--text-light) !important;
}

.gold-text {
    color: var(--secondary-gold-light) !important;
}

.text-center {
    text-align: center;
}

/* Section Header Styles */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px auto;
}

.section-subtitle {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    color: var(--secondary-gold);
    display: block;
    margin-bottom: 12px;
}

.section-title {
    font-size: 36px;
    line-height: 1.3;
    margin-bottom: 16px;
}

.header-divider {
    width: 60px;
    height: 3px;
    background: var(--gold-gradient);
    margin: 0 auto 20px auto;
    border-radius: 2px;
}

.divider-gold {
    background: var(--gold-gradient);
}

.section-desc {
    font-size: 16px;
    color: var(--text-medium);
}

/* Buttons System */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 14px;
    border-radius: 30px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-gold {
    background: var(--gold-gradient);
    color: var(--bg-white);
    box-shadow: 0 4px 15px rgba(197, 155, 39, 0.3);
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(197, 155, 39, 0.4);
    background: linear-gradient(135deg, #e5c57b 0%, #d4a72d 50%, #b88d22 100%);
}

.btn-outline-white {
    background: transparent;
    color: var(--bg-white);
    border: 2px solid var(--bg-white);
}

.btn-outline-white:hover {
    background: var(--bg-white);
    color: var(--primary-green-dark);
    transform: translateY(-3px);
}

.btn-large {
    padding: 16px 36px;
    font-size: 15px;
}

.btn-full-width {
    width: 100%;
}

/* Header & Nav */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--glass-green);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(223, 186, 107, 0.2);
    transition: var(--transition);
}

.main-header.scrolled {
    padding: 10px 0;
    background: var(--primary-green-dark);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    font-size: 28px;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-family: 'Cinzel Decorative', serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--bg-white);
    line-height: 1.1;
    letter-spacing: 1px;
}

.brand-sub {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--secondary-gold-light);
    font-weight: 600;
}

.nav-menu ul {
    display: flex;
    gap: 32px;
}

.nav-menu a {
    color: var(--bg-white);
    font-weight: 500;
    font-size: 15px;
}

.nav-menu a:hover {
    color: var(--secondary-gold-light);
}

.header-cta .btn-header-whatsapp {
    padding: 10px 22px;
    font-size: 13px;
}

.icon-whatsapp {
    width: 18px;
    height: 18px;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.menu-toggle .bar {
    width: 25px;
    height: 2px;
    background: var(--bg-white);
    transition: var(--transition);
}

/* Mobile Nav Overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary-green-dark);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.mobile-nav-overlay.active {
    left: 0;
}

.mobile-menu {
    text-align: center;
    padding: 40px;
}

.mobile-menu ul {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

.mobile-menu a {
    font-size: 24px;
    color: var(--bg-white);
    font-weight: 600;
    display: block;
}

.mobile-menu a:hover {
    color: var(--secondary-gold-light);
}

.btn-mob-whatsapp {
    width: 100%;
    max-width: 280px;
}

/* Hero Section */
.hero-section {
    position: relative;
    padding-top: 180px;
    padding-bottom: 120px;
    background: var(--primary-green-dark);
    background-image: url('../assets/images/hero-bg.png');
    background-size: cover;
    background-position: center;
    color: var(--bg-white);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(6, 58, 34, 0.4) 0%, rgba(3, 33, 19, 0.9) 80%);
    z-index: 1;
}

.hero-container-inner {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 750px;
}

.hero-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(223, 186, 107, 0.15);
    border: 1px solid rgba(223, 186, 107, 0.3);
    color: var(--secondary-gold-light);
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.hero-title {
    font-size: 54px;
    line-height: 1.15;
    color: var(--bg-white);
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.hero-desc {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 40px;
    max-width: 650px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 30px;
}

.hero-status {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--secondary-gold-light);
    margin-bottom: 50px;
}

.pulse-indicator {
    width: 10px;
    height: 10px;
    background-color: var(--whatsapp-color);
    border-radius: 50%;
    display: inline-block;
    position: relative;
}

.pulse-indicator::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: var(--whatsapp-color);
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(2.5); opacity: 0; }
}

.hero-trust-indicators {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 30px;
}

.trust-indicator-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.trust-indicator-item .check-icon {
    color: var(--secondary-gold-light);
    font-weight: bold;
    font-size: 16px;
}

.trust-indicator-item span {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-light);
}

.gold-gradient-divider {
    height: 4px;
    width: 100%;
    background: var(--gold-gradient);
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 3;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--bg-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(6, 58, 34, 0.04);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--hover-shadow);
}

.service-img-wrapper {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-card:hover .service-img {
    transform: scale(1.1);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(6, 58, 34, 0.6) 0%, rgba(6, 58, 34, 0) 100%);
}

.service-card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-card-title {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary-green-dark);
}

.service-card-text {
    font-size: 14px;
    color: var(--text-medium);
    margin-bottom: 24px;
    flex-grow: 1;
}

.btn-card-whatsapp {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--primary-green);
    font-weight: 700;
    font-size: 14px;
    border-top: 1px solid rgba(6, 58, 34, 0.08);
    padding-top: 16px;
    transition: var(--transition);
}

.btn-card-whatsapp:hover {
    color: var(--secondary-gold);
}

.btn-card-whatsapp:hover .btn-whatsapp-arrow {
    transform: translateX(5px);
}

.btn-whatsapp-arrow {
    transition: var(--transition);
}

/* Why Choose Us Section */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(223, 186, 107, 0.15);
    padding: 30px;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.benefit-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
    border-color: var(--secondary-gold-light);
}

.benefit-icon-wrapper {
    width: 60px;
    height: 60px;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--bg-white);
}

.benefit-icon {
    width: 28px;
    height: 28px;
}

.benefit-title {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--bg-white);
}

.benefit-desc {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.5;
}

.why-choose-cta {
    margin-top: 30px;
}

/* Fleet Section */
.fleet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

.fleet-card {
    background: var(--bg-white);
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(6, 58, 34, 0.04);
}

.fleet-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--hover-shadow);
}

.fleet-img-wrapper {
    position: relative;
    height: 220px;
}

.fleet-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fleet-class-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-green);
    color: var(--bg-white);
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 4px;
    letter-spacing: 0.5px;
}

.fleet-body {
    padding: 24px;
}

.fleet-vehicle-name {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--primary-green-dark);
}

.fleet-vehicle-desc {
    font-size: 14px;
    color: var(--text-medium);
    margin-bottom: 24px;
}

.fleet-specs {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
    background: var(--bg-light);
    padding: 16px;
    border-radius: 8px;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.spec-icon {
    font-size: 18px;
}

.spec-val {
    font-size: 14px;
    color: var(--text-dark);
    font-weight: 500;
}

/* Routes Section */
.routes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

.route-card {
    background: var(--bg-white);
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
    overflow: hidden;
    border: 1px solid rgba(6, 58, 34, 0.04);
    position: relative;
    transition: var(--transition);
}

.route-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--hover-shadow);
}

.route-card-banner {
    height: 12px;
    background: var(--gold-gradient);
    position: relative;
}

.route-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-green);
    color: var(--bg-white);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 4px;
}

.route-details {
    padding: 30px;
}

.route-cities {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    margin-top: 10px;
}

.route-cities .city {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-green-dark);
}

.route-arrow {
    color: var(--secondary-gold);
    font-weight: bold;
}

.route-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
}

.meta-item {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-medium);
    background: var(--bg-light);
    padding: 4px 10px;
    border-radius: 4px;
}

.route-text {
    font-size: 14px;
    color: var(--text-medium);
    margin-bottom: 24px;
    line-height: 1.5;
}

.route-pricing {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
    border-top: 1px solid rgba(6, 58, 34, 0.08);
    padding-top: 16px;
}

.price-lbl {
    font-size: 12px;
    color: var(--text-medium);
    text-transform: uppercase;
}

.price-val {
    font-size: 20px;
    font-weight: 800;
    color: var(--primary-green);
}

/* Reviews Section */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

.review-card {
    background: var(--bg-white);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--card-shadow);
    border: 1px solid rgba(6, 58, 34, 0.04);
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.review-card:hover {
    box-shadow: var(--hover-shadow);
    transform: translateY(-5px);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
}

.reviewer-name {
    font-size: 18px;
    color: var(--primary-green-dark);
}

.reviewer-country {
    font-size: 12px;
    color: var(--text-medium);
    font-weight: 500;
    margin-top: 2px;
    display: block;
}

.stars {
    color: var(--secondary-gold-light);
    font-size: 18px;
}

.review-text {
    font-size: 14px;
    color: var(--text-medium);
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
    font-style: italic;
}

.verified-booking {
    font-size: 12px;
    font-weight: 700;
    color: var(--primary-green);
    background: rgba(6, 58, 34, 0.05);
    padding: 6px 12px;
    border-radius: 4px;
    display: inline-block;
    align-self: flex-start;
}

/* How It Works Section */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 30px;
}

.step-card {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px 30px 30px 30px;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.step-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--secondary-gold-light);
}

.step-num {
    position: absolute;
    top: 20px;
    right: 20px;
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: rgba(223, 186, 107, 0.15);
    line-height: 1;
}

.step-icon-wrapper {
    width: 50px;
    height: 50px;
    border: 2px dashed var(--secondary-gold-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--secondary-gold-light);
}

.step-icon {
    width: 22px;
    height: 22px;
}

.step-title {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--bg-white);
}

.step-desc {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.5;
}

/* FAQ Section */
.faq-accordion-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-white);
    border-radius: 8px;
    margin-bottom: 16px;
    box-shadow: 0 4px 15px rgba(6, 58, 34, 0.04);
    border: 1px solid rgba(6, 58, 34, 0.05);
    overflow: hidden;
    transition: var(--transition);
}

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    padding: 22px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 700;
    text-align: left;
    color: var(--primary-green-dark);
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--secondary-gold);
}

.faq-icon {
    font-size: 14px;
    color: var(--secondary-gold);
    transition: var(--transition);
}

.faq-answer {
    padding: 0 28px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0, 1, 0, 1);
}

.faq-answer p {
    padding-bottom: 24px;
    color: var(--text-medium);
    font-size: 14px;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    transition: all 0.3s cubic-bezier(1, 0, 1, 0);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

/* Quote Calculator */
.quote-section {
    background-color: var(--bg-light);
}

.quote-container {
    max-width: 900px;
}

.quote-wrapper {
    background: var(--bg-white);
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
    padding: 50px;
    border: 1px solid rgba(6, 58, 34, 0.05);
}

.quote-header {
    text-align: center;
    margin-bottom: 40px;
}

.badge-gold {
    background: rgba(197, 155, 39, 0.1);
    color: var(--secondary-gold);
    padding: 4px 12px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 4px;
    margin-bottom: 12px;
    display: inline-block;
}

.quote-form-title {
    font-size: 28px;
    color: var(--primary-green-dark);
    margin-bottom: 8px;
}

.quote-form-desc {
    font-size: 14px;
    color: var(--text-medium);
}

.quote-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;
    gap: 8px;
}

.form-group label {
    font-size: 13px;
    font-weight: 700;
    color: var(--primary-green-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-control {
    padding: 14px;
    border: 1.5px solid rgba(6, 58, 34, 0.1);
    border-radius: 8px;
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    outline: none;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--secondary-gold);
    box-shadow: 0 0 0 3px rgba(197, 155, 39, 0.15);
}

.btn-submit-quote {
    margin-top: 15px;
    padding: 16px;
    border-radius: 8px;
    background: var(--whatsapp-color);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.2);
}

.btn-submit-quote:hover {
    background: var(--whatsapp-hover);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
    transform: translateY(-2px);
}

/* Large Conversion Banner */
.conversion-banner-section {
    position: relative;
    background-color: var(--primary-green-dark);
    background-image: url('../assets/images/routes-makkah.png');
    background-size: cover;
    background-position: center;
    text-align: center;
    color: var(--bg-white);
}

.conversion-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(3, 33, 19, 0.85);
    z-index: 1;
}

.conversion-container-inner {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.conversion-title {
    font-size: 40px;
    color: var(--bg-white);
    margin-bottom: 20px;
    line-height: 1.25;
}

.conversion-desc {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 40px;
}

/* Footer styling */
.main-footer {
    background-color: var(--primary-green-dark);
    color: var(--text-light);
    padding-top: 80px;
    border-top: 2px solid var(--secondary-gold);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-about {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 24px;
    color: var(--text-light);
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-light);
}

.contact-item:hover {
    color: var(--secondary-gold-light);
}

.footer-title {
    font-size: 18px;
    color: var(--bg-white);
    margin-bottom: 24px;
    border-left: 3px solid var(--secondary-gold);
    padding-left: 12px;
    line-height: 1;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 14px;
    color: var(--text-light);
}

.footer-links a:hover {
    color: var(--secondary-gold-light);
    padding-left: 4px;
}

.footer-cta-text {
    font-size: 14px;
    margin-bottom: 20px;
    color: var(--text-light);
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 30px 0;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.copyright {
    font-size: 13px;
    color: var(--text-light);
}

.footer-legal-links {
    display: flex;
    gap: 20px;
}

.footer-legal-links a {
    font-size: 13px;
    color: var(--text-light);
}

.footer-legal-links a:hover {
    color: var(--secondary-gold-light);
}

/* Floating Sticky WhatsApp Widget */
.floating-whatsapp-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: var(--whatsapp-color);
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    z-index: 998;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-white);
    transition: var(--transition);
}

.floating-whatsapp-widget:hover {
    background-color: var(--whatsapp-hover);
    transform: scale(1.1);
}

.widget-icon {
    width: 32px;
    height: 32px;
}

.whatsapp-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: var(--whatsapp-color);
    border-radius: 50%;
    z-index: -1;
    opacity: 0.75;
    animation: whatsappPulse 2s infinite;
}

@keyframes whatsappPulse {
    0% { transform: scale(1); opacity: 0.75; }
    100% { transform: scale(1.6); opacity: 0; }
}

/* Animations Trigger Classes */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Floating WhatsApp Widget */
.floating-whatsapp-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.floating-whatsapp-widget:hover {
    transform: scale(1.1);
    background-color: #1EBE5D;
    color: white;
}

.whatsapp-pulse {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #25D366;
    border-radius: 50%;
    z-index: -1;
    animation: whatsappPulse 2s infinite;
}

.widget-icon {
    width: 32px;
    height: 32px;
    z-index: 1;
}

@keyframes whatsappPulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    70% {
        transform: scale(1.5);
        opacity: 0;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* Responsive Media Queries */
@media (max-width: 992px) {
    .section-padding {
        padding: 80px 0;
    }
    
    .hero-title {
        font-size: 44px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .header-cta {
        display: none;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .hero-section {
        padding-top: 150px;
        padding-bottom: 80px;
        text-align: center;
    }
    
    .hero-content {
        margin: 0 auto;
    }
    
    .hero-title {
        font-size: 34px;
    }
    
    .hero-desc {
        font-size: 16px;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-status {
        justify-content: center;
    }
    
    .hero-trust-indicators {
        justify-content: center;
        gap: 16px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .quote-wrapper {
        padding: 30px 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .conversion-title {
        font-size: 28px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }
    
    .btn {
        width: 100%;
    }
    
    .floating-whatsapp-widget {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
    
    .widget-icon {
        width: 26px;
        height: 26px;
    }
}
