/* ========================================
   FLOOR TO CEILING - Main Stylesheet
   Professional Cleaning Services
   ======================================== */

/* CSS Variables */
:root {
    --primary-green: #1FD599;
    --dark-green: #18A87A;
    --hover-green: #1BC085;
    --navy-blue: #0F1F35;
    --dark-navy: #0A1628;
    --light-gray: #F5F7FA;
    --medium-gray: #E5E9F0;
    --text-gray: #4A5568;
    --white: #FFFFFF;
    --red-accent: #FF4757;

    --font-primary: 'Plus Jakarta Sans', sans-serif;
    --font-heading: 'Outfit', sans-serif;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--text-gray);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--navy-blue);
    line-height: 1.2;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.75rem; }

/* ========================================
   Header & Navigation
   ======================================== */

.top-banner {
    background: var(--navy-blue);
    color: var(--white);
    text-align: center;
    padding: 12px 20px;
    font-size: 0.95rem;
    font-weight: 600;
}

.top-banner .highlight {
    color: var(--primary-green);
    font-weight: 800;
}

.top-banner .cta-button {
    background: var(--primary-green);
    color: var(--white);
    padding: 6px 18px;
    border-radius: 20px;
    text-decoration: none;
    margin-left: 15px;
    font-weight: 700;
    display: inline-block;
    transition: all 0.3s ease;
}

.top-banner .cta-button:hover {
    background: var(--dark-green);
    transform: translateY(-2px);
}

header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

nav {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--navy-blue);
    text-decoration: none;
}

.logo-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.logo-image {
    width: 270px;
    height: auto;
    border-radius: 12px;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 35px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--navy-blue);
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-green);
}

.nav-cta {
    display: flex;
    gap: 20px;
    align-items: center;
}

.phone-number {
    font-weight: 700;
    color: var(--navy-blue);
    font-size: 1.1rem;
    text-decoration: none;
}

.btn-primary {
    background: var(--primary-green);
    color: var(--white);
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.btn-primary:hover {
    background: var(--dark-green);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(31, 213, 153, 0.3);
}

/* ========================================
   Hero Section
   ======================================== */

.hero,
.hero-section {
    background: linear-gradient(rgba(15, 31, 53, 0.8), rgba(15, 31, 53, 0.85)),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%230F1F35" width="1200" height="600"/></svg>');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 100px 40px 80px;
    position: relative;
    overflow: hidden;
}

.hero::before,
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(31, 213, 153, 0.1), transparent 50%);
    pointer-events: none;
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text .badge {
    display: inline-block;
    background: rgba(31, 213, 153, 0.2);
    border: 2px solid var(--primary-green);
    color: var(--primary-green);
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 25px;
}

.hero-text h1 {
    color: var(--white);
    font-size: 3.8rem;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-text h1 .highlight {
    color: var(--primary-green);
    display: block;
}

.hero-text .subtitle {
    font-size: 1.15rem;
    margin-bottom: 30px;
    opacity: 0.95;
    line-height: 1.7;
}

.hero-features {
    display: flex;
    gap: 25px;
    margin: 35px 0;
    flex-wrap: wrap;
}

.feature-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 10px 18px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
}

.feature-badge::before {
    content: '✓';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    background: var(--primary-green);
    border-radius: 50%;
    font-weight: 700;
}

.testimonial-preview {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 35px;
}

.customer-avatars {
    display: flex;
    margin-left: -10px;
}

.avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 3px solid var(--navy-blue);
    margin-left: -10px;
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
}

.testimonial-text {
    display: flex;
    flex-direction: column;
}

.stars {
    color: #FFD700;
    font-size: 1.1rem;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.testimonial-count {
    font-weight: 700;
    font-size: 0.95rem;
}

/* ========================================
   Form Card
   ======================================== */

.form-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    position: relative;
}

.form-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--red-accent);
    color: white;
    padding: 8px 25px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.9rem;
    white-space: nowrap;
}

.form-card h3 {
    text-align: center;
    margin-bottom: 25px;
    color: var(--navy-blue);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--navy-blue);
    font-size: 0.9rem;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px;
    border: 2px solid var(--medium-gray);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: var(--font-primary);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-green);
}

.phone-input {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 10px;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    font-size: 1.05rem;
    margin-top: 10px;
}

.form-disclaimer {
    font-size: 0.75rem;
    color: var(--text-gray);
    text-align: center;
    margin-top: 15px;
    line-height: 1.5;
}

/* ========================================
   Funil.ai Iframe Styles
   ======================================== */

.funil-iframe-container {
    background: var(--white);
    border-radius: 20px;
    padding: 0;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.funil-iframe {
    width: 100%;
    height: 493px;
    border: none;
    border-radius: 20px;
    display: block;
}

/* Responsive height adjustment for mobile */
@media (max-width: 768px) {
    .funil-iframe {
        height: 600px;
    }
}

/* ========================================
   Trust Bar
   ======================================== */

.trust-bar {
    background: var(--primary-green);
    color: var(--white);
    padding: 20px 40px;
}

.trust-items {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.trust-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-weight: 600;
    font-size: 0.9rem;
}

.trust-item::before {
    content: '✓';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    font-weight: 700;
}

/* ========================================
   Stats Section
   ======================================== */

.stats-section {
    background: var(--white);
    padding: 80px 40px;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
    text-align: center;
}

.stat-item h2 {
    font-size: 3.5rem;
    color: var(--primary-green);
    margin-bottom: 10px;
    font-weight: 900;
}

.stat-item p {
    font-size: 1.05rem;
    color: var(--text-gray);
    font-weight: 600;
}

.stats-badges {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 25px;
    background: var(--light-gray);
    border-radius: 30px;
    font-weight: 600;
}

.badge-item .icon {
    font-size: 1.3rem;
}

/* ========================================
   Services Section
   ======================================== */

.services-section {
    background: var(--light-gray);
    padding: 100px 40px;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-label {
    color: var(--primary-green);
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.section-header h2 {
    margin-bottom: 15px;
}

.section-header p {
    font-size: 1.05rem;
    color: var(--text-gray);
}

.services-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--white);
    border-radius: 16px;
    padding: 40px;
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-card.featured {
    border-color: var(--primary-green);
    box-shadow: 0 10px 30px rgba(31, 213, 153, 0.15);
}

.service-badge {
    position: absolute;
    top: -12px;
    right: 30px;
    background: var(--primary-green);
    color: white;
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin-bottom: 25px;
}

.service-card h3 {
    margin-bottom: 15px;
}

.service-card .description {
    color: var(--text-gray);
    margin-bottom: 25px;
    line-height: 1.7;
}

.service-features {
    list-style: none;
    margin-bottom: 30px;
}

.service-features li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    color: var(--text-gray);
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: 700;
    font-size: 1.2rem;
}

.btn-secondary {
    background: transparent;
    color: var(--navy-blue);
    border: 2px solid var(--navy-blue);
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--navy-blue);
    color: white;
}

.service-card.featured .btn-secondary {
    background: var(--primary-green);
    color: white;
    border-color: var(--primary-green);
}

.service-card.featured .btn-secondary:hover {
    background: var(--dark-green);
    border-color: var(--dark-green);
}

.services-footer {
    text-align: center;
    margin-top: 50px;
}

.services-footer p {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--navy-blue);
}

.services-footer a {
    color: var(--primary-green);
    font-weight: 700;
    text-decoration: none;
    font-size: 1.15rem;
}

/* ========================================
   Difference Section
   ======================================== */

.difference-section {
    background: white;
    padding: 100px 40px;
}

.difference-grid {
    max-width: 1200px;
    margin: 60px auto 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.difference-card {
    text-align: center;
    padding: 30px;
}

.difference-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(31, 213, 153, 0.1), rgba(31, 213, 153, 0.2));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2.2rem;
}

.difference-card h3 {
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.difference-card p {
    color: var(--text-gray);
    line-height: 1.7;
}

/* ========================================
   Satisfaction Section
   ======================================== */

.satisfaction-section {
    background: var(--light-gray);
    padding: 100px 40px;
}

.satisfaction-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    align-items: center;
}

.satisfaction-text h2 {
    margin-bottom: 25px;
}

.satisfaction-text p {
    font-size: 1.05rem;
    margin-bottom: 30px;
    line-height: 1.8;
}

.satisfaction-features {
    list-style: none;
    margin-bottom: 35px;
}

.satisfaction-features li {
    padding: 12px 0;
    padding-left: 35px;
    position: relative;
    font-size: 1.05rem;
    color: var(--text-gray);
}

.satisfaction-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: 700;
    font-size: 1.3rem;
}

.satisfaction-image {
    display: none;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.satisfaction-image img {
    width: 100%;
    height: auto;
    display: block;
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: var(--primary-green);
    color: white;
    padding: 25px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.satisfaction-section .cta-button {
    background: var(--primary-green);
    color: var(--white);
    padding: 16px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(31, 213, 153, 0.3);
    font-size: 1rem;
}

.satisfaction-section .cta-button:hover {
    background: var(--dark-green);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(31, 213, 153, 0.4);
}

.experience-badge .number {
    font-size: 2.5rem;
    font-weight: 900;
    display: block;
    line-height: 1;
}

.experience-badge .label {
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 5px;
}

/* ========================================
   CTA Section
   ======================================== */

.cta-section {
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    color: white;
    padding: 100px 40px;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent 70%);
    border-radius: 50%;
}

.cta-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.cta-text h2 {
    color: white;
    margin-bottom: 25px;
    font-size: 2.8rem;
}

.cta-text p {
    font-size: 1.1rem;
    margin-bottom: 35px;
    opacity: 0.95;
}

.cta-features {
    list-style: none;
}

.cta-features li {
    padding: 15px 0;
    padding-left: 45px;
    position: relative;
    font-size: 1.05rem;
}

.cta-features li::before {
    content: '⏱';
    position: absolute;
    left: 0;
    font-size: 1.8rem;
}

.cta-features li:nth-child(2)::before { content: '💰'; }
.cta-features li:nth-child(3)::before { content: '✅'; }

.cta-form {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.cta-form h3 {
    text-align: center;
    margin-bottom: 25px;
}

/* ========================================
   Reviews Section
   ======================================== */

.reviews-section {
    background: white;
    padding: 100px 40px;
}

.reviews-grid {
    max-width: 1200px;
    margin: 60px auto 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.review-card {
    background: var(--light-gray);
    border-radius: 16px;
    padding: 35px;
    position: relative;
}

.review-header {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.reviewer-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.3rem;
}

.reviewer-info h4 {
    margin-bottom: 5px;
    font-size: 1.15rem;
}

.reviewer-info .verified {
    color: var(--primary-green);
    font-size: 0.85rem;
    font-weight: 600;
}

.reviewer-info .location {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.review-stars {
    color: #FFD700;
    margin-bottom: 15px;
    font-size: 1.1rem;
    letter-spacing: 3px;
}

.review-text {
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 1rem;
}

.reviews-cta {
    background: var(--primary-green);
    border-radius: 20px;
    padding: 60px;
    text-align: center;
    margin-top: 60px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.reviews-cta h3 {
    color: white;
    font-size: 2rem;
    margin-bottom: 15px;
}

.reviews-cta p {
    color: white;
    font-size: 1.05rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.reviews-cta .btn-primary {
    background: white;
    color: var(--primary-green);
}

.reviews-cta .btn-primary:hover {
    background: var(--light-gray);
}

/* ========================================
   Contact Section
   ======================================== */

.contact-section {
    background: var(--light-gray);
    padding: 100px 40px;
}

.contact-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h2 {
    margin-bottom: 25px;
}

.contact-info p {
    font-size: 1.05rem;
    margin-bottom: 40px;
    color: var(--text-gray);
}

.contact-methods {
    list-style: none;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: white;
    border-radius: 12px;
    margin-bottom: 20px;
}

.contact-method-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.contact-method-info h4 {
    margin-bottom: 5px;
    font-size: 1rem;
    color: var(--text-gray);
}

.contact-method-info p {
    margin: 0;
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--navy-blue);
}

.contact-method-info a {
    color: var(--navy-blue);
    text-decoration: none;
}

/* ========================================
   About Section
   ======================================== */

.about-section {
    background: white;
    padding: 100px 40px;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
}

.about-intro {
    margin-bottom: 60px;
}

.about-intro h2 {
    margin-bottom: 25px;
    font-size: 2.5rem;
}

.about-intro p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-gray);
    margin-bottom: 20px;
}

.about-section h3 {
    color: var(--primary-green);
    margin: 40px 0 20px;
    font-size: 1.8rem;
}

.about-section ul {
    list-style: none;
    margin: 20px 0;
}

.about-section ul li {
    padding: 10px 0 10px 35px;
    position: relative;
    font-size: 1.05rem;
    line-height: 1.8;
}

.about-section ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: 700;
    font-size: 1.5rem;
}

/* ========================================
   Google Maps Section
   ======================================== */

.maps-section {
    background: var(--white);
    padding: 80px 40px;
}

.maps-container {
    max-width: 1200px;
    margin: 0 auto;
}

.maps-header {
    text-align: center;
    margin-bottom: 40px;
}

.maps-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.maps-header p {
    font-size: 1.05rem;
    color: var(--text-gray);
}

.maps-iframe-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.maps-iframe {
    width: 100%;
    height: 400px;
    border: none;
    display: block;
}

@media (max-width: 768px) {
    .maps-header h2 {
        font-size: 2rem;
    }

    .maps-iframe {
        height: 300px;
    }
}

/* ========================================
   Footer
   ======================================== */

footer {
    background: var(--navy-blue);
    color: white;
    padding: 60px 40px 30px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-brand {
    padding-right: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: white;
}

.footer-brand p {
    opacity: 0.8;
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-column h4 {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: white;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--primary-green);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    opacity: 0.7;
    font-size: 0.9rem;
}

/* ========================================
   Responsive Design
   ======================================== */

@media (max-width: 1024px) {
    .hero-content,
    .satisfaction-content,
    .cta-content,
    .contact-content {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .difference-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    /* Mobile header navigation layout */
    nav {
        flex-direction: column;
        align-items: center;
        padding: 15px 20px;
        text-align: center;
    }

    .logo {
        margin-bottom: 12px;
    }

    .nav-cta {
        flex-direction: column;
        gap: 10px;
        width: 100%;
        margin-top: 10px;
    }

    .nav-cta .phone-number {
        font-size: 1rem;
        border: 2px solid var(--primary-green);
        border-radius: 8px;
        padding: 12px 20px;
        display: inline-block;
        background: var(--white);
    }

    .nav-cta .btn-primary {
        width: 100%;
        padding: 12px 20px;
    }

    /* Fix button background wrapping on mobile for reviews-cta */
    .reviews-cta .btn-primary {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        line-height: 1.4;
    }

    /* Fix email text overflow on mobile */
    .contact-method-info p {
        font-size: clamp(0.65rem, 4vw, 0.85rem);
        word-break: break-all;
        overflow-wrap: break-word;
        line-height: 1.3;
    }

    /* Reduce contact method padding on mobile for more space */
    .contact-method {
        padding: 15px;
    }

    /* Reduce gap between icon and text on mobile */
    .contact-method {
        gap: 12px;
    }

    /* Hide CTA in top banner on mobile */
    .top-banner .cta-button {
        display: none;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .difference-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .trust-items {
        grid-template-columns: 1fr;
    }

    .stats-container {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   Ocultar link PAGI SEO IA por padrão
   ======================================== */

footer a[href="https://pagi.com.br/"] {
    display: none !important;
}
