/* ===================================
   RESET & BASE STYLES
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Color Palette */
    --primary-dark: #2B2B2B;
    --primary-white: #FFFFFF;
    --light-gray: #F5F5F5;
    --accent-blue: #007BFF;
    --accent-orange: #FF6B00;
    --text-gray: #666666;

    /* Typography */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Lato', sans-serif;

    /* Spacing */
    --section-padding: 80px 0;
    --container-max: 1200px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--primary-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: var(--section-padding);
}

.bg-light {
    background-color: var(--light-gray);
}

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

/* ===================================
   TYPOGRAPHY
   =================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 15px;
    color: var(--text-gray);
}

/* ===================================
   BUTTONS
   =================================== */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-family: var(--font-heading);
    font-weight: 600;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 16px;
    text-align: center;
}

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

.btn-primary:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}

.btn-large {
    padding: 18px 42px;
    font-size: 18px;
}

/* ===================================
   HEADER
   =================================== */
.header {
    background-color: var(--primary-white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1000;
}

.header.sticky {
    position: sticky;
    top: 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo img {
    height: 60px;
    width: auto;
}

.nav {
    display: flex;
    gap: 30px;
}

.nav-link {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--primary-dark);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 15px;
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-blue);
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 20px;
}

.phone-link {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--primary-dark);
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

.phone-link:hover {
    color: var(--accent-blue);
}

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

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-dark);
    transition: all 0.3s ease;
}

/* ===================================
   HERO SECTION
   =================================== */
.hero {
    position: relative;
    height: 90vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(43, 43, 43, 0.50) 0%, rgba(0, 0, 0, 0.40) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--primary-white);
}

.urgency-badge {
    display: inline-block;
    background-color: #ef4444;
    color: var(--primary-white);
    padding: 8px 20px;
    border-radius: 25px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.4);
}

.hero-title {
    color: var(--primary-white);
    font-size: 2.8rem;
    margin-bottom: 25px;
    line-height: 1.2;
}

.hero-subtitle {
    color: var(--primary-white);
    font-size: 1.2rem;
    margin-bottom: 35px;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    font-size: 1.1rem !important;
    padding: 20px 45px !important;
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
}

.hero-guarantee {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    margin-top: 20px;
    font-family: var(--font-heading);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* ===================================
   TRUST BAR
   =================================== */
.trust-bar {
    background-color: var(--primary-white);
    padding: 40px 0;
    border-bottom: 1px solid #e0e0e0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.trust-items {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

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

.trust-badge {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background-color: var(--light-gray);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.trust-badge:hover {
    background-color: #e8f4ff;
    transform: translateY(-2px);
}

.badge-icon {
    width: 50px;
    height: 50px;
    background-color: var(--accent-blue);
    color: var(--primary-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    flex-shrink: 0;
}

.badge-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.badge-text strong {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--primary-dark);
    font-size: 1rem;
}

.badge-text span {
    font-size: 0.85rem;
    color: var(--text-gray);
}

/* ===================================
   SECTION TITLES
   =================================== */
.section-title {
    text-align: center;
    margin-bottom: 50px;
    color: var(--primary-dark);
}

.section-title.white {
    color: var(--primary-white);
}

/* ===================================
   SERVICES OVERVIEW
   =================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--primary-white);
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: block;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.service-icon {
    font-size: 60px;
    margin-bottom: 20px;
}

.service-card h3 {
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.service-card p {
    margin-bottom: 20px;
}

.learn-more {
    color: var(--accent-blue);
    font-family: var(--font-heading);
    font-weight: 600;
}

/* ===================================
   COST CALCULATOR
   =================================== */
.calculator-section {
    background-color: var(--light-gray);
}

.calculator-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--primary-white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Live Estimate Display */
.live-estimate-display {
    text-align: center;
    padding: 30px;
    background: linear-gradient(135deg, var(--accent-blue) 0%, #0056b3 100%);
    border-radius: 10px;
    margin-bottom: 40px;
    box-shadow: 0 4px 20px rgba(0, 123, 255, 0.3);
}

.live-estimate-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 10px;
    font-family: var(--font-heading);
}

.live-estimate-amount {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-white);
    font-family: var(--font-heading);
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.live-estimate-note {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    margin: 0;
    font-style: italic;
}

/* Estimate Confirmed Box */
.estimate-confirmed-box {
    background-color: #f0f9ff;
    border: 2px solid #0ea5e9;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    margin-bottom: 30px;
}

.check-icon {
    width: 60px;
    height: 60px;
    background-color: #10b981;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 20px;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.estimate-confirmed-box h3 {
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.no-obligation {
    text-align: center;
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-top: 15px;
    font-style: italic;
}

.calculator-step {
    margin-bottom: 40px;
}

.calculator-step h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--primary-dark);
}

.helper-text {
    font-size: 14px;
    color: var(--text-gray);
    font-style: italic;
    margin-bottom: 15px;
}

/* Button Group (Project Type) */
.button-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
}

.option-btn {
    background-color: var(--light-gray);
    border: 2px solid transparent;
    padding: 20px 15px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-heading);
    font-weight: 600;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.option-btn:hover {
    background-color: #e8e8e8;
}

.option-btn.active {
    background-color: var(--accent-blue);
    color: var(--primary-white);
    border-color: var(--accent-blue);
}

.option-icon {
    font-size: 32px;
}

/* Slider */
.slider-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

#area-slider {
    flex: 1;
    height: 8px;
    border-radius: 5px;
    outline: none;
    -webkit-appearance: none;
    background: linear-gradient(to right, var(--accent-blue) 0%, var(--accent-blue) 15%, #ddd 15%, #ddd 100%);
}

#area-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--accent-blue);
    cursor: pointer;
}

#area-slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--accent-blue);
    cursor: pointer;
    border: none;
}

#area-input {
    width: 100px;
    padding: 10px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    text-align: center;
}

.unit {
    font-weight: 600;
    color: var(--text-gray);
}

/* Radio Group */
.radio-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    padding: 15px;
    border: 2px solid #ddd;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.radio-label:hover {
    background-color: var(--light-gray);
}

.radio-label input[type="radio"] {
    display: none;
}

.radio-custom {
    width: 20px;
    height: 20px;
    border: 2px solid #ddd;
    border-radius: 50%;
    position: relative;
}

.radio-label input[type="radio"]:checked ~ .radio-custom {
    border-color: var(--accent-blue);
}

.radio-label input[type="radio"]:checked ~ .radio-custom::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--accent-blue);
}

.radio-label input[type="radio"]:checked ~ span:last-child {
    font-weight: 600;
    color: var(--primary-dark);
}

/* Finish Options */
.finish-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
}

.finish-option input[type="radio"] {
    display: none;
}

.finish-card {
    border: 3px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.finish-option:hover .finish-card {
    border-color: #aaa;
}

.finish-option input[type="radio"]:checked ~ .finish-card {
    border-color: var(--accent-blue);
    background-color: rgba(0, 123, 255, 0.05);
}

.finish-preview {
    width: 100%;
    height: 120px;
    border-radius: 5px;
    margin-bottom: 12px;
}

.finish-preview.solid-color {
    background: linear-gradient(135deg, #434343 0%, #000000 100%);
}

.finish-preview.flake {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    position: relative;
    overflow: hidden;
}

.finish-preview.flake::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle, white 1px, transparent 1px), radial-gradient(circle, #ff6b6b 1px, transparent 1px), radial-gradient(circle, #4ecdc4 1px, transparent 1px);
    background-size: 15px 15px, 20px 20px, 18px 18px;
    background-position: 0 0, 5px 5px, 10px 10px;
    opacity: 0.6;
}

.finish-preview.metallic {
    background: linear-gradient(135deg, #c9d6ff 0%, #e2e2e2 50%, #c9d6ff 100%);
    position: relative;
    overflow: hidden;
}

.finish-preview.metallic::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.8) 50%, transparent 70%);
    animation: shine 3s infinite;
    pointer-events: none;
}

@keyframes shine {
    0%, 100% {
        transform: translateX(-100%);
    }
    50% {
        transform: translateX(100%);
    }
}

.finish-card span {
    display: block;
    font-family: var(--font-heading);
    font-weight: 600;
    margin-bottom: 5px;
}

.finish-price {
    color: var(--accent-blue);
    font-size: 14px;
}

/* Calculator Result */
.calculator-result {
    margin-top: 40px;
    padding: 30px;
    background-color: var(--light-gray);
    border-radius: 8px;
    text-align: center;
}

.estimate-range {
    font-size: 2.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--accent-blue);
    margin: 20px 0;
}

.disclaimer {
    font-size: 14px;
    color: var(--text-gray);
    font-style: italic;
    margin-bottom: 30px;
}

.lead-capture {
    background-color: var(--primary-white);
    padding: 30px;
    border-radius: 8px;
    margin-top: 20px;
}

.lead-capture h4 {
    margin-bottom: 10px;
}

.lead-capture p {
    margin-bottom: 25px;
}

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

.estimate-form input {
    padding: 14px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    font-family: var(--font-body);
}

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

#calculate-btn {
    margin-top: 20px;
    width: 100%;
}

/* ===================================
   WHY CHOOSE US
   =================================== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    text-align: center;
    padding: 30px 20px;
}

.feature-icon {
    font-size: 60px;
    margin-bottom: 20px;
}

.feature-card h3 {
    margin-bottom: 15px;
}

/* ===================================
   PORTFOLIO PREVIEW
   =================================== */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 1200px) {
    .portfolio-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
}

.portfolio-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

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

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, transparent 100%);
    padding: 30px 20px 20px;
    color: var(--primary-white);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
    transform: translateY(0);
}

.portfolio-overlay h3 {
    color: var(--primary-white);
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.portfolio-overlay p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    margin: 0;
}

.placeholder-image {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-white);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 18px;
}

/* ===================================
   TESTIMONIALS
   =================================== */
.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    min-height: 250px;
}

.testimonial-card {
    background-color: var(--primary-white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    display: none;
}

.testimonial-card.active {
    display: block;
}

.stars {
    color: #ffc107;
    font-size: 24px;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--primary-dark);
    margin-bottom: 20px;
    line-height: 1.8;
}

.testimonial-author {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--accent-blue);
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background-color: var(--accent-blue);
    width: 30px;
    border-radius: 6px;
}

/* ===================================
   FINAL CTA
   =================================== */
.final-cta {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #1a1a1a 100%);
}

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

.btn-phone {
    background-color: #10b981;
    color: var(--primary-white);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-phone:hover {
    background-color: #059669;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
}

.phone-icon {
    font-size: 1.2em;
}

/* ===================================
   FOOTER
   =================================== */
.footer {
    background-color: var(--primary-dark);
    color: var(--primary-white);
    padding: 60px 0 20px;
}

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

.footer-logo {
    height: 50px;
    margin-bottom: 20px;
}

.footer-mission {
    color: #cccccc;
    font-size: 14px;
}

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

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

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a,
.footer-contact a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

.footer-contact li {
    margin-bottom: 10px;
    color: #cccccc;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.social-link {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: var(--accent-blue);
}

.trust-statement {
    color: #cccccc;
    font-size: 13px;
    font-style: italic;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #444;
    color: #cccccc;
    font-size: 14px;
}

/* ===================================
   MEET THE BROTHERS SECTION
   =================================== */
.meet-brothers {
    background-color: var(--primary-white);
}

.brothers-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.brothers-photos {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.brother-photo {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.brother-photo:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.brother-photo img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
}

.brother-name {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
    padding: 30px 15px 15px;
    color: var(--primary-white);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.2rem;
    text-align: center;
}

.brothers-content h2 {
    margin-bottom: 20px;
    font-size: 2.2rem;
}

.brothers-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 15px;
}

.brothers-content .learn-more-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-blue);
    font-family: var(--font-heading);
    font-weight: 600;
    text-decoration: none;
    font-size: 1.05rem;
    margin-top: 10px;
    transition: all 0.3s ease;
}

.brothers-content .learn-more-link:hover {
    gap: 12px;
}

/* ===================================
   PAGE HEADER (for inner pages)
   =================================== */
.page-header {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #1a1a1a 100%);
    padding: 80px 0 60px;
    text-align: center;
    color: var(--primary-white);
}

.page-header h1 {
    color: var(--primary-white);
    margin-bottom: 15px;
}

.page-subtitle {
    font-size: 1.2rem;
    color: var(--primary-white);
    opacity: 0.9;
}

/* ===================================
   SERVICES DETAILED
   =================================== */
.services-detailed .service-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.services-detailed .service-section.reverse {
    direction: rtl;
}

.services-detailed .service-section.reverse > * {
    direction: ltr;
}

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

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

.service-features li {
    padding: 10px 0;
    font-size: 1.05rem;
    color: var(--text-gray);
}

.service-image {
    width: 100%;
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

/* ===================================
   PROCESS SECTION
   =================================== */
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.process-step {
    text-align: center;
}

.step-number {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background-color: var(--accent-blue);
    color: var(--primary-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-family: var(--font-heading);
    font-weight: 700;
}

.process-step h3 {
    margin-bottom: 15px;
}

/* ===================================
   CTA SECTION
   =================================== */
.cta-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #1a1a1a 100%);
}

/* ===================================
   ABOUT PAGE
   =================================== */
.about-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

.about-content h2 {
    margin-bottom: 25px;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.about-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.about-image.full {
    grid-column: 1 / -1;
    height: 400px;
}

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

.value-card {
    background-color: var(--primary-white);
    padding: 35px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.value-icon {
    font-size: 50px;
    margin-bottom: 15px;
}

.value-card h3 {
    margin-bottom: 15px;
}

/* ===================================
   GALLERY PAGE
   =================================== */
.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 28px;
    background-color: var(--light-gray);
    border: 2px solid transparent;
    border-radius: 5px;
    font-family: var(--font-heading);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 15px;
}

.filter-btn:hover {
    background-color: #e0e0e0;
}

.filter-btn.active {
    background-color: var(--accent-blue);
    color: var(--primary-white);
    border-color: var(--accent-blue);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 25px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
    opacity: 1;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
    padding: 25px;
    color: var(--primary-white);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    color: var(--primary-white);
    margin-bottom: 5px;
    font-size: 1.3rem;
}

.gallery-overlay p {
    color: var(--primary-white);
    font-size: 14px;
}

/* ===================================
   CONTACT PAGE
   =================================== */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-form-container h2 {
    margin-bottom: 30px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--primary-dark);
    font-size: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    font-family: var(--font-body);
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-blue);
}

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

.contact-info h2 {
    margin-bottom: 30px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-icon {
    font-size: 28px;
    color: var(--accent-blue);
}

.contact-item-content h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.contact-item-content p {
    font-size: 1.05rem;
    color: var(--text-gray);
}

.contact-item-content a {
    color: var(--accent-blue);
    text-decoration: none;
    font-weight: 600;
}

.contact-item-content a:hover {
    text-decoration: underline;
}

.service-area-box {
    background-color: var(--light-gray);
    padding: 25px;
    border-radius: 8px;
    margin-top: 20px;
}

.service-area-box h4 {
    margin-bottom: 10px;
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */
@media (max-width: 968px) {
    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--primary-white);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        gap: 15px;
    }

    .nav.active {
        display: flex;
    }

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

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .calculator-container {
        padding: 25px;
    }

    .button-group {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-detailed .service-section,
    .about-hero,
    .contact-container,
    .brothers-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .services-detailed .service-section.reverse {
        direction: ltr;
    }
}

@media (max-width: 640px) {
    .header-cta {
        gap: 10px;
    }

    .phone-link {
        display: none;
    }

    .hero-title {
        font-size: 2rem;
    }

    .trust-items {
        flex-direction: column;
    }

    .services-grid,
    .features-grid,
    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .finish-group {
        grid-template-columns: 1fr;
    }

    .slider-container {
        flex-direction: column;
        align-items: stretch;
    }

    #area-input {
        width: 100%;
    }
}

/* ===================================
   FAQ PAGE
   =================================== */
.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-category {
    margin-bottom: 50px;
}

.faq-category-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--accent-blue);
    border-bottom: 3px solid var(--accent-blue);
    padding-bottom: 15px;
}

.faq-item {
    background-color: var(--primary-white);
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
}

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

.faq-question:hover {
    color: var(--accent-blue);
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--accent-blue);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 15px;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

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

.faq-answer p,
.faq-answer ul {
    padding: 0 25px 20px 25px;
    color: var(--text-gray);
    line-height: 1.8;
}

.faq-answer ul {
    list-style: none;
    padding-left: 40px;
}

.faq-answer ul li {
    position: relative;
    margin-bottom: 10px;
}

.faq-answer ul li::before {
    content: '✓';
    position: absolute;
    left: -25px;
    color: var(--accent-blue);
    font-weight: bold;
}

.faq-answer a {
    color: var(--accent-blue);
    text-decoration: underline;
}

.faq-answer a:hover {
    color: #0056b3;
}

.faq-cta {
    text-align: center;
    background: linear-gradient(135deg, var(--light-gray) 0%, #e0e0e0 100%);
    padding: 60px 40px;
    border-radius: 15px;
    margin-top: 60px;
}

.faq-cta h2 {
    margin-bottom: 15px;
}

.faq-cta p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: var(--text-gray);
}

@media (max-width: 768px) {
    .faq-question {
        font-size: 1rem;
        padding: 15px 20px;
    }

    .faq-answer p,
    .faq-answer ul {
        padding: 0 20px 15px 20px;
    }

    .faq-answer ul {
        padding-left: 35px;
    }
}
