/* Civic Windows & Doors - Main Stylesheet */
/* Long-Form Funnel Layout - Mobile First */

:root {
    --primary: #1a4d5c;
    --primary-dark: #0f2f38;
    --accent: #d4a853;
    --accent-hover: #c49843;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f8f9fa;
    --bg-cream: #fdfbf7;
    --white: #ffffff;
    --border: #e5e7eb;
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    font-size: 16px;
    background: var(--white);
}

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

a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    color: var(--primary-dark);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

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

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation - Floating Style */
.nav-wrapper {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: calc(100% - 40px);
    max-width: 900px;
}

.main-nav {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 12px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: var(--shadow);
}

.nav-logo {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--primary-dark);
}

.nav-links {
    display: none;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-dark);
}

.nav-links a:hover {
    color: var(--accent);
}

.nav-toggle {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 5px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--primary-dark);
    transition: 0.3s;
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--white);
    z-index: 999;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu a {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-dark);
}

.mobile-close {
    position: absolute;
    top: 30px;
    right: 30px;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--primary-dark);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-align: center;
}

.btn-primary {
    background: var(--accent);
    color: var(--white);
}

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

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

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

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-large {
    padding: 18px 45px;
    font-size: 1.1rem;
}

.btn-small {
    padding: 10px 20px;
    font-size: 0.9rem;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--bg-cream) 0%, var(--white) 100%);
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 500;
    width: fit-content;
}

.hero h1 {
    font-size: 2.8rem;
    line-height: 1.2;
}

.hero h1 span {
    color: var(--accent);
}

.hero-text {
    font-size: 1.15rem;
    color: var(--text-light);
    max-width: 500px;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 10px;
}

.hero-image {
    margin-top: 40px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.hero-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

/* Sections Base */
section {
    padding: 70px 0;
}

.section-label {
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 10px;
}

.section-title {
    margin-bottom: 20px;
}

.section-subtitle {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 40px;
}

/* Problem Section */
.problem-section {
    background: var(--primary-dark);
    color: var(--white);
}

.problem-section h2 {
    color: var(--white);
}

.problem-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 40px;
}

.problem-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.problem-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: rgba(212, 168, 83, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.problem-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--accent);
}

.problem-text h4 {
    color: var(--white);
    margin-bottom: 8px;
}

.problem-text p {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
}

/* Story Section */
.story-section {
    background: var(--white);
}

.story-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.story-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.story-image img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.story-text p {
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.story-highlight {
    background: var(--bg-cream);
    border-left: 4px solid var(--accent);
    padding: 25px;
    border-radius: 0 12px 12px 0;
    margin: 30px 0;
}

.story-highlight p {
    font-style: italic;
    font-size: 1.1rem;
    margin: 0;
    color: var(--primary-dark);
}

/* Benefits Section */
.benefits-section {
    background: var(--bg-light);
}

.benefits-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.benefit-card {
    background: var(--white);
    padding: 30px;
    border-radius: 16px;
    box-shadow: var(--shadow);
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.benefit-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
}

.benefit-content h4 {
    margin-bottom: 10px;
}

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

/* Services Section */
.services-section {
    background: var(--white);
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.service-card {
    background: var(--bg-light);
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-image {
    height: 200px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-content {
    padding: 25px;
}

.service-content h3 {
    margin-bottom: 10px;
}

.service-content p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.service-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid var(--border);
}

.price-value {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-dark);
}

.price-note {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* Testimonials */
.testimonials-section {
    background: var(--bg-cream);
    padding: 80px 0;
}

.testimonial-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.testimonial-card {
    background: var(--white);
    padding: 35px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    position: relative;
}

.testimonial-quote {
    font-size: 3rem;
    color: var(--accent);
    opacity: 0.3;
    position: absolute;
    top: 15px;
    left: 25px;
    font-family: Georgia, serif;
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 25px;
    padding-top: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.author-info h5 {
    font-size: 1rem;
    margin-bottom: 3px;
}

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

.testimonial-rating {
    display: flex;
    gap: 3px;
    margin-top: 5px;
}

.testimonial-rating svg {
    width: 16px;
    height: 16px;
    fill: var(--accent);
}

/* Trust Section */
.trust-section {
    background: var(--white);
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-bottom: 50px;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--bg-light);
    padding: 15px 25px;
    border-radius: 12px;
}

.trust-badge svg {
    width: 28px;
    height: 28px;
    stroke: var(--primary);
}

.trust-badge span {
    font-weight: 600;
    font-size: 0.95rem;
}

.trust-stats {
    display: flex;
    flex-direction: column;
    gap: 30px;
    text-align: center;
}

.stat-item {
    padding: 25px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 5px;
}

.stat-label {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Process Section */
.process-section {
    background: var(--primary);
    color: var(--white);
}

.process-section h2 {
    color: var(--white);
}

.process-section .section-subtitle {
    color: rgba(255,255,255,0.7);
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.process-step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.step-number {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: var(--accent);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.step-content h4 {
    color: var(--white);
    margin-bottom: 8px;
}

.step-content p {
    color: rgba(255,255,255,0.75);
    font-size: 0.95rem;
}

/* CTA Banner */
.cta-banner {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
    padding: 60px 0;
    text-align: center;
}

.cta-banner h2 {
    color: var(--white);
    margin-bottom: 15px;
}

.cta-banner p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.cta-banner .btn {
    background: var(--white);
    color: var(--primary-dark);
}

.cta-banner .btn:hover {
    background: var(--bg-light);
}

/* Form Section */
.form-section {
    background: var(--bg-light);
    padding: 80px 0;
}

.form-wrapper {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.form-info h2 {
    margin-bottom: 20px;
}

.form-info p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.form-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-feature {
    display: flex;
    align-items: center;
    gap: 12px;
}

.form-feature svg {
    width: 22px;
    height: 22px;
    stroke: var(--accent);
}

.form-feature span {
    font-size: 0.95rem;
}

.contact-form {
    background: var(--white);
    padding: 35px;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--border);
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(26, 77, 92, 0.1);
}

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

.form-submit {
    width: 100%;
    margin-top: 10px;
}

/* Urgency Section */
.urgency-section {
    background: #fef3cd;
    padding: 40px 0;
}

.urgency-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: center;
}

.urgency-icon {
    font-size: 2.5rem;
}

.urgency-text h3 {
    color: #856404;
    margin-bottom: 8px;
}

.urgency-text p {
    color: #856404;
    font-size: 0.95rem;
}

/* FAQ Section */
.faq-section {
    background: var(--white);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: var(--bg-light);
    border-radius: 12px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    background: none;
    border: none;
    text-align: left;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    font-family: inherit;
    color: var(--primary-dark);
}

.faq-question svg {
    width: 20px;
    height: 20px;
    stroke: var(--primary);
    transition: transform 0.3s ease;
    min-width: 20px;
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

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

.faq-answer p {
    padding: 0 25px 20px;
    color: var(--text-light);
    font-size: 0.95rem;
}

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

/* Guarantee Section */
.guarantee-section {
    background: var(--bg-cream);
}

.guarantee-box {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    text-align: center;
}

.guarantee-icon {
    width: 80px;
    height: 80px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.guarantee-icon svg {
    width: 40px;
    height: 40px;
    stroke: var(--white);
}

.guarantee-box h3 {
    margin-bottom: 15px;
}

.guarantee-box p {
    color: var(--text-light);
    font-size: 1.05rem;
}

/* Footer */
.main-footer {
    background: var(--primary-dark);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand h3 {
    color: var(--white);
    margin-bottom: 15px;
}

.footer-brand p {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
}

.footer-links h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 20px;
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
}

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

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.footer-contact svg {
    width: 18px;
    height: 18px;
    stroke: var(--accent);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    flex-direction: column;
    gap: 15px;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
}

.footer-legal {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.footer-legal a {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
}

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

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    padding: 15px 20px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
    z-index: 900;
    display: none;
}

.sticky-cta.visible {
    display: block;
}

.sticky-cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    max-width: 1200px;
    margin: 0 auto;
}

.sticky-cta-text {
    font-weight: 600;
    font-size: 0.9rem;
}

.sticky-cta .btn {
    padding: 12px 25px;
    font-size: 0.9rem;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--primary-dark);
    color: var(--white);
    padding: 20px;
    z-index: 1001;
    display: none;
}

.cookie-banner.visible {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cookie-text {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.9);
}

.cookie-text a {
    color: var(--accent);
}

.cookie-buttons {
    display: flex;
    gap: 15px;
}

.cookie-accept,
.cookie-reject {
    padding: 10px 25px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    border: none;
}

.cookie-accept {
    background: var(--accent);
    color: var(--white);
}

.cookie-reject {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.3);
    color: var(--white);
}

/* Thanks Page */
.thanks-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 20px;
}

.thanks-content {
    max-width: 600px;
}

.thanks-icon {
    width: 100px;
    height: 100px;
    background: #d4edda;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.thanks-icon svg {
    width: 50px;
    height: 50px;
    stroke: #28a745;
}

.thanks-content h1 {
    margin-bottom: 20px;
}

.thanks-content p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.thanks-service {
    background: var(--bg-light);
    padding: 20px;
    border-radius: 12px;
    margin: 30px 0;
}

.thanks-service span {
    font-weight: 600;
    color: var(--primary);
}

/* Inner Pages */
.page-header {
    background: var(--primary);
    padding: 140px 0 60px;
    text-align: center;
}

.page-header h1 {
    color: var(--white);
}

.page-header p {
    color: rgba(255,255,255,0.8);
    margin-top: 15px;
}

.page-content {
    padding: 60px 0;
}

.page-content h2 {
    margin-top: 40px;
    margin-bottom: 20px;
}

.page-content h3 {
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-content p {
    margin-bottom: 15px;
    color: var(--text-light);
}

.page-content ul {
    margin-left: 25px;
    margin-bottom: 20px;
}

.page-content li {
    margin-bottom: 8px;
    color: var(--text-light);
}

/* About Page */
.about-hero {
    background: linear-gradient(135deg, var(--bg-cream) 0%, var(--white) 100%);
    padding: 140px 0 80px;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.about-text h1 {
    margin-bottom: 20px;
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 15px;
}

.about-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.values-section {
    background: var(--bg-light);
}

.values-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.value-card {
    background: var(--white);
    padding: 30px;
    border-radius: 16px;
    box-shadow: var(--shadow);
}

.value-card h3 {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.value-card svg {
    width: 24px;
    height: 24px;
    stroke: var(--accent);
}

.value-card p {
    color: var(--text-light);
}

/* Services Page */
.services-hero {
    background: var(--primary);
    padding: 140px 0 60px;
    text-align: center;
}

.services-hero h1 {
    color: var(--white);
    margin-bottom: 15px;
}

.services-hero p {
    color: rgba(255,255,255,0.8);
}

.services-detail {
    padding: 80px 0;
}

.service-detail-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-bottom: 40px;
}

.service-detail-image {
    height: 250px;
    overflow: hidden;
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-detail-content {
    padding: 30px;
}

.service-detail-content h2 {
    margin-bottom: 15px;
}

.service-detail-content p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 25px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-dark);
    list-style: none;
}

.service-features svg {
    width: 18px;
    height: 18px;
    stroke: var(--accent);
}

.service-detail-price {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.service-detail-price .price-value {
    font-size: 1.8rem;
}

/* Contact Page */
.contact-hero {
    background: var(--primary);
    padding: 140px 0 60px;
    text-align: center;
}

.contact-hero h1 {
    color: var(--white);
}

.contact-section {
    padding: 80px 0;
}

.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.contact-info-card {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 16px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-info-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--white);
}

.contact-info-text h4 {
    margin-bottom: 8px;
}

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

/* Media Queries */
@media (min-width: 768px) {
    h1 { font-size: 3rem; }
    h2 { font-size: 2.5rem; }

    .nav-links {
        display: flex;
    }

    .nav-toggle {
        display: none;
    }

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

    .hero-cta {
        flex-direction: row;
    }

    .hero-image img {
        height: 400px;
    }

    .problem-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .problem-item {
        width: calc(50% - 15px);
    }

    .story-content {
        flex-direction: row;
        align-items: center;
    }

    .story-image {
        flex: 1;
    }

    .story-text {
        flex: 1;
    }

    .benefits-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .benefit-card {
        width: calc(50% - 10px);
    }

    .services-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .service-card {
        width: calc(50% - 15px);
    }

    .testimonial-wrapper {
        flex-direction: row;
    }

    .testimonial-card {
        flex: 1;
    }

    .trust-stats {
        flex-direction: row;
        justify-content: center;
    }

    .stat-item {
        flex: 1;
    }

    .process-steps {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .process-step {
        width: calc(50% - 15px);
    }

    .form-wrapper {
        flex-direction: row;
        align-items: flex-start;
    }

    .form-info {
        flex: 1;
    }

    .contact-form {
        flex: 1;
    }

    .urgency-content {
        flex-direction: row;
        text-align: left;
        align-items: center;
    }

    .footer-grid {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-brand {
        max-width: 300px;
    }

    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }

    .cookie-content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .sticky-cta-text {
        font-size: 1rem;
    }

    .about-content {
        flex-direction: row;
        align-items: center;
    }

    .about-text {
        flex: 1;
    }

    .about-image {
        flex: 1;
    }

    .values-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .value-card {
        width: calc(50% - 15px);
    }

    .contact-grid {
        flex-direction: row;
    }

    .contact-details {
        flex: 1;
    }

    .contact-form-wrapper {
        flex: 1;
    }
}

@media (min-width: 1024px) {
    .hero h1 {
        font-size: 4rem;
    }

    .problem-item {
        width: calc(25% - 20px);
    }

    .benefit-card {
        width: calc(33.333% - 15px);
    }

    .service-card {
        width: calc(33.333% - 20px);
    }

    .process-step {
        width: calc(25% - 23px);
    }

    .value-card {
        width: calc(33.333% - 20px);
    }
}
