:root {
    --color-navy: #0a192f;
    --color-navy-light: #172a45;
    --color-gold: #C5A059;
    --color-gold-hover: #d4af6a;
    --color-white: #e6f1ff;
    --color-text-muted: #8892b0;
    --font-main: 'Inter', sans-serif;
}

/* Content Pages (Privacy, Terms, etc.) */
.content-page {
    max-width: 800px;
    margin: 0 auto;
    padding: 6rem 2rem;
    color: var(--color-white);
}

.content-page h1 {
    color: var(--color-gold);
    margin-bottom: 1rem;
}

.content-page h2 {
    color: var(--color-gold);
    margin-top: 2rem;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.content-page p,
.content-page li {
    color: var(--color-text-muted);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.content-page ul {
    padding-left: 1.5rem;
}

.content-page a {
    color: var(--color-gold);
}

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

/* Prevent double-tap zoom on interactive elements */
button,
input,
select,
textarea,
label,
.btn,
.stepper-btn,
.toggle-label,
.faq-question {
    touch-action: manipulation;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--color-navy);
    color: var(--color-white);
    line-height: 1.6;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(10, 25, 47, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
}

.navbar-logo {
    height: 48px;
    width: auto;
}

.navbar-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.navbar-links a {
    color: var(--color-white);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--color-gold);
    color: var(--color-navy);
}

.btn-primary:hover {
    background-color: var(--color-gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(197, 160, 89, 0.3);
}

.btn-large {
    padding: 1.25rem 3rem;
    font-size: 1.1rem;
}

/* Hero Section */
.hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 8rem 5% 3rem;
}

.hero-headline {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    max-width: 800px;
}

.hero-subhead {
    font-size: 1.35rem;
    color: var(--color-text-muted);
    margin-bottom: 2.5rem;
    font-weight: 400;
    letter-spacing: 2px;
}

.hero .btn {
    margin-top: 1rem;
}

/* Benefits Bar */
.benefits-bar {
    background-color: var(--color-gold);
    color: var(--color-navy);
    padding: 1rem 5%;
    font-weight: 600;
}

.benefits-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 1rem;
    text-align: center;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.benefit-icon {
    font-size: 1.2rem;
}

/* Section Styles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
}

/* Services Section */
.services {
    padding: 6rem 5%;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.service-card {
    background-color: var(--color-navy-light);
    border-radius: 8px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    overflow: hidden;
    /* For image */
    display: flex;
    flex-direction: column;
    padding: 0;
    /* Clear padding for image */
}

.service-image {
    height: 200px;
    width: 100%;
    background-size: cover;
    background-position: center;
}

.service-content {
    padding: 2rem;
}

.service-card:hover {
    border-color: var(--color-gold);
    transform: translateY(-5px);
}

.service-card-title {
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--color-white);
}

.service-card-text {
    color: var(--color-text-muted);
    font-size: 1rem;
    line-height: 1.7;
}

/* =============================================
   PREMIUM QUOTE CALCULATOR STYLES
   ============================================= */

.quote {
    padding: 5rem 5%;
    background: linear-gradient(180deg, var(--color-navy) 0%, var(--color-navy-light) 100%);
    position: relative;
}

/* Quote Header */
.quote-header {
    text-align: center;
    margin-bottom: 3rem;
}

.quote-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--color-gold), #d4af37);
    color: var(--color-navy);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
}

.quote-title {
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 0.75rem;
}

.quote-subtitle {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    font-weight: 400;
}

/* Quote Container */
.quote-container {
    max-width: 560px;
    margin: 0 auto;
}

/* Premium Form */
.quote-form-premium {
    background: rgba(23, 42, 69, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(197, 160, 89, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

/* Form Sections */
.form-section {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.form-section:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.section-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.section-icon {
    font-size: 1.25rem;
}

.section-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Form Fields */
.form-field {
    margin-bottom: 1.5rem;
}

.form-field:last-child {
    margin-bottom: 0;
}

.field-label {
    display: block;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-white);
    margin-bottom: 0.75rem;
}

.field-hint {
    display: block;
    font-size: 0.8rem;
    color: var(--color-text-muted);
    margin-top: 0.5rem;
}

/* Input Wrapper with Suffix */
.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.premium-input {
    width: 100%;
    padding: 1rem 4rem 1rem 1.25rem;
    font-size: 1.1rem;
    font-family: var(--font-main);
    background-color: var(--color-navy);
    border: 2px solid rgba(136, 146, 176, 0.3);
    border-radius: 12px;
    color: var(--color-white);
    transition: all 0.3s ease;
    -moz-appearance: textfield;
    appearance: textfield;
}

.premium-input::-webkit-outer-spin-button,
.premium-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.premium-input:hover {
    border-color: rgba(197, 160, 89, 0.4);
}

.premium-input:focus {
    outline: none;
    border-color: var(--color-gold);
    box-shadow: 0 0 0 4px rgba(197, 160, 89, 0.15);
}

.input-suffix {
    position: absolute;
    right: 1.25rem;
    color: var(--color-text-muted);
    font-size: 0.9rem;
    pointer-events: none;
}

/* Select Wrapper */
.select-wrapper {
    position: relative;
}

.premium-select {
    width: 100%;
    padding: 1rem 3rem 1rem 1.25rem;
    font-size: 1.1rem;
    font-family: var(--font-main);
    background-color: var(--color-navy);
    border: 2px solid rgba(136, 146, 176, 0.3);
    border-radius: 12px;
    color: var(--color-white);
    cursor: pointer;
    appearance: none;
    transition: all 0.3s ease;
}

.premium-select:hover {
    border-color: rgba(197, 160, 89, 0.4);
}

.premium-select:focus {
    outline: none;
    border-color: var(--color-gold);
    box-shadow: 0 0 0 4px rgba(197, 160, 89, 0.15);
}

.premium-select option {
    background-color: var(--color-navy);
    color: var(--color-white);
    padding: 0.5rem;
}

.select-arrow {
    position: absolute;
    right: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-gold);
    font-size: 0.9rem;
    pointer-events: none;
}

/* Toggle Switch */
.toggle-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 1rem 1.25rem;
    background-color: var(--color-navy);
    border: 2px solid rgba(136, 146, 176, 0.3);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.toggle-label:hover {
    border-color: rgba(197, 160, 89, 0.4);
}

.toggle-text {
    font-size: 1rem;
    color: var(--color-white);
}

.toggle-switch {
    position: relative;
    width: 52px;
    height: 28px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(136, 146, 176, 0.3);
    border-radius: 28px;
    transition: 0.3s;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 3px;
    bottom: 3px;
    background-color: var(--color-white);
    border-radius: 50%;
    transition: 0.3s;
}

.toggle-switch input:checked+.toggle-slider {
    background: linear-gradient(135deg, var(--color-gold), #d4af37);
}

.toggle-switch input:checked+.toggle-slider:before {
    transform: translateX(24px);
}

/* Conditional Field Animation */
.conditional-field {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    margin-bottom: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.conditional-field.visible {
    max-height: 150px;
    opacity: 1;
    margin-bottom: 1.5rem;
}

/* Stepper Input */
.stepper-input {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    background-color: var(--color-navy);
    border: 2px solid rgba(136, 146, 176, 0.3);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.stepper-input:hover {
    border-color: rgba(197, 160, 89, 0.4);
}

.stepper-input:focus-within {
    border-color: var(--color-gold);
    box-shadow: 0 0 0 4px rgba(197, 160, 89, 0.15);
}

.stepper-btn {
    width: 56px;
    height: 56px;
    background: transparent;
    border: none;
    color: var(--color-gold);
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stepper-btn:hover {
    background-color: rgba(197, 160, 89, 0.1);
}

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

.stepper-value {
    width: 80px;
    text-align: center;
    font-size: 1.25rem;
    font-weight: 600;
    font-family: var(--font-main);
    color: var(--color-white);
    background: transparent;
    border: none;
    border-left: 1px solid rgba(136, 146, 176, 0.2);
    border-right: 1px solid rgba(136, 146, 176, 0.2);
    padding: 1rem 0;
}

/* Calculate Button */
.form-action {
    margin-top: 2.5rem;
    text-align: center;
}

.btn-calculate {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    padding: 1.25rem 2rem;
    background: linear-gradient(135deg, var(--color-gold), #d4af37);
    color: var(--color-navy);
    font-size: 1.15rem;
    font-weight: 700;
    font-family: var(--font-main);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-calculate::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-calculate:hover::before {
    left: 100%;
}

.btn-calculate:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(197, 160, 89, 0.35);
}

.btn-calculate:active {
    transform: translateY(0);
}

.btn-arrow {
    font-size: 1.25rem;
    transition: transform 0.3s ease;
}

.btn-calculate:hover .btn-arrow {
    transform: translateX(4px);
}

.action-note {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-top: 1rem;
}

/* =============================================
   QUOTE RESULT - PREMIUM CARD
   ============================================= */

.quote-result-premium {
    margin-top: 2rem;
    animation: slideUp 0.5s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.result-card {
    background: linear-gradient(145deg, var(--color-navy), var(--color-navy-light));
    border: 2px solid var(--color-gold);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.result-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-gold), #d4af37, var(--color-gold));
}

.result-header {
    margin-bottom: 1.5rem;
}

.result-badge {
    display: inline-block;
    background: rgba(197, 160, 89, 0.15);
    color: var(--color-gold);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.result-price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.result-price .currency {
    font-size: 2rem;
    font-weight: 600;
    color: var(--color-gold);
    margin-top: 0.5rem;
}

.result-price .price-value {
    font-size: 5rem;
    font-weight: 700;
    color: var(--color-gold);
    line-height: 1;
    animation: priceReveal 0.6s ease;
}

@keyframes priceReveal {
    from {
        opacity: 0;
        transform: scale(0.8);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.result-validity {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-bottom: 2rem;
}

.validity-icon {
    font-size: 1rem;
}

/* Result CTA Buttons */
.result-cta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.btn-call {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1.25rem 2rem;
    background: linear-gradient(135deg, var(--color-gold), #d4af37);
    color: var(--color-navy);
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-call:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(197, 160, 89, 0.35);
}

.call-icon {
    font-size: 1.5rem;
}

.call-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.call-text strong {
    font-size: 1.1rem;
}

.call-text small {
    font-size: 0.9rem;
    opacity: 0.8;
}

.btn-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: #25D366;
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-whatsapp:hover {
    background: #20bd5a;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
}

.result-disclaimer {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    font-style: italic;
}

/* Micro-interactions */
.stepper-pulse {
    animation: pulse 0.15s ease;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

.input-focused {
    transform: scale(1.01);
}

.price-value {
    transition: all 0.15s ease;
}

/* Input hover glow effect */
.input-wrapper:hover .premium-input,
.select-wrapper:hover .premium-select,
.stepper-input:hover {
    border-color: rgba(197, 160, 89, 0.5);
}

/* Responsive Design */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    /* Prevent iOS auto-zoom on input focus - must be 16px minimum */
    input,
    select,
    textarea,
    .premium-input,
    .premium-select,
    .premium-textarea,
    .stepper-value {
        font-size: 16px !important;
    }

    .hero-headline {
        font-size: 2.5rem;
    }

    .hero-subhead {
        font-size: 1.1rem;
    }

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

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

    .navbar-links {
        gap: 1.5rem;
    }

    .navbar-links a {
        font-size: 0.85rem;
    }

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

    .quote-container {
        padding: 2rem;
    }

    .quote-price {
        font-size: 3rem;
    }
}

@media (max-width: 480px) {
    .hero-headline {
        font-size: 2rem;
    }

    .btn-large {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .quote {
        padding: 4rem 3%;
    }

    .quote-container {
        padding: 1.5rem;
        border-radius: 8px;
    }

    .quote-price {
        font-size: 2.5rem;
    }

    .quote-label {
        font-size: 0.95rem;
    }

    .form-group label {
        font-size: 0.9rem;
    }

    .form-group input[type="number"],
    .form-group select {
        padding: 0.75rem;
        font-size: 0.95rem;
    }
}

/* Trust Section */
.trust-section {
    padding: 4rem 5%;
    background-color: var(--color-navy-light);
    text-align: center;
}

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

.trust-item {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
}

.trust-icon {
    font-size: 3rem;
    color: var(--color-gold);
    margin-bottom: 1rem;
}

.trust-item h3 {
    margin-bottom: 1rem;
    color: var(--color-white);
}

.trust-item p {
    color: var(--color-text-muted);
}

/* Quote CTA Box */
.quote-cta-box {
    margin-top: 1.5rem;
}

.btn-block {
    display: block;
    width: 100%;
    max-width: 400px;
    margin: 1rem auto;
    text-align: center;
}

.btn-subtext {
    display: block;
    font-size: 0.9rem;
    font-weight: 400;
    margin-top: 0.2rem;
    opacity: 0.9;
}

.quote-disclaimer {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    font-style: italic;
    margin-top: 1rem;
}

/* Footer */
.footer {
    background-color: #050d1a;
    padding: 4rem 5% 2rem;
    color: var(--color-text-muted);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    margin-bottom: 3rem;
}

.footer-logo {
    height: 40px;
    margin-bottom: 1rem;
}

.footer h4 {
    color: var(--color-white);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.footer ul {
    list-style: none;
}

.footer ul li {
    margin-bottom: 0.8rem;
}

.footer a {
    color: var(--color-text-muted);
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

/* Testimonials Section */
.testimonials-section {
    padding: 6rem 5%;
    background-color: var(--color-navy-light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background-color: var(--color-navy);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid rgba(197, 160, 89, 0.2);
}

.stars {
    color: var(--color-gold);
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.review-text {
    font-size: 1rem;
    font-style: italic;
    margin-bottom: 1rem;
    color: var(--color-white);
}

.reviewer {
    font-weight: 600;
    color: var(--color-gold);
}

/* FAQ Section */
.faq-section {
    padding: 6rem 5%;
    background-color: var(--color-navy);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.5rem 0;
    text-align: left;
    color: var(--color-white);
    font-size: 1.1rem;
    font-weight: 600;
    font-family: var(--font-main);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.faq-question .icon {
    transition: transform 0.3s ease;
    font-size: 1.5rem;
    color: var(--color-gold);
}

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

.faq-answer p {
    padding-bottom: 1.5rem;
    color: var(--color-text-muted);
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-item.active .icon {
    transform: rotate(45deg);
}

/* Mobile Sticky Bar */
.mobile-sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: none;
    z-index: 2000;
}

.sticky-btn {
    width: 50%;
    float: left;
    text-align: center;
    padding: 1rem;
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
}

.whatsapp-btn {
    background-color: #25D366;
}

.call-btn {
    background-color: var(--color-gold);
    color: var(--color-navy);
}

/* Mobile Responsive for New Sections */
@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .mobile-sticky-bar {
        display: flex;
    }

    .footer {
        padding-bottom: 5rem;
    }
}

/* Urgency Banner */
.urgency-banner {
    background: linear-gradient(90deg, #ff6b35, #f7c94b);
    color: var(--color-navy);
    text-align: center;
    padding: 0.75rem 2rem;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.banner-close {
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    color: var(--color-navy);
}

/* Trust Strip */
.trust-strip {
    display: flex;
    justify-content: center;
    gap: 2rem;
    padding: 1rem 5%;
    background: linear-gradient(90deg, var(--color-gold), #d4af37);
    color: var(--color-navy);
    font-weight: 700;
    font-size: 0.9rem;
}

.trust-strip-item {
    white-space: nowrap;
}

@media (max-width: 768px) {
    .trust-strip {
        flex-wrap: wrap;
        gap: 0.5rem 1.5rem;
        text-align: center;
    }
}

/* How It Works */
.how-it-works {
    padding: 4rem 5%;
    background-color: var(--color-navy);
    text-align: center;
}

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

.step {
    padding: 2rem;
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--color-gold);
    color: var(--color-navy);
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.step h3 {
    color: var(--color-white);
    margin-bottom: 0.5rem;
}

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

@media (max-width: 768px) {
    .steps-grid {
        grid-template-columns: 1fr;
    }
}

/* Quote Urgency */
.quote-urgency {
    color: var(--color-gold);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

/* CTA Micro-copy */
.cta-microcopy {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-top: 0.75rem;
}

/* Reviewer Photo */
.reviewer-photo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    margin-bottom: 1rem;
}

/* Areas Text in Footer */
.areas-text {
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Scroll Fade-In Animation */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* Footer Grid Update for 4 columns */
@media (min-width: 769px) {
    .footer-content {
        grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    }
}

/* =============================================
   CONTACT SECTION - PREMIUM STYLING
   ============================================= */

.contact-section {
    padding: 5rem 5%;
    background: linear-gradient(180deg, var(--color-navy-light) 0%, var(--color-navy) 100%);
}

.contact-header {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--color-gold), #d4af37);
    color: var(--color-navy);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
}

.contact-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 0.75rem;
}

.contact-subtitle {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    max-width: 500px;
    margin: 0 auto;
}

.contact-container {
    max-width: 500px;
    margin: 0 auto;
}

.contact-form-premium {
    background: rgba(23, 42, 69, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(197, 160, 89, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.contact-field {
    margin-bottom: 1.5rem;
}

.contact-field:last-of-type {
    margin-bottom: 2rem;
}

.optional-tag {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    font-weight: 400;
}

.premium-textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    font-size: 1rem;
    font-family: var(--font-main);
    background-color: var(--color-navy);
    border: 2px solid rgba(136, 146, 176, 0.3);
    border-radius: 12px;
    color: var(--color-white);
    transition: all 0.3s ease;
    resize: vertical;
    min-height: 120px;
}

.premium-textarea:hover {
    border-color: rgba(197, 160, 89, 0.4);
}

.premium-textarea:focus {
    outline: none;
    border-color: var(--color-gold);
    box-shadow: 0 0 0 4px rgba(197, 160, 89, 0.15);
}

.premium-textarea::placeholder {
    color: var(--color-text-muted);
}

.contact-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.btn-contact-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    padding: 1.25rem 2rem;
    background: linear-gradient(135deg, var(--color-gold), #d4af37);
    color: var(--color-navy);
    font-size: 1.1rem;
    font-weight: 700;
    font-family: var(--font-main);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-contact-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-contact-submit:hover::before {
    left: 100%;
}

.btn-contact-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(197, 160, 89, 0.35);
}

.btn-contact-submit .btn-arrow {
    font-size: 1.25rem;
    transition: transform 0.3s ease;
}

.btn-contact-submit:hover .btn-arrow {
    transform: translateX(4px);
}

.contact-divider {
    display: flex;
    align-items: center;
    width: 100%;
    gap: 1rem;
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

.contact-divider::before,
.contact-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(136, 146, 176, 0.3);
}

.btn-whatsapp-contact {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    padding: 1rem 2rem;
    background: #25D366;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.btn-whatsapp-contact:hover {
    background: #20bd5a;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
}

.whatsapp-icon {
    width: 22px;
    height: 22px;
}

.contact-note {
    text-align: center;
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-top: 1.5rem;
}

/* Contact Section Mobile */
@media (max-width: 768px) {
    .contact-section {
        padding: 3rem 4%;
    }

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

    .contact-subtitle {
        font-size: 1rem;
    }

    .contact-form-premium {
        padding: 1.75rem;
        border-radius: 16px;
    }

    .premium-textarea {
        min-height: 100px;
    }

    .btn-contact-submit {
        padding: 1.1rem 1.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .contact-section {
        padding: 2.5rem 3%;
    }

    .contact-badge {
        font-size: 0.7rem;
        padding: 0.4rem 1rem;
    }

    .contact-title {
        font-size: 1.65rem;
    }

    .contact-form-premium {
        padding: 1.5rem;
    }
}

/* =============================================
   QUOTE CALCULATOR - MOBILE RESPONSIVE
   ============================================= */

@media (max-width: 768px) {
    .quote {
        padding: 3rem 4%;
    }

    .quote-header {
        margin-bottom: 2rem;
    }

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

    .quote-subtitle {
        font-size: 1rem;
    }

    .quote-form-premium {
        padding: 1.75rem;
        border-radius: 16px;
    }

    .form-section {
        margin-bottom: 1.5rem;
        padding-bottom: 1.5rem;
    }

    .section-header {
        margin-bottom: 1.25rem;
    }

    .section-label {
        font-size: 0.9rem;
    }

    .form-field {
        margin-bottom: 1.25rem;
    }

    .field-label {
        font-size: 0.9rem;
    }

    .premium-input,
    .premium-select {
        padding: 0.875rem 3.5rem 0.875rem 1rem;
        font-size: 1rem;
        border-radius: 10px;
    }

    .toggle-label {
        padding: 0.875rem 1rem;
        border-radius: 10px;
    }

    .toggle-text {
        font-size: 0.95rem;
    }

    .stepper-btn {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }

    .stepper-value {
        width: 70px;
        font-size: 1.1rem;
        padding: 0.875rem 0;
    }

    .btn-calculate {
        padding: 1.1rem 1.5rem;
        font-size: 1.05rem;
        border-radius: 10px;
    }

    .form-action {
        margin-top: 2rem;
    }

    .action-note {
        font-size: 0.8rem;
    }

    /* Result Card Mobile */
    .result-card {
        padding: 2rem 1.5rem;
        border-radius: 16px;
    }

    .result-price .currency {
        font-size: 1.5rem;
    }

    .result-price .price-value {
        font-size: 3.5rem;
    }

    .result-validity {
        font-size: 0.85rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .btn-call {
        padding: 1.1rem 1.5rem;
        border-radius: 10px;
    }

    .call-text strong {
        font-size: 1rem;
    }

    .btn-whatsapp {
        padding: 0.9rem 1.5rem;
        border-radius: 10px;
    }
}

@media (max-width: 480px) {
    .quote {
        padding: 2.5rem 3%;
    }

    .quote-badge {
        font-size: 0.7rem;
        padding: 0.4rem 1rem;
    }

    .quote-title {
        font-size: 1.65rem;
    }

    .quote-subtitle {
        font-size: 0.9rem;
    }

    .quote-form-premium {
        padding: 1.5rem;
        border-radius: 14px;
    }

    .section-icon {
        font-size: 1.1rem;
    }

    .section-label {
        font-size: 0.85rem;
    }

    .premium-input,
    .premium-select {
        padding: 0.8rem 3rem 0.8rem 0.9rem;
        font-size: 0.95rem;
    }

    .input-suffix {
        font-size: 0.8rem;
        right: 0.9rem;
    }

    .stepper-btn {
        width: 44px;
        height: 48px;
    }

    .stepper-value {
        width: 60px;
    }

    .result-price .price-value {
        font-size: 3rem;
    }

    .conditional-field.visible {
        max-height: 130px;
    }
}