/* ============================================
   BIG DADDY BUILDERS - CUSTOM STYLES
   Bold Red/White/Blue Construction Theme
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@300;400;500;600;700;800&display=swap');

/* Font Utility Classes */
.font-bebas {
    font-family: 'Bebas Neue', sans-serif;
}

/* CSS Variables */
:root {
    --red-primary: #ed2024;
    --red-dark: #c71a1d;
    --red-light: #ff3337;
    --blue-primary: #2e3192;
    --blue-dark: #1f2265;
    --blue-light: #4145b0;
    --black: #000000;
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--gray-900);
    background: var(--white);
    overflow-x: hidden;
}

/* ============================================
   NAVIGATION
   ============================================ */

#main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.nav-stripe {
    height: 4px;
    background: linear-gradient(90deg, var(--red-primary) 0%, var(--blue-primary) 100%);
}

.logo-container {
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.logo-container:hover {
    transform: scale(1.05);
}

.nav-link {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.1rem;
    letter-spacing: 1px;
    color: var(--gray-900);
    text-decoration: none;
    position: relative;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--red-primary);
    transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--red-primary);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    background: linear-gradient(135deg, var(--red-primary) 0%, var(--red-dark) 100%);
    color: var(--white);
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.1rem;
    letter-spacing: 1px;
    text-decoration: none;
    border-radius: 0;
    clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(237, 32, 36, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(237, 32, 36, 0.4);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-btn span {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--red-primary);
    transition: all 0.3s ease;
}

.mobile-menu-btn:hover span {
    background: var(--red-dark);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 350px;
    height: 100vh;
    background: var(--white);
    z-index: 2000;
    transition: right 0.4s ease;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.2);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 3px solid var(--red-primary);
}

.mobile-close-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--red-primary);
    cursor: pointer;
    padding: 0.5rem;
    transition: transform 0.3s ease;
}

.mobile-close-btn:hover {
    transform: rotate(90deg);
}

.mobile-menu-links {
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mobile-menu-links a {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.2rem;
    letter-spacing: 1px;
    color: var(--gray-900);
    text-decoration: none;
    border-left: 3px solid transparent;
    transition: all 0.3s ease;
}

.mobile-menu-links a:hover {
    background: var(--gray-100);
    border-left-color: var(--red-primary);
    color: var(--red-primary);
    transform: translateX(5px);
}

.mobile-menu-links a.mobile-cta {
    background: linear-gradient(135deg, var(--red-primary) 0%, var(--red-dark) 100%);
    color: var(--white);
    border-left: none;
    margin-top: 1rem;
    clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
}

.mobile-menu-links a.mobile-cta:hover {
    transform: translateX(0) scale(1.02);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 6rem;
    overflow: hidden;
}

.hero-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(46, 49, 146, 0.6375) 0%,
            rgba(0, 0, 0, 0.675) 50%,
            rgba(237, 32, 36, 0.6375) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    padding: 3rem 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: none;
    border-top: 2px solid rgba(255, 255, 255, 0.2);
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    padding: 0.75rem 1.5rem;
    margin-bottom: 2rem;
    clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
    animation: fadeInUp 0.8s ease;
}

.hero-badge i {
    color: var(--red-primary);
    font-size: 1.2rem;
}

.hero-badge span {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 0.95rem;
    letter-spacing: 2px;
    color: var(--white);
}

.hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 8vw, 5rem);
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 1.5rem;
    text-shadow: 2px 4px 10px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-title span {
    color: var(--red-primary);
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: var(--gray-200);
    max-width: 700px;
    margin-bottom: 2.5rem;
    line-height: 1.8;
    text-shadow: 1px 2px 5px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 4rem;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.primary-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.125rem 2.5rem;
    background: linear-gradient(135deg, var(--red-primary) 0%, var(--red-dark) 100%);
    color: var(--white);
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.2rem;
    letter-spacing: 1.5px;
    text-decoration: none;
    clip-path: polygon(12px 0, 100% 0, calc(100% - 12px) 100%, 0 100%);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(237, 32, 36, 0.4);
}

.primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(237, 32, 36, 0.5);
}

.secondary-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.125rem 2.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: none;
    border-top: 2px solid rgba(255, 255, 255, 0.3);
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.2rem;
    letter-spacing: 1.5px;
    text-decoration: none;
    clip-path: polygon(12px 0, 100% 0, calc(100% - 12px) 100%, 0 100%);
    transition: all 0.3s ease;
}

.secondary-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-top-color: rgba(255, 255, 255, 0.5);
    border-bottom-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

/* Trust Bar */
.trust-bar {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    padding: 1.5rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0;
    animation: fadeInUp 0.8s ease 0.8s both;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--white);
}

.trust-item i {
    font-size: 1.5rem;
    color: var(--red-primary);
    flex-shrink: 0;
}

.trust-item span {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1rem;
    letter-spacing: 1px;
    white-space: nowrap;
}

.trust-divider {
    width: 2px;
    height: 30px;
    background: rgba(255, 255, 255, 0.3);
    flex-shrink: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .trust-bar {
        gap: 2rem;
        padding: 1.25rem 1rem;
    }

    .trust-divider {
        display: none;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   SERVICES SECTION
   ============================================ */

.services-section {
    position: relative;
    padding: 6rem 0;
    background: var(--gray-50);
}

.angle-divider-top,
.angle-divider-bottom {
    position: absolute;
    left: 0;
    right: 0;
    height: 80px;
    overflow: hidden;
}

.angle-divider-top {
    top: 0;
}

.angle-divider-bottom {
    bottom: 0;
}

.angle-divider-top::before,
.angle-divider-bottom::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 100%;
    background: var(--white);
    transform-origin: bottom left;
}

.angle-divider-top::before {
    transform: skewY(-2deg);
}

.angle-divider-bottom::before {
    transform: skewY(2deg);
}

.angle-divider-top.white::before,
.angle-divider-bottom.white::before {
    background: var(--blue-primary);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.badge-container {
    margin-bottom: 1rem;
}

.section-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, var(--red-primary) 0%, var(--red-dark) 100%);
    color: var(--white);
    font-family: 'Bebas Neue', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 2px;
    clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
}

.section-badge.white {
    background: linear-gradient(135deg, var(--white) 0%, var(--gray-100) 100%);
    color: var(--blue-primary);
}

.section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--gray-900);
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.section-title.white {
    color: var(--white);
}

.section-description {
    font-size: 1.2rem;
    color: var(--gray-600);
    max-width: 700px;
    margin: 0 auto;
}

.services-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--red-primary);
    color: var(--white);
    font-family: 'Bebas Neue', sans-serif;
    font-size: 0.95rem;
    letter-spacing: 1.5px;
    margin-bottom: 3rem;
    clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
}

.services-tag.blue {
    background: var(--blue-primary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 5rem;
}

.service-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-top: 4px solid var(--red-primary);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    clip-path: polygon(12px 0, 100% 0, calc(100% - 12px) 100%, 0 100%);
    transition: all 0.3s ease;
}

.service-icon.aluminum {
    background: linear-gradient(135deg, var(--red-primary) 0%, var(--red-dark) 100%);
}

.service-icon.concrete {
    background: linear-gradient(135deg, var(--blue-primary) 0%, var(--blue-dark) 100%);
}

.service-icon.pavers {
    background: linear-gradient(135deg, var(--gray-700) 0%, var(--gray-900) 100%);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-icon i {
    font-size: 2.5rem;
    color: var(--white);
}

.service-card h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    color: var(--gray-900);
    margin-bottom: 0.75rem;
    letter-spacing: 1px;
}

.service-desc {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
}

.service-divider {
    width: 60px;
    height: 3px;
    background: var(--red-primary);
    margin-bottom: 1.5rem;
}

.service-list {
    list-style: none;
    padding: 0;
}

.service-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: var(--gray-700);
    font-size: 0.95rem;
}

.service-list i {
    color: var(--red-primary);
    margin-top: 0.25rem;
    flex-shrink: 0;
}

/* Coming Soon Section */
.coming-soon-wrapper {
    margin-top: 4rem;
}

.coming-soon-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.coming-card {
    background: var(--white);
    padding: 2rem;
    text-align: center;
    border: 2px dashed var(--blue-primary);
    transition: all 0.3s ease;
}

.coming-card:hover {
    border-style: solid;
    transform: translateY(-5px);
}

.coming-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--blue-primary);
    color: var(--white);
    font-size: 2rem;
    clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
}

.coming-card h4 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.3rem;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.coming-card p {
    color: var(--gray-600);
    font-size: 0.9rem;
}

/* ============================================
   ABOUT SECTION
   ============================================ */

.about-section {
    padding: 6rem 0;
    background: var(--white);
}

.about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--gray-900);
    margin-bottom: 2rem;
    letter-spacing: 2px;
}

.about-text p {
    color: var(--gray-700);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.leadership-box {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.1) 0%, rgba(30, 58, 138, 0.1) 100%);
    border-left: 4px solid var(--red-primary);
    margin: 2rem 0;
}

.leadership-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--red-primary);
    color: var(--white);
    font-size: 1.5rem;
    clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
}

.leadership-box div {
    color: var(--gray-800);
    line-height: 1.7;
}

.leadership-box strong {
    color: var(--red-primary);
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.stat-card {
    padding: 2rem;
    text-align: center;
    background: linear-gradient(135deg, var(--red-primary) 0%, var(--red-dark) 100%);
    color: var(--white);
    clip-path: polygon(15px 0, 100% 0, calc(100% - 15px) 100%, 0 100%);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: scale(1.05);
}

.stat-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 4rem;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1rem;
    letter-spacing: 1.5px;
    opacity: 0.9;
}

.about-image-wrapper {
    position: relative;
    height: 100%;
    min-height: 500px;
}

.about-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(31, 51, 91, 0.3) 0%, rgba(196, 30, 35, 0.3) 100%),
        url('images/BDB\ \(119\).jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    clip-path: polygon(30px 0, 100% 0, calc(100% - 30px) 100%, 0 100%);
}

.about-image i {
    font-size: 10rem;
    color: rgba(255, 255, 255, 0.2);
}

/* ============================================
   WHY US SECTION
   ============================================ */

.why-us-section {
    position: relative;
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--blue-primary) 0%, var(--blue-dark) 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

.feature-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2.5rem 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.feature-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--red-primary);
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
}

.feature-card h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
}

/* Promise Section */
.promise-section {
    padding: 3rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    clip-path: polygon(20px 0, 100% 0, calc(100% - 20px) 100%, 0 100%);
}

.promise-section h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    color: var(--white);
    text-align: center;
    margin-bottom: 2rem;
    letter-spacing: 2px;
}

.promise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.promise-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--white);
}

.promise-item i {
    color: var(--red-primary);
    font-size: 1.3rem;
    flex-shrink: 0;
}

.promise-item span {
    font-size: 1.05rem;
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
    position: relative;
    padding: 5rem 0;
    background: var(--white);
    overflow: hidden;
}

.cta-stripe {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--red-primary) 0%, var(--blue-primary) 100%);
}

.cta-content {
    text-align: center;
}

.cta-content h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--gray-900);
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.cta-content p {
    font-size: 1.2rem;
    color: var(--gray-600);
    margin-bottom: 2rem;
}

.cta-large-btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 3rem;
    background: linear-gradient(135deg, var(--red-primary) 0%, var(--red-dark) 100%);
    color: var(--white);
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.3rem;
    letter-spacing: 2px;
    text-decoration: none;
    clip-path: polygon(15px 0, 100% 0, calc(100% - 15px) 100%, 0 100%);
    transition: all 0.3s ease;
    box-shadow: 0 6px 25px rgba(237, 32, 36, 0.3);
}

.cta-large-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 30px rgba(237, 32, 36, 0.4);
}

/* ============================================
   CONTACT SECTION
   ============================================ */

.contact-section {
    padding: 6rem 0;
    background: var(--gray-50);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
}

.contact-form {
    background: var(--white);
    padding: 3rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full {
    grid-column: 1 / -1;
}

.form-group label {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 0.95rem;
    letter-spacing: 1px;
    color: var(--gray-700);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.875rem 1rem;
    border: 2px solid var(--gray-300);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--red-primary);
}

.form-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    padding: 1.125rem 2rem;
    background: linear-gradient(135deg, var(--red-primary) 0%, var(--red-dark) 100%);
    color: var(--white);
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.2rem;
    letter-spacing: 1.5px;
    border: none;
    clip-path: polygon(12px 0, 100% 0, calc(100% - 12px) 100%, 0 100%);
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(237, 32, 36, 0.3);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--white);
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.12);
}

.info-icon {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--red-primary) 0%, var(--red-dark) 100%);
    color: var(--white);
    font-size: 1.5rem;
    clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
}

.info-text h4 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.2rem;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.info-text p {
    color: var(--gray-600);
    line-height: 1.6;
}

.why-box {
    padding: 2rem;
    background: linear-gradient(135deg, var(--blue-primary) 0%, var(--blue-dark) 100%);
    color: var(--white);
    clip-path: polygon(15px 0, 100% 0, calc(100% - 15px) 100%, 0 100%);
}

.why-box h4 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.why-box ul {
    list-style: none;
    padding: 0;
}

.why-box li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
}

.why-box i {
    color: var(--red-primary);
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: var(--white);
    color: var(--gray-700);
    border-top: 4px solid var(--red-primary);
}

.footer-main {
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.footer-logo {
    height: 80px;
    margin-bottom: 1.5rem;
}

.footer-desc {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: var(--gray-600);
}

.footer-tagline {
    color: var(--red-primary);
    font-weight: 600;
    font-size: 1.05rem;
}

.footer-col h4 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.3rem;
    color: var(--black);
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col li {
    margin-bottom: 0.75rem;
}

.footer-col a {
    color: var(--gray-600);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: var(--red-primary);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-100);
    color: var(--gray-700);
    font-size: 1.2rem;
    transition: all 0.3s ease;
    clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
}

.social-links a:hover {
    background: var(--red-primary);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-bottom {
    padding: 2rem 0;
    border-top: 1px solid var(--gray-200);
    text-align: center;
    color: var(--gray-600);
}

/* ============================================
   SCROLL TO TOP
   ============================================ */

.scroll-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--red-primary) 0%, var(--red-dark) 100%);
    color: var(--white);
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
    box-shadow: 0 4px 15px rgba(237, 32, 36, 0.3);
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(237, 32, 36, 0.4);
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {

    .about-layout,
    .contact-layout {
        grid-template-columns: 1fr;
    }

    .trust-bar {
        justify-content: center;
    }

    .trust-divider {
        display: none;
    }
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .primary-btn,
    .secondary-btn {
        width: 100%;
        justify-content: center;
    }

    .stats-row {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   SCROLL ANIMATION STYLES
   ============================================ */

/* Smooth scrolling enhancement */
html {
    scroll-behavior: smooth;
}

/* Initial state for fade elements */
.fade-element {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
        transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Animated state */
.fade-element.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Section animation */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.section-visible .animate-on-scroll {
    opacity: 1;
    transform: translateY(0);
}

/* Service cards stagger animation */
.service-card.animate-in:nth-child(1) {
    transition-delay: 0s;
}

.service-card.animate-in:nth-child(2) {
    transition-delay: 0.15s;
}

.service-card.animate-in:nth-child(3) {
    transition-delay: 0.3s;
}

/* Feature cards stagger */
.feature-card.animate-in:nth-child(1) {
    transition-delay: 0s;
}

.feature-card.animate-in:nth-child(2) {
    transition-delay: 0.1s;
}

.feature-card.animate-in:nth-child(3) {
    transition-delay: 0.2s;
}

.feature-card.animate-in:nth-child(4) {
    transition-delay: 0.3s;
}

.feature-card.animate-in:nth-child(5) {
    transition-delay: 0.4s;
}

.feature-card.animate-in:nth-child(6) {
    transition-delay: 0.5s;
}

/* Stat cards animation */
.stat-card.animate-in {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.stat-card.animate-in:nth-child(1) {
    transition-delay: 0.1s;
}

.stat-card.animate-in:nth-child(2) {
    transition-delay: 0.2s;
}

/* Coming soon cards */
.coming-card.animate-in:nth-child(1) {
    transition-delay: 0s;
}

.coming-card.animate-in:nth-child(2) {
    transition-delay: 0.15s;
}

.coming-card.animate-in:nth-child(3) {
    transition-delay: 0.3s;
}

/* Info cards */
.info-card.animate-in:nth-child(1) {
    transition-delay: 0s;
}

.info-card.animate-in:nth-child(2) {
    transition-delay: 0.1s;
}

.info-card.animate-in:nth-child(3) {
    transition-delay: 0.2s;
}

.info-card.animate-in:nth-child(4) {
    transition-delay: 0.3s;
}

/* Utility classes for clip-path */
.clip-path-polygon-8 {
    clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
}

.clip-path-polygon-10 {
    clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
}

.clip-path-polygon-15 {
    clip-path: polygon(15px 0, 100% 0, calc(100% - 15px) 100%, 0 100%);
}


/* Fallback for missing icons */
.icon-fallback::before {
    content: "●";
    font-size: inherit;
}

.process-icon-1::before {
    content: "📞";
}

.process-icon-2::before {
    content: "📝";
}

.process-icon-3::before {
    content: "🔨";
}

.process-icon-4::before {
    content: "✓";
}

.quality-icon-1::before {
    content: "🏆";
}

.quality-icon-2::before {
    content: "🏢";
}

.quality-icon-3::before {
    content: "⭐";
}

/* ============================================
   GALLERY SYSTEM - NO FILTERS VERSION
   Add this to your existing styles.css file
   ============================================ */

/* Gallery Stats Bar */
.gallery-stats-bar {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    padding: 1.5rem;
    background: var(--gray-100);
    margin-bottom: 3rem;
    border-left: 4px solid var(--blue-primary);
}

.gallery-stat {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--gray-700);
    font-size: 0.95rem;
}

.gallery-stat i {
    color: var(--blue-primary);
    font-size: 1.2rem;
}

.gallery-stat strong {
    color: var(--red-primary);
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.1rem;
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

@media (max-width: 640px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 1rem;
    }
}

.gallery-item {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--gray-200);
    cursor: pointer;
    clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    animation: galleryFadeIn 0.5s ease forwards;
}

@keyframes galleryFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.gallery-item:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 1.5rem;
}

.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}

.gallery-item-icon {
    color: var(--white);
    font-size: 2rem;
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-item-icon {
    transform: scale(1.2);
}

.gallery-item-number {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    background: rgba(237, 32, 36, 0.95);
    color: var(--white);
    font-family: 'Bebas Neue', sans-serif;
    font-size: 0.85rem;
    padding: 0.35rem 0.75rem;
    clip-path: polygon(6px 0, 100% 0, calc(100% - 6px) 100%, 0 100%);
    z-index: 2;
}

/* Gallery Loading State */
.gallery-item.loading {
    background: linear-gradient(90deg, var(--gray-200) 25%, var(--gray-300) 50%, var(--gray-200) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

/* Gallery CTA Section */
.gallery-cta-section {
    margin-top: 5rem;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, var(--blue-primary) 0%, var(--blue-dark) 100%);
    clip-path: polygon(20px 0, 100% 0, calc(100% - 20px) 100%, 0 100%);
}

.gallery-cta-content {
    text-align: center;
    color: var(--white);
}

.gallery-cta-content i {
    font-size: 3rem;
    color: var(--red-primary);
    margin-bottom: 1rem;
}

.gallery-cta-content h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.gallery-cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

/* ============================================
   LIGHTBOX MODAL
   ============================================ */

.lightbox-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox-modal.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
}

.lightbox-container {
    position: relative;
    width: 90%;
    height: 90%;
    max-width: 1400px;
    max-height: 900px;
    z-index: 10000;
}

.lightbox-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: calc(100% - 80px);
    object-fit: contain;
    clip-path: polygon(12px 0, 100% 0, calc(100% - 12px) 100%, 0 100%);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.lightbox-content img.loaded {
    opacity: 1;
    transform: scale(1);
}

/* Lightbox Controls */
.lightbox-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--red-primary) 0%, var(--red-dark) 100%);
    color: var(--white);
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10001;
    transition: all 0.3s ease;
    clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
}

.lightbox-close:hover {
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 4px 15px rgba(237, 32, 36, 0.5);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10001;
    transition: all 0.3s ease;
    clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
}

.lightbox-prev {
    left: 2rem;
}

.lightbox-next {
    right: 2rem;
}

.lightbox-nav:hover {
    background: var(--red-primary);
    border-color: var(--red-primary);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-nav:active {
    transform: translateY(-50%) scale(0.95);
}

/* Lightbox Info Bar */
.lightbox-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.lightbox-counter {
    color: var(--white);
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.2rem;
    letter-spacing: 1px;
}

.lightbox-download {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    font-family: 'Bebas Neue', sans-serif;
    font-size: 0.95rem;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
}

.lightbox-download:hover {
    background: var(--red-primary);
    border-color: var(--red-primary);
    transform: translateY(-2px);
}

/* Lightbox Loader */
.lightbox-loader {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.lightbox-loader.hidden {
    opacity: 0;
}

.spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(255, 255, 255, 0.1);
    border-top-color: var(--red-primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .gallery-stats-bar {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .lightbox-container {
        width: 95%;
        height: 95%;
    }

    .lightbox-nav {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .lightbox-prev {
        left: 0.5rem;
    }

    .lightbox-next {
        right: 0.5rem;
    }

    .lightbox-close {
        width: 45px;
        height: 45px;
        top: 0.5rem;
        right: 0.5rem;
    }

    .lightbox-info {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }

    .gallery-cta-section {
        margin-top: 3rem;
        padding: 3rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .lightbox-download span {
        display: none;
    }
}