/* CSS Reset & Variables */
:root {
    --bg-primary: #0a0a0c;
    --bg-secondary: #121216;
    --bg-tertiary: #191922;
    --bg-glass: rgba(18, 18, 22, 0.75);
    --border-color: rgba(255, 255, 255, 0.08);
    --border-glow: rgba(220, 38, 38, 0.25);
    
    --primary: #dc2626;
    --primary-hover: #ef4444;
    --primary-dark: #991b1b;
    --primary-glow: rgba(220, 38, 38, 0.5);
    
    --text-primary: #f4f4f6;
    --text-secondary: #9ea2b0;
    --text-muted: #646876;
    --white: #ffffff;
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.5);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.6);
    --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.8);
    --shadow-glow: 0 0 20px rgba(220, 38, 38, 0.35);
    
    --container-width: 1200px;
    --header-height: 80px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-primary);
}

body {
    font-family: var(--font-body);
    color: var(--text-primary);
    background-color: var(--bg-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Scrollbar Style */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
    background: #27272a;
    border-radius: 5px;
    border: 2px solid var(--bg-primary);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* Common Typography & Layout elements */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--white);
}

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

ul {
    list-style: none;
}

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

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

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

/* Section Common Styling */
section {
    padding: 100px 0;
    position: relative;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    margin-bottom: 16px;
}

.section-tag::before {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--primary);
    box-shadow: var(--shadow-glow);
}

.section-tag.light {
    color: var(--white);
}
.section-tag.light::before {
    background-color: var(--white);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.section-title {
    font-size: 2.75rem;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 50px auto;
}

.section-desc {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

/* Button System */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 12px 28px;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition-normal);
    border: none;
    outline: none;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.05rem;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(220, 38, 38, 0.3);
}

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

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

.btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: var(--white);
    transform: translateY(-2px);
}

.btn-block {
    display: flex;
    width: 100%;
}

.glow-button {
    position: relative;
    overflow: hidden;
}

.glow-button::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 30%;
    height: 200%;
    background: rgba(255, 255, 255, 0.25);
    transform: rotate(30deg);
    transition: none;
    opacity: 0;
}

.glow-button:hover::after {
    left: 130%;
    transition: all 0.7s ease-in-out;
    opacity: 1;
}

/* Header & Navigation */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background-color: var(--bg-glass);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: var(--transition-normal);
}

.main-header.scrolled {
    height: 70px;
    background-color: rgba(10, 10, 12, 0.95);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.header-container {
    max-width: var(--container-width);
    height: 100%;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-link {
    display: flex;
    align-items: center;
}

.header-logo {
    height: 68px;
    width: auto;
    filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.25));
    transition: var(--transition-normal);
}

.main-header.scrolled .header-logo {
    height: 54px;
}

.nav-menu {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-secondary);
    position: relative;
    padding: 8px 0;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition-fast);
}

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

.nav-cta {
    padding: 8px 20px;
    font-size: 0.9rem;
}
.nav-cta::after {
    display: none;
}

/* Dropdown styling */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
}

.dropdown-toggle i {
    font-size: 0.75rem;
    transition: var(--transition-fast);
}

.dropdown:hover .dropdown-toggle i {
    transform: rotate(185deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    width: 240px;
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-lg);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-item {
    display: block;
    padding: 10px 20px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    transition: var(--transition-fast);
}

.dropdown-item:hover {
    color: var(--white);
    background-color: rgba(255, 255, 255, 0.03);
    padding-left: 24px;
    border-left: 3px solid var(--primary);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 24px;
}

.phone-link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    color: var(--white);
    background-color: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-color);
    padding: 10px 18px;
    border-radius: 8px;
}

.phone-link i {
    color: var(--primary);
}

.phone-link:hover {
    border-color: var(--primary);
    box-shadow: 0 0 15px rgba(220, 38, 38, 0.15);
    background-color: rgba(220, 38, 38, 0.05);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.mobile-toggle .bar {
    width: 100%;
    height: 2px;
    background-color: var(--white);
    border-radius: 2px;
    transition: var(--transition-normal);
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: var(--header-height);
    background-image: url('hero_bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 10, 12, 0.95) 30%, rgba(10, 10, 12, 0.7) 100%);
    z-index: 1;
}

.hero-container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 720px;
    animation: fadeInUp 1s ease-out;
}

.hero-tagline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    margin-bottom: 24px;
}

.hero-tagline .bullet {
    display: block;
    width: 6px;
    height: 6px;
    background-color: var(--primary);
    border-radius: 50%;
    box-shadow: var(--shadow-glow);
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    letter-spacing: -1.5px;
    margin-bottom: 24px;
    line-height: 1.1;
}

.highlight-text {
    color: var(--primary);
    position: relative;
    display: inline-block;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.5;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 60px;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 32px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background-color: var(--border-color);
}

.hero-bottom-bar {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-indicator .mouse {
    width: 26px;
    height: 42px;
    border: 2px solid var(--text-muted);
    border-radius: 15px;
    display: block;
    position: relative;
}

.scroll-indicator .wheel {
    width: 4px;
    height: 8px;
    background-color: var(--primary);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollMouse 1.8s infinite;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scrollMouse {
    0% { top: 8px; opacity: 1; }
    50% { top: 22px; opacity: 0; }
    100% { top: 8px; opacity: 1; }
}

/* About Section */
.about-section {
    background-color: var(--bg-primary);
}

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

.about-image-wrapper {
    position: relative;
}

.about-image-wrapper .glow-bg {
    position: absolute;
    top: 10%;
    left: 10%;
    width: 80%;
    height: 80%;
    background-color: var(--primary);
    filter: blur(100px);
    opacity: 0.15;
    z-index: 1;
}

.about-image {
    position: relative;
    z-index: 2;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-lg);
    max-height: 500px;
    object-fit: cover;
    width: 100%;
}

.floating-badge {
    position: absolute;
    bottom: -30px;
    right: -20px;
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-lg), 0 0 20px rgba(0, 0, 0, 0.4);
    padding: 20px 30px;
    border-radius: 12px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.floating-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    border: 1px solid transparent;
    background: linear-gradient(135deg, rgba(220,38,38,0.3) 0%, rgba(220,38,38,0) 100%) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
    pointer-events: none;
}

.badge-num {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 4px;
}

.badge-text {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
}

.about-features {
    margin: 32px 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.about-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--text-secondary);
}

.about-features li i {
    color: var(--primary);
    margin-top: 4px;
    font-size: 1.1rem;
}

.about-features li strong {
    color: var(--white);
}

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

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

.service-card {
    background-color: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: var(--transition-normal);
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(220, 38, 38, 0.4);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.7), 0 0 15px rgba(220, 38, 38, 0.1);
}

.card-image-container {
    height: 200px;
    position: relative;
    overflow: hidden;
}

/* Fallback image styles if user images not present */
.card-image-placeholder {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: var(--transition-slow);
}

.service-card:hover .card-image-placeholder {
    transform: scale(1.08);
}

.flake-bg {
    background-image: linear-gradient(135deg, rgba(30, 30, 40, 0.8), rgba(15, 15, 20, 0.95)), url('flake_process.jpg');
}
.garage-bg {
    background-image: linear-gradient(135deg, rgba(30, 30, 40, 0.85), rgba(15, 15, 20, 0.98)), url('garage_finished.jpg');
}
.patio-bg {
    background-image: linear-gradient(135deg, rgba(40, 30, 30, 0.8), rgba(20, 15, 15, 0.95)), url('patio_finished.jpg');
}
.basement-bg {
    background-image: linear-gradient(135deg, rgba(30, 40, 35, 0.8), rgba(15, 20, 18, 0.95)), url('metallic_process.jpg');
}

.card-price-tag {
    position: absolute;
    top: 16px;
    right: 16px;
    background-color: var(--primary);
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 12px;
    border-radius: 4px;
    box-shadow: var(--shadow-sm);
}

.card-content {
    padding: 30px;
    position: relative;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background-color: rgba(220, 38, 38, 0.1);
    border: 1px solid rgba(220, 38, 38, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.25rem;
    margin-bottom: 20px;
    transition: var(--transition-normal);
}

.service-card:hover .card-icon {
    background-color: var(--primary);
    color: var(--white);
    box-shadow: var(--shadow-glow);
}

.card-title {
    font-size: 1.35rem;
    margin-bottom: 12px;
}

.card-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
    flex-grow: 1;
}

.card-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
}

.card-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.card-features li i {
    color: var(--primary);
    font-size: 0.8rem;
}

.card-link {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--white);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    align-self: flex-start;
}

.card-link i {
    font-size: 0.8rem;
    transition: var(--transition-fast);
}

.card-link:hover {
    color: var(--primary-hover);
}

.card-link:hover i {
    transform: translateX(4px);
}

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

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    margin-top: 50px;
}

.step-card {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 30px;
    position: relative;
    overflow: hidden;
    transition: var(--transition-normal);
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background-color: var(--border-color);
    transition: var(--transition-normal);
}

.step-card:hover {
    transform: translateY(-5px);
    border-color: rgba(220, 38, 38, 0.25);
    box-shadow: var(--shadow-md);
}

.step-card:hover::before {
    background-color: var(--primary);
    box-shadow: 0 0 10px var(--primary);
}

.step-badge {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.05);
    line-height: 1;
    margin-bottom: 20px;
    transition: var(--transition-normal);
}

.step-card:hover .step-badge {
    color: var(--primary);
    text-shadow: 0 0 10px rgba(220, 38, 38, 0.3);
}

.step-title {
    font-size: 1.15rem;
    margin-bottom: 10px;
}

.step-desc {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* Gallery Section */
.gallery-section {
    background-color: var(--bg-secondary);
}

.gallery-section .section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 50px;
}

.gallery-filters {
    display: flex;
    gap: 8px;
    background-color: var(--bg-primary);
    border: 1px solid var(--border-color);
    padding: 6px;
    border-radius: 8px;
}

.filter-btn {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--text-secondary);
    background-color: transparent;
    border: none;
    outline: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition-fast);
}

.filter-btn:hover {
    color: var(--white);
}

.filter-btn.active {
    color: var(--white);
    background-color: var(--primary);
    box-shadow: 0 2px 10px rgba(220, 38, 38, 0.3);
}

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

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4/3;
    border: 1px solid var(--border-color);
    cursor: pointer;
    transition: var(--transition-normal);
}

.gallery-img-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

.gallery-img-placeholder {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: var(--transition-slow);
}

/* Highly aesthetic placeholder gradients resembling floors */
.flake-gray-floor {
    background-image: url('garage_finished.jpg');
}
.dark-flake-floor {
    background-image: url('flake_process.jpg');
}
.patio-steps {
    background-image: url('steps_finished.jpg');
}
.metallic-basement {
    background-image: url('metallic_process.jpg');
}
.red-metallic-floor {
    background-image: linear-gradient(135deg, #7f1d1d 0%, #111827 60%, #b91c1c 100%);
}
.pool-deck {
    background-image: url('patio_finished.jpg');
}

.gallery-overlay-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(10, 10, 12, 0.9) 0%, rgba(10, 10, 12, 0.2) 60%, rgba(10, 10, 12, 0) 100%);
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    opacity: 0;
    transition: var(--transition-normal);
    z-index: 2;
}

.gallery-item:hover {
    transform: translateY(-5px);
    border-color: rgba(220, 38, 38, 0.3);
    box-shadow: var(--shadow-md);
}

.gallery-item:hover .gallery-img-placeholder {
    transform: scale(1.08);
}

.gallery-item:hover .gallery-overlay-hover {
    opacity: 1;
}

.gallery-category {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--primary);
    margin-bottom: 6px;
}

.gallery-item-title {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 0;
}

.view-large-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    opacity: 0;
    transform: scale(0.8);
    transition: var(--transition-normal);
}

.gallery-item:hover .view-large-btn {
    opacity: 1;
    transform: scale(1);
}

/* Warranty Section */
.warranty-section {
    background-color: var(--bg-primary);
    border-top: 1px solid var(--border-color);
}

.warranty-wrapper {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 60px;
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 60px;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.warranty-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background-color: var(--primary);
    filter: blur(150px);
    opacity: 0.08;
    pointer-events: none;
}

.warranty-badge-container {
    display: flex;
    justify-content: center;
}

.warranty-shield {
    width: 200px;
    height: 220px;
    background-color: rgba(220, 38, 38, 0.05);
    border: 2px solid var(--primary);
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-glow);
    position: relative;
}

.warranty-shield i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.warranty-years {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}

.warranty-label {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--text-secondary);
    margin-top: 4px;
}

.warranty-desc {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.warranty-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.warranty-feature {
    display: flex;
    gap: 16px;
}

.warranty-feature i {
    font-size: 1.25rem;
    color: var(--primary);
    margin-top: 2px;
}

.warranty-feature h4 {
    font-size: 1.05rem;
    margin-bottom: 6px;
}

.warranty-feature p {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* Reputation Section */
.reputation-section {
    background-color: var(--bg-secondary);
}

.google-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-primary);
    border: 1px solid var(--border-color);
    padding: 12px 24px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.badge-stars {
    display: flex;
    align-items: center;
    gap: 10px;
}

.rating-num {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--white);
}

.stars {
    color: #fbbf24;
    display: flex;
    gap: 2px;
}

.rating-count {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.reviews-slider-wrapper {
    display: flex;
    align-items: center;
    gap: 30px;
    max-width: 800px;
    margin: 40px auto 30px auto;
    position: relative;
}

.reviews-slider-container {
    width: 100%;
    overflow: hidden;
    border-radius: 16px;
}

.reviews-slider {
    display: flex;
    transition: transform var(--transition-slow);
    width: 100%;
}

.review-card {
    min-width: 100%;
    background-color: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 40px;
    box-sizing: border-box;
    opacity: 0.4;
    transition: var(--transition-slow);
}

.review-card.active {
    opacity: 1;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: var(--shadow-sm);
}

.reviewer-name {
    font-size: 1.1rem;
    margin-bottom: 2px;
}

.review-date {
    font-size: 0.8rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
}

.text-red {
    color: var(--primary);
}

.review-stars {
    color: #fbbf24;
    font-size: 0.95rem;
    margin-bottom: 16px;
}

.review-text {
    font-style: italic;
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.6;
}

.slider-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--bg-primary);
    border: 1px solid var(--border-color);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
    z-index: 10;
}

.slider-btn:hover {
    border-color: var(--primary);
    background-color: rgba(220, 38, 38, 0.05);
    color: var(--primary);
    box-shadow: 0 0 15px rgba(220, 38, 38, 0.15);
}

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

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition-fast);
}

.dot.active {
    background-color: var(--primary);
    width: 24px;
    border-radius: 4px;
    box-shadow: 0 0 8px var(--primary);
}

/* Contact Form Section */
.contact-section {
    background-color: var(--bg-primary);
}

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

.contact-info-panel {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-panel-desc {
    color: var(--text-secondary);
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

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

.contact-method-item .icon-box {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background-color: rgba(220, 38, 38, 0.06);
    border: 1px solid rgba(220, 38, 38, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.1rem;
    transition: var(--transition-normal);
}

.contact-method-item:hover .icon-box {
    background-color: var(--primary);
    color: var(--white);
    box-shadow: var(--shadow-glow);
}

.contact-method-item span {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 4px;
}

.contact-value {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
}

a.contact-value:hover {
    color: var(--primary);
}

.contact-footer-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    padding: 16px 20px;
    border-radius: 8px;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.contact-footer-badge i {
    color: var(--primary);
    font-size: 1.25rem;
}

.contact-form-panel {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-lg);
    position: relative;
}

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

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

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

label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.required {
    color: var(--primary);
}

input, select, textarea {
    background-color: var(--bg-primary);
    border: 1px solid var(--border-color);
    color: var(--white);
    padding: 12px 16px;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition-fast);
}

input:focus, select:focus, textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.15);
}

select option {
    background-color: var(--bg-secondary);
    color: var(--white);
}

/* Footer Section */
.main-footer {
    background-color: var(--bg-primary);
    border-top: 1px solid var(--border-color);
    padding: 80px 0 30px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-logo {
    height: 75px;
    margin-bottom: 24px;
    filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.25));
}

.footer-desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 24px;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.social-links a:hover {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--white);
    box-shadow: var(--shadow-glow);
}

.footer-title {
    font-size: 1.15rem;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 8px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--primary);
}

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

.footer-links a {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

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

.footer-contact-info li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.footer-contact-info i {
    color: var(--primary);
    margin-top: 4px;
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 30px;
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Lightbox Modal */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(6, 6, 8, 0.95);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 3rem;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition-fast);
}

.lightbox-close:hover {
    color: var(--white);
}

.lightbox-content-wrapper {
    max-width: 800px;
    width: 90%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    animation: zoomIn 0.4s ease-out;
}

.lightbox-img-placeholder {
    width: 100%;
    aspect-ratio: 4/3;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.lightbox-info h4 {
    font-size: 1.5rem;
    margin-bottom: 4px;
}

.lightbox-info p {
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Responsive Styling */
@media (max-width: 1024px) {
    .section-title {
        font-size: 2.25rem;
    }
    .hero-title {
        font-size: 3rem;
    }
    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .warranty-wrapper {
        grid-template-columns: 1fr;
        padding: 40px;
        gap: 40px;
    }
    .warranty-badge-container {
        justify-content: flex-start;
    }
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .mobile-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: var(--header-height);
        left: -100%;
        width: 100%;
        height: calc(100vh - var(--header-height));
        background-color: var(--bg-primary);
        border-top: 1px solid var(--border-color);
        transition: var(--transition-normal);
        padding: 40px 24px;
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
        width: 100%;
    }
    
    .dropdown-menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        background-color: transparent;
        border: none;
        padding: 10px 0 0 16px;
        display: none;
    }
    
    .dropdown.active .dropdown-menu {
        display: block;
    }
    
    .header-right {
        gap: 16px;
    }
    
    .phone-link span {
        display: none;
    }
    
    .phone-link {
        padding: 10px;
        border-radius: 50%;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-stats {
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .reviews-slider-wrapper {
        gap: 10px;
    }
    
    .review-card {
        padding: 24px;
    }
    
    .form-row-2 {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    .hero-actions .btn {
        width: 100%;
    }
}

/* Additional Brand Integration (Logo Incorporations) */
.hero-logo-badge {
    margin-bottom: 24px;
    display: flex;
    justify-content: flex-start;
}

.hero-brand-logo {
    max-height: 150px;
    width: auto;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.3)) drop-shadow(0 4px 12px rgba(0, 0, 0, 0.5));
    animation: fadeInUp 0.8s ease-out;
}

.form-header-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: 30px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border-color);
}

.form-logo {
    max-height: 90px;
    width: auto;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.3));
}

.form-header-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.5px;
}

/* Subtle Watermarks using Logo */
.about-section::after {
    content: '';
    position: absolute;
    bottom: 40px;
    right: 40px;
    width: 280px;
    height: 280px;
    background-image: url('logo_v5.png');
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.02;
    pointer-events: none;
    z-index: 0;
}

.warranty-wrapper::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: -60px;
    width: 320px;
    height: 320px;
    background-image: url('logo_v5.png');
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.015;
    pointer-events: none;
    z-index: 0;
}

/* Branded Custom Dividers */
.brand-divider {
    height: 2px;
    background: linear-gradient(to right, transparent, var(--primary) 25%, #3f3f46 50%, var(--primary) 75%, transparent);
    width: 100%;
    opacity: 0.35;
    position: relative;
    z-index: 10;
}

