/* ============================================
   COGITARE STRATEGISTS - MODERN EDITORIAL THEME
   ============================================ */

:root {
    --primary: #1a1a1a;
    --accent: #ff4d00;
    --accent-light: #ff7a3d;
    --accent-dark: #cc3d00;
    --background: #fafaf8;
    --surface: #ffffff;
    --text: #2a2a2a;
    --text-muted: #6a6a6a;
    --border: #e5e5e5;
}

/* ============================================
   RESET & BASE STYLES
   ============================================ */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--background);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    color: var(--primary);
    line-height: 1.2;
}

h1 {
    font-size: 4rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 2.8rem;
    font-weight: 600;
}

h3 {
    font-size: 1.8rem;
    font-weight: 600;
}

h4 {
    font-size: 1.3rem;
    font-weight: 600;
}

p {
    font-size: 1.1rem;
    line-height: 1.8;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

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

/* ============================================
   UTILITY CLASSES
   ============================================ */

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.section-label {
    display: inline-block;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 20px;
}

.section-label-light {
    display: inline-block;
    font-size: 0.95rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 20px;
}

.section-header {
    margin-bottom: 60px;
}

.section-header.center {
    text-align: center;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn-primary {
    display: inline-block;
    padding: 18px 40px;
    background: var(--accent);
    color: white;
    font-weight: 700;
    font-size: 1.05rem;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 77, 0, 0.3);
}

.btn-secondary {
    display: inline-block;
    padding: 18px 40px;
    background: transparent;
    color: var(--primary);
    font-weight: 700;
    font-size: 1.05rem;
    border: 2px solid var(--primary);
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.btn-light {
    display: inline-block;
    padding: 18px 40px;
    background: white;
    color: var(--primary);
    font-weight: 700;
    font-size: 1.05rem;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-light:hover {
    background: var(--accent);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 77, 0, 0.3);
}

.btn-outline {
    display: inline-block;
    padding: 18px 40px;
    background: transparent;
    color: white;
    font-weight: 700;
    font-size: 1.05rem;
    border: 2px solid white;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

/* ============================================
   NAVIGATION
   ============================================ */

.navbar {
    background: var(--primary);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    letter-spacing: -0.01em;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 45px;
    align-items: center;
}

.nav-link {
    color: white;
    font-weight: 500;
    font-size: 1.05rem;
    position: relative;
    padding-bottom: 5px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

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

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: all 0.3s ease;
}

/* ============================================
   HERO SECTION
   ============================================ */

        .hero {
            padding: 120px 0;
            min-height: 85vh;
            display: flex;
            align-items: center;
        }

        .hero-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .hero-text h1 {
            margin-bottom: 30px;
        }

        .hero-description {
            font-size: 1.3rem;
            line-height: 1.8;
            color: var(--text-muted);
            margin-bottom: 40px;
        }

        .hero-cta {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }

        .hero-visual {
            position: relative;
            height: 550px;
        }

        .visual-card {
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
            border-radius: 8px;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .visual-card::before {
            content: '';
            position: absolute;
            top: 20px;
            left: 20px;
            right: 20px;
            bottom: 20px;
            border: 2px solid rgba(255, 255, 255, 0.3);
            border-radius: 4px;
        }

        .visual-elements {
            position: relative;
            z-index: 2;
            text-align: center;
            color: white;
        }

        .visual-icon {
            width: 120px;
            height: 120px;
            margin: 0 auto 30px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            backdrop-filter: blur(10px);
        }

        .visual-icon svg {
            width: 60px;
            height: 60px;
            stroke: white;
        }

        .visual-text {
            font-family: 'Playfair Display', serif;
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 15px;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        }

        .visual-subtext {
            font-size: 1.1rem;
            opacity: 0.95;
        }

        .floating-shapes {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
        }

        .shape {
            position: absolute;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            animation: float 6s ease-in-out infinite;
        }

        .shape-1 {
            width: 80px;
            height: 80px;
            top: 10%;
            left: 10%;
            animation-delay: 0s;
        }

        .shape-2 {
            width: 60px;
            height: 60px;
            top: 70%;
            right: 15%;
            animation-delay: 2s;
        }

        .shape-3 {
            width: 100px;
            height: 100px;
            bottom: 15%;
            left: 20%;
            animation-delay: 4s;
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0) rotate(0deg);
            }
            50% {
                transform: translateY(-20px) rotate(10deg);
            }
        }


/* ============================================
   AUDIENCE SECTION
   ============================================ */

.audience-section {
    padding: 100px 0;
    background: var(--surface);
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.audience-card {
    background: var(--background);
    padding: 50px 40px;
    border-left: 4px solid var(--accent);
    transition: all 0.3s ease;
    position: relative;
}

.audience-card:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.audience-card.card-highlight {
    background: var(--primary);
    color: white;
    border-left-color: var(--accent);
}

.audience-card.card-highlight h3,
.audience-card.card-highlight p {
    color: white;
}

.audience-card.card-highlight .audience-features li {
    color: rgba(255, 255, 255, 0.9);
}

.audience-number {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--accent);
    opacity: 0.3;
    margin-bottom: 20px;
    font-weight: 700;
}

.audience-number.featured {
    opacity: 0.5;
}

.featured-badge {
    display: inline-block;
    padding: 6px 16px;
    background: var(--accent);
    color: white;
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: 20px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.audience-card h3 {
    margin-bottom: 20px;
}

.audience-card p {
    font-size: 1.05rem;
    margin-bottom: 30px;
}

.audience-features {
    list-style: none;
}

.audience-features li {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
}

.audience-features li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}

.card-accent {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, transparent 50%, var(--accent) 50%);
    opacity: 0.2;
}

/* ============================================
   WHY SECTION
   ============================================ */

.why-section {
    padding: 100px 0;
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.why-description {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin: 30px 0 50px;
}

.why-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.stat-item {
    text-align: center;
    padding: 30px 20px;
    background: var(--surface);
    border-radius: 8px;
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 10px;
}

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

.why-features {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.feature-item {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--accent);
    color: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-text h4 {
    margin-bottom: 10px;
}

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

/* ============================================
   INTERIOR DESIGN SECTION
   ============================================ */

.interior-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary) 0%, #2a2a2a 100%);
    color: white;
}

.interior-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.interior-heading {
    color: white;
    margin-bottom: 30px;
}

.interior-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

.interior-features-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 50px;
}

.interior-feature {
    display: flex;
    gap: 15px;
    align-items: center;
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.05rem;
}

.interior-feature svg {
    color: var(--accent);
    flex-shrink: 0;
}

.interior-visual {
    position: relative;
    height: 500px;
}

.interior-showcase {
    position: relative;
    width: 100%;
    height: 100%;
}

.showcase-item {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
}

.showcase-1 {
    width: 60%;
    height: 70%;
    top: 0;
    left: 0;
    background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent) 100%);
}

.showcase-2 {
    width: 50%;
    height: 60%;
    bottom: 0;
    right: 0;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
}

.showcase-3 {
    width: 40%;
    height: 45%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.15);
    z-index: 10;
}

/* ============================================
   PROCESS SECTION
   ============================================ */

.process-section {
    padding: 100px 0;
    background: var(--surface);
}

.process-grid {
    display: grid;
    grid-template-columns: 2fr, 1fr, 2fr, 1fr, 2fr, 1fr, 2fr;
    gap: 20px;
    align-items: center;
}

.process-step {
    text-align: center;
    padding: 40px 30px;
    background: var(--background);
    border-radius: 8px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.process-step:hover {
    border-color: var(--accent);
    transform: translateY(-5px);
}

.process-number {
    width: 60px;
    height: 60px;
    background: var(--accent);
    color: white;
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.process-step h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

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

.process-arrow {
    font-size: 2rem;
    color: var(--accent);
    text-align: center;
    font-weight: 700;
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
    padding: 100px 0;
    background: var(--primary);
    text-align: center;
}

.cta-content h2 {
    color: white;
    font-size: 3rem;
    margin-bottom: 20px;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.3rem;
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: var(--surface);
    padding: 80px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 60px;
    margin-bottom: 50px;
}

.footer-brand h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 1rem;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.footer-column ul li a:hover {
    color: var(--accent);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--border);
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.8s ease forwards;
}

.fade-in-delay-1 {
    animation: fadeIn 0.8s ease 0.2s forwards;
    opacity: 0;
}

.fade-in-delay-2 {
    animation: fadeIn 0.8s ease 0.4s forwards;
    opacity: 0;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.card-slide-in {
    animation: slideIn 0.8s ease forwards;
}

.card-delay-1 {
    animation: slideIn 0.8s ease 0.2s forwards;
    opacity: 0;
}

.card-delay-2 {
    animation: slideIn 0.8s ease 0.4s forwards;
    opacity: 0;
}

/* ============================================
   PAGE HEADER
   ============================================ */

.page-header {
    padding: 100px 0 60px;
    text-align: center;
    background: var(--surface);
}

.page-header h1 {
    margin-bottom: 20px;
}

.page-description {
    font-size: 1.3rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
}

/* ============================================
   CONTACT SECTION
   ============================================ */

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

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
}

.contact-form-wrapper h2 {
    margin-bottom: 15px;
}

.form-intro {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 40px;
}

/* ============================================
   FORM STYLES
   ============================================ */

.contact-form {
    background: var(--surface);
    padding: 50px;
    border-radius: 8px;
    border-left: 4px solid var(--accent);
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text);
    font-size: 1rem;
}

.form-input {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--border);
    border-radius: 4px;
    font-size: 1rem;
    font-family: 'DM Sans', sans-serif;
    transition: all 0.3s ease;
    background: var(--background);
}

.form-input:focus {
    outline: none;
    border-color: var(--accent);
    background: white;
}

.form-input::placeholder {
    color: var(--text-muted);
    opacity: 0.6;
}

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

select.form-input {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%236a6a6a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    padding-right: 45px;
}

.error-message {
    display: block;
    color: #dc2626;
    font-size: 0.9rem;
    margin-top: 5px;
    min-height: 20px;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 30px;
}

.form-checkbox input[type="checkbox"] {
    margin-top: 4px;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.form-checkbox label {
    font-weight: 400;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 0.95rem;
}

.btn-submit {
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.spinner {
    width: 20px;
    height: 20px;
    animation: spin 1s linear infinite;
}

.spinner-circle {
    stroke: white;
    stroke-dasharray: 50;
    stroke-dashoffset: 0;
    animation: spinCircle 1.5s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

@keyframes spinCircle {
    0% { stroke-dashoffset: 50; }
    50% { stroke-dashoffset: 0; }
    100% { stroke-dashoffset: -50; }
}

.form-message {
    margin-top: 20px;
    padding: 15px 20px;
    border-radius: 4px;
    display: none;
    font-weight: 500;
}

.form-message.success {
    display: block;
    background: #dcfce7;
    color: #166534;
    border: 1px solid #86efac;
}

.form-message.error {
    display: block;
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fca5a5;
}

/* ============================================
   CONTACT INFO CARDS
   ============================================ */

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-card {
    background: var(--surface);
    padding: 35px 30px;
    border-radius: 8px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.info-card:hover {
    border-color: var(--accent);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.info-icon {
    width: 60px;
    height: 60px;
    background: var(--accent);
    color: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.info-card h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.info-card p {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.info-link {
    color: var(--accent);
    font-weight: 600;
    font-size: 1.05rem;
}

.info-link:hover {
    text-decoration: underline;
}

.highlight-card {
    background: linear-gradient(135deg, var(--primary) 0%, #2a2a2a 100%);
    color: white;
    border-color: transparent;
}

.highlight-card h3 {
    color: white;
}

.next-steps {
    list-style: none;
    margin-top: 25px;
}

.next-steps li {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    align-items: flex-start;
}

.next-steps li:last-child {
    margin-bottom: 0;
}

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

.next-steps strong {
    display: block;
    color: white;
    margin-bottom: 5px;
    font-size: 1.05rem;
}

.next-steps p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    margin: 0;
}

/* ============================================
   FAQ SECTION
   ============================================ */

.faq-section {
    padding: 100px 0;
    background: var(--surface);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.faq-item {
    background: var(--background);
    padding: 40px 35px;
    border-radius: 8px;
    border-left: 4px solid var(--accent);
}

.faq-item h4 {
    margin-bottom: 15px;
    color: var(--primary);
}

.faq-item p {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ============================================
   QUOTE PAGE STYLES
   ============================================ */

.quote-section {
    padding: 60px 0 100px;
}

.quote-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: start;
}

.quote-form {
    background: var(--surface);
    padding: 40px;
    border-radius: 8px;
}

.form-section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border);
}

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

.section-title {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--accent);
}

.input-hint {
    display: block;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 5px;
    font-style: italic;
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 15px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    background: var(--background);
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.checkbox-label:hover {
    background: white;
    border-color: var(--accent);
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"]:checked + span,
.checkbox-label:has(input:checked) {
    background: rgba(255, 77, 0, 0.1);
    border-color: var(--accent);
}

/* ============================================
   QUOTE CALCULATOR (RIGHT SIDEBAR)
   ============================================ */

.quote-calculator {
    position: relative;
}

.calculator-sticky {
    position: sticky;
    top: 100px;
    background: linear-gradient(135deg, var(--primary) 0%, #2a2a2a 100%);
    color: white;
    padding: 40px 35px;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.calculator-sticky h2 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 25px;
    text-align: center;
}

.quote-amount {
    text-align: center;
    margin-bottom: 10px;
}

.currency {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent);
    font-family: 'Playfair Display', serif;
}

.amount {
    font-size: 3.5rem;
    font-weight: 700;
    color: black;
    font-family: 'Playfair Display', serif;
    display: inline-block;
    margin-left: 5px;
}

.amount_quote {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    font-family: 'Playfair Display', serif;
    display: inline-block;
    margin-left: 5px;
}

.quote-label {
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    font-size: 1rem;
}

.quote-breakdown {
    background: rgba(255, 255, 255, 0.1);
    padding: 25px 20px;
    border-radius: 6px;
    margin-bottom: 25px;
}

.quote-breakdown h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.breakdown-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    color: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.breakdown-item:last-child {
    border-bottom: none;
    font-weight: 600;
    color: var(--accent);
}

.next-steps-box {
    background: rgba(255, 77, 0, 0.15);
    padding: 20px;
    border-radius: 6px;
    border-left: 3px solid var(--accent);
    margin-bottom: 25px;
}

.next-steps-box h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.next-steps-box p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 10px;
}

.next-steps-box p:last-child {
    margin-bottom: 0;
}

.calculator-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.calculator-actions .btn-secondary {
    width: 100%;
    text-align: center;
    background: white;
    color: var(--primary);
    border: none;
}

.calculator-actions .btn-secondary:hover {
    background: var(--accent);
    color: white;
}

/* ============================================
   PACKAGES PAGE STYLES
   ============================================ */

.packages-section {
    padding: 80px 0 100px;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 80px;
}

.package-card {
    background: var(--surface);
    border-radius: 8px;
    padding: 40px 35px;
    border: 2px solid var(--border);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--accent);
}

.package-popular {
    border-color: var(--accent);
    border-width: 3px;
    box-shadow: 0 10px 30px rgba(255, 77, 0, 0.15);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.package-header {
    text-align: center;
    margin-bottom: 30px;
}

.package-name {
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--primary);
}

.package-tagline {
    color: var(--text-muted);
    font-size: 1.05rem;
}

.package-pricing {
    text-align: center;
    margin-bottom: 35px;
    padding-bottom: 30px;
    border-bottom: 2px solid var(--border);
}

.price-label {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
}

.currency {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
}

.amount {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: black;
    line-height: 1;
}

.custom-price .amount-text {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: black;
}

.package-features {
    flex: 1;
    margin-bottom: 30px;
}

.package-features h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--primary);
}

.features-list {
    list-style: none;
    margin-bottom: 25px;
}

.features-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 1rem;
    line-height: 1.5;
}

.features-list svg {
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 2px;
}

.features-divider {
    height: 1px;
    background: var(--border);
    margin: 25px 0;
}

.base-features-label {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-top: 20px;
}

.base-features li {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.package-ideal {
    background: var(--background);
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 30px;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-muted);
}

.package-ideal strong {
    color: var(--primary);
}

.package-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.package-actions .btn-primary,
.package-actions .btn-secondary {
    width: 100%;
    text-align: center;
}

.btn-text {
    display: inline-block;
    padding: 18px 40px;
    background: var(--accent);
    color: white;
    font-weight: 700;
    font-size: 1.05rem;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-text:hover {
    color: var(--accent-dark);
    text-decoration: underline;
}

/* ============================================
   COMPARISON TABLE
   ============================================ */

.comparison-section {
    padding: 100px 0;
    background: var(--surface);
}

.comparison-table-wrapper {
    overflow-x: auto;
    background: white;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 800px;
}

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

.comparison-table th {
    padding: 25px 20px;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 700;
}

.comparison-table th.feature-column {
    text-align: left;
    width: 35%;
}

.popular-column {
    background: var(--accent);
    position: relative;
}

.comparison-table tbody tr {
    border-bottom: 1px solid var(--border);
}

.comparison-table tbody tr:last-child {
    border-bottom: none;
}

.comparison-table tbody tr:hover {
    background: var(--background);
}

.comparison-table td {
    padding: 20px;
    text-align: center;
}

.feature-name {
    text-align: left;
    font-weight: 600;
    color: var(--text);
}

.feature-value {
    font-size: 1.3rem;
    color: var(--accent);
    font-weight: 700;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1200px) {
    .container {
        padding: 0 30px;
    }

    h1 {
        font-size: 3.5rem;
    }

    h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 992px) {
    .hero-content,
    .why-grid,
    .interior-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

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

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

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-links {
        grid-template-columns: repeat(3, 1fr);
    }

    h1 {
        font-size: 3rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

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

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

    .calculator-sticky {
        position: relative;
        top: 0;
    }

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

    .package-popular {
        order: -1;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--primary);
        flex-direction: column;
        padding: 40px;
        gap: 30px;
        transition: left 0.3s ease;
        align-items: flex-start;
    }

    .nav-menu.active {
        left: 0;
    }

    .mobile-toggle {
        display: flex;
    }

    .mobile-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }

    .mobile-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }

    .hero {
        padding: 80px 0;
    }

    .hero-visual {
        height: 400px;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

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

    .hero-cta .btn-primary,
    .hero-cta .btn-secondary {
        width: 100%;
        text-align: center;
    }

    .why-stats {
        grid-template-columns: 1fr;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }

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

    .cta-buttons .btn-primary,
    .cta-buttons .btn-outline {
        width: 100%;
    }

    .contact-form {
        padding: 35px 25px;
    }

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

    .quote-form {
        padding: 30px 20px;
    }

    .amount {
        font-size: 3rem;
    }
}

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

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .audience-card,
    .process-step {
        padding: 30px 25px;
    }

    .interior-visual {
        height: 350px;
    }
}

/* Mobile Comparison Cards */
.comparison-mobile {
    display: none;
}

@media (max-width: 768px) {
    /* Hide table on mobile */
    .comparison-table {
        display: none;
    }
    
    /* Show mobile cards */
    .comparison-mobile {
        display: block;
    }
    
    .comparison-package {
        background: white;
        border-radius: 8px;
        padding: 30px 25px;
        margin-bottom: 30px;
        border: 2px solid var(--border);
    }
    
    .comparison-package.popular {
        border-color: var(--accent);
        border-width: 3px;
    }
    
    .comparison-package-header {
        text-align: center;
        padding-bottom: 20px;
        margin-bottom: 20px;
        border-bottom: 2px solid var(--border);
    }
    
    .comparison-package-header h3 {
        font-size: 1.8rem;
        color: var(--primary);
        margin-bottom: 5px;
    }
    
    .comparison-package-header.popular h3 {
        color: var(--accent);
    }
    
    .comparison-feature-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 0;
        border-bottom: 1px solid var(--background);
    }
    
    .comparison-feature-row:last-child {
        border-bottom: none;
    }
    
    .comparison-feature-name {
        font-weight: 600;
        color: var(--text);
        font-size: 1rem;
    }
    
    .comparison-feature-value {
        font-size: 1.2rem;
        color: var(--accent);
        font-weight: 700;
    }
}
