/* ===================================
   Toiture Direct - Styles principaux
   =================================== */

/* Variables CSS - Palette Toiture Direct */
:root {
    /* Couleurs principales de marque */
    --primary: #C41E3A;           /* Rouge Toiture Direct */
    --primary-dark: #9B1B30;      /* Rouge bordeaux (hovers/fonds) */
    --primary-light: #E8394F;     /* Rouge clair (accents légers) */
    --secondary: #2D3436;         /* Anthracite (texte/titres) */
    --secondary-dark: #1D2426;    /* Anthracite foncé */
    --secondary-light: #3D4449;   /* Anthracite clair */

    /* Couleurs d'état */
    --success: #16a34a;
    --warning: #eab308;
    --danger: #C41E3A;            /* Même que primary pour cohérence */

    /* Neutres */
    --light: #F8F9FA;
    --dark: #2D3436;
    --white: #FFFFFF;

    /* Échelle de gris */
    --gray-50: #F8F9FA;
    --gray-100: #F1F3F4;
    --gray-200: #E8EAED;
    --gray-300: #DADCE0;
    --gray-400: #9AA0A6;
    --gray-500: #6B7280;
    --gray-600: #4B5563;
    --gray-700: #374151;
    --gray-800: #2D3436;
    --gray-900: #1D2426;

    /* Typographie */
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Design tokens */
    --border-radius: 8px;
    --border-radius-lg: 12px;
    --transition: all 0.3s ease;
    --transition-fast: all 0.15s ease;

    /* Ombres */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 25px -5px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 40px -10px rgb(0 0 0 / 0.15);
    --shadow-primary: 0 4px 14px 0 rgba(196, 30, 58, 0.3);
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--gray-800);
    line-height: 1.6;
    background: #fff;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--secondary);
    margin-bottom: 1rem;
}

h1 { font-size: clamp(2rem, 4vw, 3rem); }
h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); }
h3 { font-size: clamp(1.5rem, 2.5vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

strong { font-weight: 600; }

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--border-radius);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    white-space: nowrap;
}

.btn-primary {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: var(--secondary);
    color: white;
    border-color: var(--secondary);
}

.btn-secondary:hover {
    background: var(--secondary-dark);
    border-color: var(--secondary-dark);
    color: white;
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
}

.btn-white {
    background: white;
    color: var(--primary);
    border-color: white;
}

.btn-white:hover {
    background: var(--gray-50);
    color: var(--primary-dark);
    border-color: var(--gray-50);
}

.btn-outline-white {
    background: transparent;
    color: white;
    border-color: white;
}

.btn-outline-white:hover {
    background: white;
    color: var(--primary);
}

.btn-danger {
    background: var(--danger);
    color: white;
    border-color: var(--danger);
}

.btn-danger:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1.125rem;
}

.btn-sm { 
    padding: 8px 16px; 
    font-size: 0.875rem;
}

.btn-block {
    display: flex;
    width: 100%;
}

/* Urgency Bar */
.urgency-bar {
    background: linear-gradient(90deg, var(--danger), var(--primary-dark));
    color: white;
    padding: 8px 0;
    font-size: 14px;
    position: sticky;
    top: 0;
    z-index: 1001;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.9; }
}

.urgency-bar .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.urgency-icon {
    font-size: 18px;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.urgency-phone {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: white;
    color: var(--primary);
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 700;
    transition: var(--transition);
}

.urgency-phone:hover {
    transform: scale(1.05);
}

/* Header */
.main-header {
    background: white;
    border-bottom: 1px solid var(--gray-200);
    position: sticky;
    top: 38px;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

/* Logo */
.logo a {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.logo-rbq {
    font-size: 0.7rem;
    color: var(--gray-500);
    font-weight: 600;
    background: var(--gray-100);
    padding: 4px 8px;
    border-radius: 4px;
    white-space: nowrap;
}

/* Navigation */
.main-nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 2rem;
    margin: 0;
}

.main-nav a {
    color: var(--gray-700);
    font-weight: 500;
    padding: 8px 0;
    position: relative;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--primary);
}

.main-nav a.urgency-link {
    color: var(--danger);
    font-weight: 600;
}

/* Dropdown */
.has-dropdown {
    position: relative;
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-xl);
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    margin-top: 10px;
}

.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown li {
    list-style: none;
}

.dropdown a {
    display: block;
    padding: 10px 16px;
    color: var(--gray-700);
}

.dropdown a:hover {
    background: var(--gray-50);
    color: var(--primary);
}

.dropdown-header {
    padding: 10px 16px;
    font-weight: 600;
    color: var(--gray-400);
    font-size: 0.75rem;
    text-transform: uppercase;
    border-top: 1px solid var(--gray-100);
}

.dropdown li:first-child .dropdown-header {
    border-top: none;
}

/* Header CTA */
.header-cta {
    display: flex;
    gap: 12px;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 3px;
    background: var(--gray-700);
    border-radius: 2px;
    transition: var(--transition);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background: white;
    box-shadow: -2px 0 10px rgba(0,0,0,0.1);
    transition: var(--transition);
    overflow-y: auto;
    z-index: 999;
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav ul {
    list-style: none;
    padding: 80px 0 20px;
}

.mobile-nav li {
    border-bottom: 1px solid var(--gray-100);
}

.mobile-nav a {
    display: block;
    padding: 16px 24px;
    color: var(--gray-700);
    font-weight: 500;
}

.mobile-nav a:hover {
    background: var(--gray-50);
    color: var(--primary);
}

.mobile-nav .submenu {
    display: none;
    background: var(--gray-50);
    padding: 0;
}

.mobile-nav .submenu.active {
    display: block;
}

.mobile-nav .submenu a {
    padding-left: 48px;
    font-size: 0.9rem;
}

.mobile-nav .btn-link {
    color: var(--primary);
    font-weight: 600;
}

.mobile-nav .btn-link-primary {
    background: var(--primary);
    color: white;
    text-align: center;
    margin: 16px;
    border-radius: var(--border-radius);
}

/* Breadcrumbs */
.breadcrumbs {
    background: var(--gray-50);
    padding: 12px 0;
    font-size: 0.875rem;
}

.breadcrumbs ol {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.breadcrumbs li:not(:last-child)::after {
    content: '/';
    margin-left: 8px;
    color: var(--gray-400);
}

.breadcrumbs a {
    color: var(--gray-600);
}

.breadcrumbs a:hover {
    color: var(--primary);
}

/* Main Content */
.main-content {
    min-height: calc(100vh - 400px);
}

/* Footer */
.footer-cta {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    padding: 60px 0;
    text-align: center;
}

.cta-content h2 {
    color: white;
    margin-bottom: 12px;
}

.cta-content p {
    font-size: 1.125rem;
    margin-bottom: 24px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.footer-main {
    background: var(--secondary);
    color: white;
    padding: 60px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-column h3 {
    color: white;
    font-size: 1.25rem;
    margin-bottom: 20px;
}

.footer-column h4 {
    color: var(--gray-300);
    font-size: 0.875rem;
    margin-top: 16px;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.footer-tagline {
    color: var(--gray-400);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.footer-info p {
    color: var(--gray-300);
    margin-bottom: 8px;
}

.footer-badges {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer-badges img {
    height: 40px;
    width: auto;
    filter: grayscale(1) brightness(0) invert(1);
    opacity: 0.5;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: var(--gray-300);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: white;
}

.footer-links.compact li {
    margin-bottom: 4px;
}

.footer-links.compact a {
    font-size: 0.875rem;
}

.more-cities {
    display: inline-block;
    margin-top: 8px;
    color: var(--primary);
    font-size: 0.875rem;
    font-weight: 500;
}

.footer-phone,
.footer-email {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    margin-bottom: 12px;
    color: white;
    transition: var(--transition);
}

.footer-phone:hover,
.footer-email:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    transform: translateX(4px);
}

.footer-phone strong {
    font-size: 1.125rem;
}

.footer-phone small {
    display: block;
    color: var(--gray-400);
    font-size: 0.75rem;
}

.footer-hours {
    background: rgba(255, 255, 255, 0.05);
    padding: 16px;
    border-radius: var(--border-radius);
    margin: 20px 0;
}

.footer-hours p {
    color: var(--gray-300);
    margin-bottom: 4px;
}

.text-red {
    color: var(--primary);
    font-weight: 600;
}

.footer-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-bottom {
    background: var(--secondary-dark);
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright p {
    color: var(--gray-400);
    font-size: 0.875rem;
    margin: 0;
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    color: var(--gray-400);
    font-size: 0.875rem;
}

.footer-legal a:hover {
    color: white;
}

/* Floating Buttons */
.floating-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 900;
}

.float-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-xl);
    transition: var(--transition);
}

.float-btn:hover {
    transform: scale(1.1);
}

.float-phone {
    background: var(--primary);
    color: white;
    animation: ring 1s ease-in-out infinite;
}

@keyframes ring {
    0%, 100% { transform: rotate(0deg); }
    10%, 30% { transform: rotate(-10deg); }
    20%, 40% { transform: rotate(10deg); }
}

.float-whatsapp {
    background: #25D366;
    color: white;
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 48px;
    height: 48px;
    background: var(--secondary);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    z-index: 800;
}

.back-to-top:hover {
    background: var(--secondary-dark);
    transform: translateY(-4px);
}

.back-to-top.show {
    display: flex;
}

/* Utilities */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.text-primary { color: var(--primary); }
.text-secondary { color: var(--secondary); }
.text-success { color: var(--success); }
.text-danger { color: var(--danger); }
.text-muted { color: var(--gray-500); }

.bg-light { background: var(--light); }
.bg-gray { background: var(--gray-50); }
.bg-dark { background: var(--dark); }
.bg-primary { background: var(--primary); }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }

.py-2 { padding: 1rem 0; }
.py-3 { padding: 1.5rem 0; }
.py-4 { padding: 2rem 0; }
.py-5 { padding: 3rem 0; }

.px-2 { padding: 0 1rem; }
.px-3 { padding: 0 1.5rem; }
.px-4 { padding: 0 2rem; }

.section { padding: 60px 0; }

.d-none { display: none; }
.d-block { display: block; }
.d-flex { display: flex; }
.d-grid { display: grid; }

.hide-mobile { display: block; }

/* Sections spécifiques */
.hero {
    background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
    color: white;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/assets/img/roof-pattern.svg') center/cover;
    opacity: 0.03;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    color: white;
    margin-bottom: 20px;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
}

.hero-subtitle-accent {
    display: block;
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    font-weight: 400;
    color: #cbd5e1;
    margin-top: 12px;
    line-height: 1.3;
}

.hero-description {
    font-size: 1.125rem;
    margin-bottom: 40px;
    opacity: 0.9;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.hero-credentials {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.credential {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    color: #cbd5e1;
    font-weight: 500;
}

.credential svg {
    flex-shrink: 0;
    opacity: 0.8;
}

/* Grid layouts */
/* ===================================
   Enhanced Grid Systems
   =================================== */

.grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    align-items: stretch;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    align-items: stretch;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
    align-items: stretch;
}

/* Enhanced grid for better visual hierarchy */
.grid-2 > *,
.grid-3 > *,
.grid-4 > * {
    transition: var(--transition);
}

.grid-2 > *:hover,
.grid-3 > *:hover,
.grid-4 > *:hover {
    transform: translateY(-2px);
}

/* Cards */
.card {
    background: white;
    border-radius: var(--border-radius);
    padding: 24px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.card-icon {
    width: 48px;
    height: 48px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    font-size: 24px;
}

.card h3 {
    margin-bottom: 12px;
}

.card p {
    color: var(--gray-600);
    margin-bottom: 16px;
}

/* Forms */
.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
    color: var(--gray-700);
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--gray-200);
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(196, 30, 58, 0.15);
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

/* FAQ Section */
.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow);
}

.faq-item.active {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
}

.faq-question {
    padding: 20px;
    margin: 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.125rem;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--primary);
}

.faq-toggle {
    width: 30px;
    height: 30px;
    background: var(--gray-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 600;
    transition: var(--transition);
}

.faq-item.active .faq-toggle {
    background: var(--primary);
    color: white;
    transform: rotate(45deg);
}

.faq-answer {
    display: none;
    padding: 0 20px 20px;
    animation: fadeIn 0.3s ease;
}

.faq-item.active .faq-answer {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Service Lists */
.service-list {
    list-style: none;
    margin: 0 0 20px 0;
    padding: 0;
    flex-grow: 1;
}

.service-list li {
    padding: 6px 0;
    font-size: 0.95rem;
    color: var(--gray-700);
    line-height: 1.4;
}

/* Pas de pseudo-elements pour service-list car les emojis sont déjà présents */

/* ===================================
   Problem Diagnostic Section
   =================================== */

.problems-diagnostic {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 30px 0;
}

.problem-item {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    border-left: 4px solid;
}

.problem-item.urgent { border-left-color: var(--primary); }
.problem-item.high { border-left-color: #ea580c; }
.problem-item.medium { border-left-color: #d97706; }
.problem-item.low { border-left-color: var(--success); }

.problem-header {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: var(--gray-50);
}

.problem-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.problem-icon.urgent { background: rgba(196, 30, 58, 0.1); color: var(--primary); }
.problem-icon.high { background: #fff7ed; color: #ea580c; }
.problem-icon.medium { background: #fffbeb; color: #d97706; }
.problem-icon.low { background: rgba(22, 163, 74, 0.1); color: var(--success); }

.problem-priority {
    flex-grow: 1;
}

.priority-badge {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}

.priority-badge.urgent { background: rgba(196, 30, 58, 0.1); color: var(--primary); }
.priority-badge.high { background: #fff7ed; color: #ea580c; }
.priority-badge.medium { background: #fffbeb; color: #d97706; }
.priority-badge.low { background: rgba(22, 163, 74, 0.1); color: var(--success); }

.problem-priority h4 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--gray-800);
}

.problem-details {
    padding: 0 20px 20px;
}

.problem-details p {
    margin-bottom: 8px;
    font-size: 0.9rem;
    line-height: 1.5;
}

.action-required {
    background: var(--gray-100);
    padding: 10px 15px;
    border-radius: 6px;
    margin-top: 15px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--gray-700);
}

/* ===================================
   Decision Matrix Section
   =================================== */

.decision-matrix {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 40px 0;
}

.decision-card {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: var(--transition);
    border: 2px solid transparent;
}

.decision-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.decision-card.repair {
    border-top: 4px solid var(--success);
}

.decision-card.replacement {
    border-top: 4px solid var(--primary);
}

.decision-header {
    padding: 25px;
    background: linear-gradient(135deg, var(--gray-50), white);
    display: flex;
    gap: 20px;
    align-items: center;
}

.decision-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.decision-icon.repair {
    background: linear-gradient(135deg, rgba(22, 163, 74, 0.1), rgba(22, 163, 74, 0.15));
    color: var(--success);
}

.decision-icon.replacement {
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.1), rgba(196, 30, 58, 0.15));
    color: var(--primary);
}

.decision-content {
    flex-grow: 1;
}

.decision-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}

.decision-badge.repair {
    background: rgba(22, 163, 74, 0.15);
    color: var(--success);
}

.decision-badge.replacement {
    background: rgba(196, 30, 58, 0.15);
    color: var(--primary);
}

.decision-content h3 {
    margin: 0 0 5px 0;
    font-size: 1.25rem;
    color: var(--gray-800);
}

.decision-subtitle {
    margin: 0;
    color: var(--gray-600);
    font-size: 0.9rem;
}

.decision-criteria {
    padding: 25px;
}

.decision-criteria h4 {
    margin: 0 0 20px 0;
    font-size: 1rem;
    color: var(--gray-800);
    font-weight: 600;
}

.criteria-list {
    margin-bottom: 25px;
}

.criteria-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    padding: 8px 0;
}

.criteria-item svg {
    color: var(--success);
    flex-shrink: 0;
    margin-top: 2px;
}

.criteria-item span {
    font-size: 0.9rem;
    line-height: 1.4;
    color: var(--gray-700);
}

.decision-estimate {
    background: var(--gray-50);
    padding: 15px 20px;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.estimate-label {
    font-weight: 600;
    color: var(--gray-600);
    font-size: 0.9rem;
}

.estimate-value {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--primary);
}

/* ===================================
   Service Pages Components
   =================================== */

/* Service Content & Intro */
.service-content {
    padding: 40px 0;
}

.service-intro {
    background: linear-gradient(135deg, var(--gray-50), white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    margin-bottom: 40px;
    border-left: 4px solid var(--primary);
}

.service-intro h2 {
    color: var(--secondary);
    margin-bottom: 20px;
    font-size: clamp(1.5rem, 3vw, 2rem);
}

.service-intro p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--gray-700);
    margin-bottom: 1rem;
}

.service-intro p:last-child {
    margin-bottom: 0;
}

/* Problem Section */
.problem-section {
    background: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    margin: 30px 0;
    border: 2px solid var(--gray-100);
    transition: var(--transition);
}

.problem-section:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.problem-section h3 {
    color: var(--secondary);
    margin-bottom: 15px;
    font-size: 1.25rem;
}

.problem-section p {
    color: var(--gray-700);
    line-height: 1.6;
    margin-bottom: 0;
}

/* Service Icons */
.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    margin-bottom: 20px;
    box-shadow: var(--shadow);
}

/* Service Badges */
.service-badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 5px 5px 5px 0;
}

.service-badge.urgent {
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.1), rgba(196, 30, 58, 0.15));
    color: var(--primary);
    border: 1px solid rgba(196, 30, 58, 0.3);
}

.service-badge.important {
    background: linear-gradient(135deg, #fff7ed, #fed7aa);
    color: #ea580c;
    border: 1px solid #fdba74;
}

.service-badge.normal {
    background: linear-gradient(135deg, rgba(22, 163, 74, 0.1), rgba(22, 163, 74, 0.15));
    color: var(--success);
    border: 1px solid rgba(22, 163, 74, 0.3);
}

/* Service Prices */
.service-price-urgent {
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.1), rgba(196, 30, 58, 0.15));
    color: var(--primary);
    padding: 8px 16px;
    border-radius: var(--border-radius);
    font-weight: 700;
    font-size: 0.9rem;
    text-align: center;
    border: 2px solid rgba(196, 30, 58, 0.3);
}

.service-price-medium {
    background: linear-gradient(135deg, #fff7ed, #fed7aa);
    color: #ea580c;
    padding: 8px 16px;
    border-radius: var(--border-radius);
    font-weight: 700;
    font-size: 0.9rem;
    text-align: center;
    border: 2px solid #fdba74;
}

.service-price-normal {
    background: linear-gradient(135deg, rgba(22, 163, 74, 0.1), rgba(22, 163, 74, 0.15));
    color: var(--success);
    padding: 8px 16px;
    border-radius: var(--border-radius);
    font-weight: 700;
    font-size: 0.9rem;
    text-align: center;
    border: 2px solid rgba(22, 163, 74, 0.3);
}

/* Service Hero Sections */
.service-hero {
    background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.service-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/assets/img/roof-pattern.svg') center/cover;
    opacity: 0.03;
}

.service-hero .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.service-hero h1 {
    color: white;
    margin-bottom: 20px;
    font-size: clamp(2rem, 4vw, 3rem);
}

/* Hero Features */
.hero-features {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 30px 0;
}

.hero-features span {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Hero Actions */
.hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

/* Process Steps */
.process-steps {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin: 40px 0;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    left: 25px;
    top: 60px;
    bottom: 60px;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary), var(--primary-dark));
    z-index: 1;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    position: relative;
    z-index: 2;
}

.process-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
    box-shadow: var(--shadow);
    border: 3px solid white;
}

.process-content {
    background: white;
    padding: 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    flex-grow: 1;
    border-left: 4px solid var(--primary);
    transition: var(--transition);
}

.process-content:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-lg);
}

.process-content h4 {
    margin: 0 0 10px 0;
    color: var(--secondary);
    font-size: 1.1rem;
}

.process-content p {
    margin: 0;
    color: var(--gray-700);
    line-height: 1.6;
}

/* ===================================
   Trust Bar & Service Components
   =================================== */

/* Trust Bar */
.trust-bar {
    background: white;
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
    padding: 25px 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}

.trust-items {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.trust-item {
    text-align: center;
    padding: 15px 20px;
    background: linear-gradient(135deg, var(--gray-50), white);
    border-radius: var(--border-radius);
    border: 1px solid var(--gray-100);
    transition: var(--transition);
    min-width: 160px;
    flex: 1;
}

.trust-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
    border-color: var(--primary-light, #fef2f2);
}

.trust-item strong {
    display: block;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 5px;
    line-height: 1.2;
}

.trust-item span {
    font-size: 0.9rem;
    color: var(--gray-600);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Service Features */
.service-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 20px 0;
    padding: 20px;
    background: var(--gray-50);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary);
}

.service-features span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    color: var(--gray-700);
    font-weight: 500;
}

.service-features span::before {
    content: '✓';
    color: var(--success);
    font-weight: 700;
    font-size: 1rem;
}

/* Solution Section */
.solution-section {
    background: linear-gradient(135deg, var(--gray-50), white);
    border-radius: var(--border-radius);
    padding: 40px;
    margin: 30px 0;
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-sm);
}

.solution-section h3 {
    color: var(--secondary);
    margin-bottom: 25px;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.solution-section h4 {
    color: var(--primary);
    margin-bottom: 15px;
    font-size: 1.25rem;
    border-bottom: 2px solid var(--primary-light, #fef2f2);
    padding-bottom: 8px;
}

.solution-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.solution-section li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    color: var(--gray-700);
    line-height: 1.6;
    border-bottom: 1px solid var(--gray-100);
}

.solution-section li:last-child {
    border-bottom: none;
}

.solution-section li::before {
    content: '▶';
    position: absolute;
    left: 8px;
    top: 12px;
    color: var(--primary);
    font-size: 0.8rem;
}

.solution-section li strong {
    color: var(--secondary);
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
    .trust-items {
        gap: 20px;
        flex-direction: column;
    }

    .trust-item {
        min-width: auto;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .trust-item strong {
        font-size: 1.5rem;
    }

    .hero {
        padding: 60px 0;
    }

    .hero-cta {
        gap: 15px;
        flex-direction: column;
        align-items: center;
    }

    .hero-cta .btn {
        width: 100%;
        max-width: 280px;
    }

    .hero-credentials {
        gap: 20px;
        flex-direction: column;
    }

    .service-list li {
        font-size: 0.85rem;
    }

    .problem-header {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .problem-icon {
        width: 40px;
        height: 40px;
    }

    .problem-details {
        padding: 15px;
    }

    .decision-matrix {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .decision-header {
        padding: 20px;
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .decision-icon {
        width: 50px;
        height: 50px;
    }

    .decision-criteria {
        padding: 20px;
    }

    .decision-estimate {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .service-intro {
        padding: 25px 20px;
        margin-bottom: 30px;
    }

    .service-intro h2 {
        font-size: 1.5rem;
    }

    .service-intro p {
        font-size: 1rem;
    }

    .problem-section {
        padding: 20px;
        margin: 20px 0;
    }

    .service-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .service-hero {
        padding: 60px 0;
    }

    .hero-features {
        gap: 15px;
        flex-direction: column;
        align-items: center;
    }

    .hero-features span {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }

    .hero-actions {
        gap: 15px;
        flex-direction: column;
        align-items: center;
    }

    .hero-actions .btn {
        width: 100%;
        max-width: 280px;
    }

    .process-steps::before {
        left: 20px;
        top: 50px;
        bottom: 50px;
    }

    .process-step {
        gap: 15px;
    }

    .process-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .process-content {
        padding: 20px;
    }

    .process-content:hover {
        transform: none;
    }

    .solution-section {
        padding: 25px 20px;
    }

    .solution-section h3 {
        font-size: 1.25rem;
    }

    .solution-section h4 {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .trust-bar {
        padding: 20px 0;
    }

    .trust-items {
        gap: 15px;
    }

    .trust-item {
        padding: 12px 15px;
    }

    .trust-item strong {
        font-size: 1.25rem;
    }

    .trust-item span {
        font-size: 0.8rem;
    }

    .solution-section {
        padding: 20px 15px;
        margin: 20px 0;
    }

    .service-features {
        padding: 15px;
    }
}

/* ===================================
   Process Timeline & Pricing Components
   =================================== */

/* Process Timeline */
.process-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 0;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--primary), var(--primary-dark));
    transform: translateX(-50%);
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.timeline-item:nth-child(odd) {
    align-items: flex-start;
    text-align: left;
    padding-left: 0;
    padding-right: 50%;
}

.timeline-item:nth-child(even) {
    align-items: flex-end;
    text-align: right;
    padding-right: 0;
    padding-left: 50%;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    top: 20px;
    width: 20px;
    height: 20px;
    background: var(--primary);
    border: 4px solid white;
    border-radius: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 0 4px var(--primary-light, #fef2f2);
    z-index: 2;
}

.timeline-item h3 {
    margin-bottom: 10px;
    color: var(--secondary);
    font-size: 1.25rem;
    font-weight: 600;
}

.timeline-item p {
    margin: 0;
    color: var(--gray-700);
    line-height: 1.6;
    background: white;
    padding: 20px;
    border-radius: var(--border-radius);
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-sm);
}

/* Pricing Table */
.pricing-table {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    margin: 30px 0;
    border: 1px solid var(--gray-200);
}

.pricing-row {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 0;
    border-bottom: 1px solid var(--gray-200);
    transition: var(--transition);
}

.pricing-row:hover:not(.header) {
    background: var(--gray-50);
}

.pricing-row.header {
    background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
    color: white;
    font-weight: 600;
}

.pricing-row:last-child {
    border-bottom: none;
}

.pricing-cell {
    padding: 20px;
    display: flex;
    align-items: center;
    border-right: 1px solid var(--gray-200);
}

.pricing-cell:last-child {
    border-right: none;
}

.pricing-row.header .pricing-cell {
    border-right-color: rgba(255,255,255,0.2);
    color: white;
}

.pricing-cell.price-range {
    font-weight: 700;
    color: var(--primary);
    font-size: 1.1rem;
    justify-content: center;
    min-width: 140px;
}

.pricing-cell strong {
    color: var(--secondary);
}

.pricing-cell small {
    color: var(--gray-600);
    font-style: italic;
}

/* Related Grid */
.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.related-card {
    background: white;
    border: 2px solid var(--gray-200);
    border-radius: var(--border-radius);
    padding: 25px;
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.related-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--primary-dark));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.related-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
    text-decoration: none;
    color: inherit;
}

.related-card:hover::before {
    transform: scaleX(1);
}

.related-card h4 {
    margin-bottom: 12px;
    color: var(--secondary);
    font-size: 1.25rem;
    font-weight: 600;
}

.related-card p {
    flex-grow: 1;
    margin-bottom: 20px;
    color: var(--gray-700);
    line-height: 1.5;
}

.related-card .btn {
    margin-top: auto;
    align-self: flex-start;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Process Timeline Mobile */
    .process-timeline::before {
        left: 20px;
    }

    .timeline-item {
        padding-left: 50px;
        padding-right: 20px;
        align-items: flex-start !important;
        text-align: left !important;
    }

    .timeline-dot {
        left: 20px;
        transform: translateX(-50%);
    }

    /* Pricing Table Mobile */
    .pricing-table {
        overflow-x: auto;
    }

    .pricing-row {
        grid-template-columns: 2fr 1fr 1fr;
        min-width: 600px;
    }

    .pricing-cell {
        padding: 15px 10px;
        font-size: 0.9rem;
    }

    /* Related Grid Mobile */
    .related-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .related-card {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .timeline-item {
        padding-left: 40px;
        padding-right: 15px;
    }

    .timeline-item h3 {
        font-size: 1.1rem;
    }

    .timeline-item p {
        padding: 15px;
        font-size: 0.9rem;
    }

    .pricing-row {
        display: block;
        min-width: auto;
    }

    .pricing-cell {
        display: block;
        padding: 12px 15px;
        border-right: none;
        border-bottom: 1px solid var(--gray-200);
    }

    .pricing-cell:last-child {
        border-bottom: none;
    }

    .pricing-cell::before {
        content: attr(data-label);
        font-weight: 600;
        color: var(--secondary);
        display: block;
        margin-bottom: 5px;
    }

    .pricing-row.header .pricing-cell::before {
        display: none;
    }

    .related-card {
        padding: 15px;
    }
}

/* ===================================
   CTA Components & Banners
   =================================== */

/* CTA Box - Beautiful call-to-action */
.cta-box {
    background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
    color: white;
    padding: 50px 40px;
    border-radius: var(--border-radius);
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    margin: 40px 0;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    animation: shimmer 3s infinite;
    pointer-events: none;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.cta-box h2 {
    color: white;
    margin-bottom: 20px;
    font-size: 2rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.cta-box p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-box .emergency-notice {
    background: rgba(196, 30, 58, 0.2);
    border: 2px solid var(--primary);
    border-radius: var(--border-radius);
    padding: 20px;
    margin: 25px auto;
    backdrop-filter: blur(10px);
}

.cta-box .emergency-notice p {
    margin: 0;
    font-size: 1rem;
    color: #ffeeee;
}

/* CTA Services - Fixed the ugly gradient */
.cta-services {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    padding: 50px 40px;
    border-radius: var(--border-radius);
    text-align: center;
    position: relative;
    box-shadow: var(--shadow-lg);
    margin: 40px 0;
    border: 1px solid rgba(255,255,255,0.1);
}

.cta-services::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(255,255,255,0.1), transparent);
    pointer-events: none;
}

.cta-services h3 {
    color: white;
    margin-bottom: 15px;
    font-size: 1.75rem;
    font-weight: 600;
}

.cta-services p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.95;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 25px;
}

.cta-buttons .btn {
    min-width: 200px;
    padding: 15px 30px;
    font-weight: 600;
    font-size: 1.1rem;
    position: relative;
    z-index: 1;
}

/* Guarantee Banner - Professional info banner */
.guarantee-banner {
    background: linear-gradient(135deg, var(--success), #059669);
    color: white;
    padding: 25px 30px;
    border-radius: var(--border-radius);
    margin: 30px 0;
    position: relative;
    box-shadow: var(--shadow);
    border-left: 5px solid #10b981;
}

.guarantee-banner::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1));
    pointer-events: none;
}

.guarantee-banner h3 {
    color: white;
    margin-bottom: 15px;
    font-size: 1.5rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.guarantee-banner p {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.95;
}

/* Alternative banner styles */
.guarantee-banner.warning {
    background: linear-gradient(135deg, var(--warning), #d97706);
    border-left-color: #f59e0b;
}

.guarantee-banner.danger {
    background: linear-gradient(135deg, var(--danger), var(--primary-dark));
    border-left-color: var(--primary);
}

.guarantee-banner.info {
    background: linear-gradient(135deg, #0ea5e9, #0284c7);
    border-left-color: #06b6d4;
}

/* Responsive Design */
@media (max-width: 768px) {
    .cta-box,
    .cta-services {
        padding: 35px 25px;
    }

    .cta-box h2 {
        font-size: 1.75rem;
    }

    .cta-box p,
    .cta-services p {
        font-size: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
        min-width: auto;
    }

    .guarantee-banner {
        padding: 20px;
        text-align: center;
    }

    .guarantee-banner h3 {
        font-size: 1.25rem;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .cta-box,
    .cta-services {
        padding: 25px 20px;
        margin: 30px 0;
    }

    .cta-box h2 {
        font-size: 1.5rem;
    }

    .guarantee-banner {
        padding: 15px;
    }

    .guarantee-banner h3 {
        font-size: 1.1rem;
    }

    .guarantee-banner p {
        font-size: 1rem;
    }
}