/* ==========================================
   AK CONSULTING - Sites pour Artisans
   ========================================== */

/* Variables */
:root {
    --primary-color: #1a2332;
    --secondary-color: #f59e0b;
    --accent-color: #ef4444;
    --blue: #3b82f6;
    --light-color: #f8fafc;
    --dark-color: #1a2332;
    --text-color: #334155;
    --text-light: #64748b;
    --font-main: 'Poppins', sans-serif;
    --font-heading: 'Montserrat', sans-serif;
    --transition: all 0.3s ease;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    --border-radius: 8px;
    --border-radius-lg: 16px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--text-color);
    line-height: 1.7;
    background-color: #fff;
    overflow-x: hidden;
}

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

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark-color);
    line-height: 1.3;
}

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

/* Container */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==========================================
   HEADER
   ========================================== */
header {
    background-color: var(--primary-color);
    color: white;
    padding: 0.8rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.6rem;
    font-weight: 800;
    color: white;
    font-family: var(--font-heading);
}

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

nav ul {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 0.5rem;
}

nav ul li a {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 0.8rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

nav ul li a:hover {
    color: white;
    background-color: rgba(255, 255, 255, 0.1);
}

.hamburger {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
}

/* ==========================================
   BUTTONS
   ========================================== */
.btn {
    display: inline-block;
    padding: 0.85rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    text-align: center;
}

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

.btn-primary:hover {
    background-color: #d97706;
    color: var(--dark-color);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(245, 158, 11, 0.35);
}

.btn-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

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

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

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

/* ==========================================
   SECTION TITLE
   ========================================== */
section {
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    font-size: 2.3rem;
    margin-bottom: 0.8rem;
}

.section-title p {
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ==========================================
   HERO
   ========================================== */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, #2d3748 100%);
    color: white;
    min-height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="60" height="60" patternUnits="userSpaceOnUse"><path d="M 60 0 L 0 0 0 60" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="60" height="60" fill="url(%23grid)"/></svg>');
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-subtitle {
    display: inline-block;
    background-color: rgba(245, 158, 11, 0.15);
    color: var(--secondary-color);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.hero h1 {
    font-size: 3.2rem;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 2.5rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.hero-trust {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    font-size: 0.9rem;
    opacity: 0.85;
}

.hero-trust span {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.hero-trust i {
    color: var(--secondary-color);
}

/* ==========================================
   TRUST BADGES
   ========================================== */
.trust-badges {
    background-color: white;
    padding: 2.5rem 0;
    padding-top: 100px;
    border-bottom: 1px solid #e2e8f0;
}

.trust-grid {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    text-align: center;
}

.trust-item {
    flex: 1;
    min-width: 120px;
}

.trust-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--secondary-color);
    font-family: var(--font-heading);
    line-height: 1;
    margin-bottom: 0.3rem;
}

.trust-label {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}

/* ==========================================
   PROBLEM SECTION
   ========================================== */
.problem-section {
    background-color: #fef2f2;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.problem-card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    text-align: center;
    border-top: 4px solid var(--accent-color);
}

.problem-icon {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.problem-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
}

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

/* ==========================================
   SOLUTION SECTION
   ========================================== */
.solution-section {
    background-color: white;
}

.solution-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.solution-card {
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    border: 1px solid #e2e8f0;
    transition: var(--transition);
}

.solution-card:hover {
    border-color: var(--secondary-color);
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.solution-icon {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    width: 60px;
    height: 60px;
    background-color: rgba(245, 158, 11, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

.solution-card h3 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
}

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

/* ==========================================
   METIERS SECTION
   ========================================== */
.metiers-section {
    background-color: var(--primary-color);
    color: white;
    padding: 4rem 0;
}

.metiers-section .section-title h2 {
    color: white;
}

.metiers-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.metier-tag {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.metier-tag:hover {
    background-color: var(--secondary-color);
    color: var(--dark-color);
    border-color: var(--secondary-color);
    transform: translateY(-2px);
}

.metier-tag i {
    font-size: 1rem;
}

/* ==========================================
   PRICING / OFFRES
   ========================================== */
.offres-section {
    background-color: var(--light-color);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    align-items: start;
}

.pricing-card {
    background: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: var(--transition);
    position: relative;
}

.pricing-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-5px);
}

.pricing-popular {
    border: 3px solid var(--secondary-color);
    transform: scale(1.03);
}

.pricing-popular:hover {
    transform: scale(1.03) translateY(-5px);
}

.popular-badge {
    position: absolute;
    top: 15px;
    right: -35px;
    background-color: var(--secondary-color);
    color: var(--dark-color);
    padding: 0.3rem 3rem;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    transform: rotate(45deg);
    z-index: 1;
}

.pricing-header {
    background-color: var(--primary-color);
    color: white;
    padding: 2rem;
    text-align: center;
}

.pricing-header-popular {
    background: linear-gradient(135deg, var(--secondary-color), #d97706);
}

.pricing-header-popular h3,
.pricing-header-popular p {
    color: var(--dark-color);
}

.pricing-header h3 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.pricing-price {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.pricing-price span {
    font-size: 1.2rem;
    font-weight: 600;
}

.pricing-header p {
    font-size: 0.9rem;
    opacity: 0.85;
    margin-bottom: 0;
}

.pricing-body {
    padding: 2rem;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-features li {
    padding: 0.6rem 0;
    padding-left: 1.8rem;
    position: relative;
    font-size: 0.95rem;
    border-bottom: 1px solid #f1f5f9;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #22c55e;
    position: absolute;
    left: 0;
    font-size: 0.85rem;
}

.pricing-features li.not-included {
    color: #94a3b8;
    text-decoration: line-through;
}

.pricing-features li.not-included::before {
    content: "\f00d";
    color: #cbd5e1;
}

/* Maintenance Banner */
.maintenance-banner {
    margin-top: 3rem;
    background: linear-gradient(135deg, var(--primary-color), #2d3748);
    border-radius: var(--border-radius-lg);
    padding: 2rem 2.5rem;
    color: white;
}

.maintenance-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.maintenance-content h3 {
    color: white;
    margin-bottom: 0.3rem;
    font-size: 1.2rem;
}

.maintenance-content p {
    opacity: 0.85;
    font-size: 0.95rem;
    margin: 0;
}

.maintenance-price {
    text-align: center;
}

.maintenance-amount {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--secondary-color);
    display: block;
}

.maintenance-period {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* ==========================================
   PROCESS SECTION
   ========================================== */
.process-section {
    background-color: white;
}

.process-grid {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.process-step {
    flex: 1;
    min-width: 220px;
    max-width: 300px;
    text-align: center;
    padding: 2rem 1.5rem;
}

.process-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--secondary-color), #d97706);
    color: var(--dark-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 auto 1.2rem;
    font-family: var(--font-heading);
}

.process-step h3 {
    font-size: 1.15rem;
    margin-bottom: 0.8rem;
}

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

.process-arrow {
    display: flex;
    align-items: center;
    color: var(--secondary-color);
    font-size: 1.5rem;
    padding-top: 2rem;
}

/* ==========================================
   TESTIMONIALS
   ========================================== */
.testimonials-section {
    background-color: var(--light-color);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
}

.testimonial-stars {
    color: var(--secondary-color);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.testimonial-text {
    color: var(--text-color);
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--secondary-color), #d97706);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-color);
    font-size: 1.2rem;
    font-weight: 700;
}

.testimonial-author strong {
    display: block;
    color: var(--dark-color);
    font-size: 0.95rem;
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 0.85rem;
}

/* ==========================================
   REALISATIONS
   ========================================== */
.realisations-section {
    background-color: white;
}

.realisations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.realisation-card {
    background: white;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    cursor: pointer;
    transition: var(--transition);
}

.realisation-card:hover {
    box-shadow: var(--shadow-xl);
}

.realisation-image {
    position: relative;
    overflow: hidden;
    height: 280px;
    background: #f8fafc;
}

.realisation-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.3s ease;
}

.realisation-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 35, 50, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.realisation-overlay span {
    color: white;
    font-weight: 600;
    background: var(--secondary-color);
    color: var(--dark-color);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
}

.realisation-info {
    padding: 1.5rem;
}

.realisation-info h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.realisation-info p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.realisation-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.realisation-tags span {
    background: var(--light-color);
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.8rem;
    color: var(--text-light);
    font-weight: 500;
}

/* ==========================================
   FAQ
   ========================================== */
.faq-section {
    background-color: var(--light-color);
}

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

.faq-item {
    background: white;
    border-radius: var(--border-radius-lg);
    margin-bottom: 1rem;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    background-color: #f8fafc;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 600;
    flex: 1;
    padding-right: 1rem;
}

.faq-question i {
    color: var(--secondary-color);
    transition: transform 0.3s;
    font-size: 0.9rem;
}

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

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

.faq-item.open .faq-answer {
    max-height: 300px;
    padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
    color: var(--text-light);
    line-height: 1.7;
}

/* ==========================================
   CTA SECTION
   ========================================== */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #2d3748 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    color: white;
    font-size: 2.3rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.15rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.cta-guarantees {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1.5rem;
    font-size: 0.9rem;
    opacity: 0.85;
}

.cta-guarantees span {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.cta-guarantees i {
    color: var(--secondary-color);
}

/* ==========================================
   FOOTER
   ========================================== */
footer {
    background-color: var(--dark-color);
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-col h3 {
    color: white;
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 3px;
    background-color: var(--secondary-color);
    bottom: 0;
    left: 0;
    border-radius: 2px;
}

.footer-col p {
    color: #94a3b8;
    font-size: 0.9rem;
    line-height: 1.7;
}

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

.footer-links li {
    margin-bottom: 0.6rem;
}

.footer-links a {
    color: #94a3b8;
    font-size: 0.9rem;
    transition: var(--transition);
}

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

.social-links {
    display: flex;
    gap: 0.8rem;
    margin-top: 1rem;
}

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

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

.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    gap: 0.8rem;
}

.contact-icon {
    color: var(--secondary-color);
    font-size: 1.1rem;
    margin-top: 0.2rem;
}

.contact-info-item p {
    margin: 0;
}

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

.footer-bottom p {
    color: #64748b;
    font-size: 0.85rem;
}

.footer-bottom a {
    color: #94a3b8;
}

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

/* ==========================================
   FLOATING CTA
   ========================================== */
#floating-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
    pointer-events: none;
}

#floating-cta.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.floating-cta-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    background-color: var(--secondary-color);
    color: var(--dark-color);
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.4);
    transition: var(--transition);
    font-size: 0.95rem;
}

.floating-cta-btn:hover {
    background-color: #d97706;
    color: var(--dark-color);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(245, 158, 11, 0.5);
}

/* ==========================================
   WHATSAPP BUTTON
   ========================================== */
#whatsapp-btn {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 999;
}

.whatsapp-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    color: white;
    font-size: 1.8rem;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
}

.whatsapp-link:hover {
    transform: scale(1.1);
    color: white;
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.5);
}

/* ==========================================
   SERVICES PAGE SPECIFIC
   ========================================== */
.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: white;
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.service-title {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

.service-description {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.price-tag {
    display: inline-block;
    background-color: rgba(245, 158, 11, 0.1);
    color: var(--secondary-color);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

/* ==========================================
   CONTACT PAGE SPECIFIC
   ========================================== */
.contact-page-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-form-container {
    background-color: white;
    padding: 2.5rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
}

.contact-form-container h3 {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e2e8f0;
}

.contact-info-container {
    background: linear-gradient(135deg, var(--primary-color), #2d3748);
    color: white;
    padding: 2.5rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
}

.contact-info-container h3 {
    color: white;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-info-large {
    margin-bottom: 2rem;
}

.contact-info-large .contact-icon {
    font-size: 2rem;
    margin-bottom: 0.8rem;
}

.contact-info-large h4 {
    color: white;
    margin-bottom: 0.3rem;
    font-size: 1rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--dark-color);
}

.required-label::after {
    content: "*";
    color: var(--accent-color);
    margin-left: 0.25rem;
}

.form-control {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 2px solid #e2e8f0;
    border-radius: var(--border-radius);
    font-family: var(--font-main);
    font-size: 0.95rem;
    transition: var(--transition);
    background-color: #f8fafc;
}

.form-control:focus {
    outline: none;
    border-color: var(--secondary-color);
    background-color: white;
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1);
}

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1em;
    padding-right: 2.5rem;
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    background-color: var(--secondary-color);
    color: var(--dark-color);
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
}

.btn-submit:hover {
    background-color: #d97706;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(245, 158, 11, 0.35);
}

.btn-submit:disabled {
    background-color: #cbd5e1;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.contact-map {
    height: 250px;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    margin-top: 2rem;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Page banner for inner pages */
.page-banner {
    padding: 0 !important;
}

/* ==========================================
   LANDING PAGE SPECIFIC
   ========================================== */
.landing-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, #2d3748 50%, var(--secondary-color) 100%);
    color: white;
    padding: 4rem 0 3rem;
    text-align: center;
    position: relative;
}

.urgency-banner {
    background: linear-gradient(135deg, var(--accent-color), #dc2626);
    color: white;
    padding: 0.8rem;
    text-align: center;
    font-weight: 600;
    position: sticky;
    top: 0;
    z-index: 999;
    font-size: 0.95rem;
}

/* ==========================================
   COMPARISON TABLE
   ========================================== */
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    font-size: 0.9rem;
}

.comparison-table thead {
    background: var(--primary-color);
    color: white;
}

.comparison-table th {
    padding: 1.2rem 1rem;
    text-align: center;
    font-weight: 600;
    font-size: 0.95rem;
}

.comparison-table th:first-child {
    text-align: left;
    padding-left: 1.5rem;
}

.comparison-table td {
    padding: 0.8rem 1rem;
    text-align: center;
    border-bottom: 1px solid #f1f5f9;
}

.comparison-table td:first-child {
    text-align: left;
    padding-left: 1.5rem;
    font-weight: 500;
    color: var(--dark-color);
}

.comparison-table tbody tr:hover {
    background-color: #f8fafc;
}

.comparison-table .fa-check {
    color: #22c55e;
    font-size: 1rem;
}

.comparison-table .fa-times {
    color: #cbd5e1;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .comparison-table {
        font-size: 0.8rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 0.6rem 0.4rem;
    }

    .comparison-table td:first-child,
    .comparison-table th:first-child {
        padding-left: 0.6rem;
    }
}

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.5rem;
    }

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

    .pricing-popular {
        transform: scale(1);
    }

    .pricing-popular:hover {
        transform: translateY(-5px);
    }
}

@media (max-width: 768px) {
    nav ul {
        display: none;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background-color: var(--primary-color);
        flex-direction: column;
        padding: 1rem 0;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    }

    nav ul.show {
        display: flex;
    }

    nav ul li {
        text-align: center;
        padding: 0.5rem 0;
    }

    .hamburger {
        display: block;
    }

    .hero {
        min-height: auto;
        padding: 8rem 0 4rem;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-trust {
        flex-direction: column;
        gap: 0.5rem;
    }

    .section-title h2 {
        font-size: 1.8rem;
    }

    .process-arrow {
        display: none;
    }

    .process-grid {
        flex-direction: column;
        align-items: center;
    }

    .process-step {
        max-width: 100%;
    }

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

    .maintenance-content {
        flex-direction: column;
        text-align: center;
    }

    .cta-content h2 {
        font-size: 1.8rem;
    }

    .cta-guarantees {
        flex-direction: column;
        gap: 0.5rem;
        align-items: center;
    }

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

    #floating-cta {
        bottom: 15px;
        right: 15px;
    }

    #whatsapp-btn {
        bottom: 15px;
        left: 15px;
    }

    .whatsapp-link {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        width: 95%;
        padding: 0 10px;
    }

    .hero h1 {
        font-size: 1.5rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn-secondary {
        border-color: rgba(255, 255, 255, 0.5);
    }

    .trust-grid {
        gap: 1rem;
    }

    .trust-number {
        font-size: 1.8rem;
    }
}
