:root {
    --primary: #E52D27;
    /* Logo Red */
    --primary-hover: #C41E1A;
    --secondary: #006DB2;
    /* Logo Blue */
    --bg-dark: #1A1A1A;
    --bg-darker: #111111;
    --text-light: #FFFFFF;
    --text-muted: #B0B0B0;
    --accent: #E0E0E0;
    --card-bg: #242424;
    --border: rgba(255, 255, 255, 0.1);
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

/* Base Components */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

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

ul {
    list-style: none;
}

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

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
}

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

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 0, 0.3);
}

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

.btn-outline:hover {
    background-color: var(--text-light);
    color: var(--bg-dark);
}

section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background-color: var(--primary);
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin-bottom: 3rem;
}

/* Layout helpers */
.grid {
    display: grid;
    gap: 2rem;
}

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

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    section {
        padding: 60px 0;
    }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 0;
    background: rgba(17, 17, 17, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(17, 17, 17, 0.95);
}

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

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

.logo-img {
    height: 120px;
    width: auto;
    transition: var(--transition);
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--text-muted);
}

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

.btn-sm {
    padding: 0.6rem 1.2rem;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 0;
    background: linear-gradient(135deg, #1A1A1A 0%, #111111 100%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(255, 107, 0, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(255, 107, 0, 0.05) 0%, transparent 40%);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 800px;
}

.hero h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.hero-btns {
    display: flex;
    gap: 1rem;
}

@media (max-width: 992px) {
    .hero h1 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

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

/* Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.fade-in {
    opacity: 1;
    transform: translateY(0);
}

/* Footer */
.footer {
    background-color: var(--bg-darker);
    padding: 6rem 0 3rem;
    border-top: 1px solid var(--border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
    align-items: flex-start;
}

.footer-brand p {
    margin-top: 1.5rem;
    max-width: 350px;
    line-height: 1.6;
}

.footer-logo {
    height: 100px !important;
    /* Larger in footer as requested */
}

.footer-contact h4 {
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    color: var(--primary);
}

.footer-btns {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-btns .btn {
    padding: 1rem 1.5rem;
    min-width: 140px;
}

/* About Section */
.grid-2 {
    grid-template-columns: 1fr 1fr;
    align-items: center;
}

.quote .grid-2 {
    align-items: flex-start;
}

.contact-info-list {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.info-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.info-item i {
    color: var(--primary);
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    margin-top: 4px;
}

.info-item strong {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.info-item p {
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.4;
}

.about-content p {
    margin-bottom: 1.5rem;
    color: var(--text-muted);
}

.about-stats {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.stat-card {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 8px;
    text-align: center;
    border: 1px solid var(--border);
    flex: 1;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.stat-label {
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    color: var(--text-muted);
}

/* Why Choose Section - Differentiated Split Layout */
.why-choose {
    background: #111111;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

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

.why-choose-visual {
    position: relative;
}

.image-stack {
    position: relative;
    padding: 20px;
}

.main-img {
    width: 100%;
    border-radius: 12px;
    position: relative;
    z-index: 2;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.accent-box {
    position: absolute;
    top: 0;
    left: 0;
    width: 70%;
    height: 70%;
    background: var(--primary);
    border-radius: 12px;
    z-index: 1;
    opacity: 0.2;
}

.why-choose-content {
    padding-left: 2rem;
}

.why-choose .section-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.why-choose .section-title::after {
    left: 0;
    transform: none;
    background: var(--primary);
    width: 80px;
}

.section-desc {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 500px;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature-list-item {
    display: flex;
    gap: 1.5rem;
    transition: var(--transition);
}

.feature-list-item:hover {
    transform: translateX(10px);
}

.feature-list-icon {
    width: 54px;
    height: 54px;
    background: rgba(229, 45, 39, 0.1);
    color: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
}

.feature-list-item:hover .feature-list-icon {
    background: var(--primary);
    color: white;
    box-shadow: 0 10px 20px rgba(229, 45, 39, 0.3);
}

.feature-list-text h4 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
    text-transform: none;
    letter-spacing: 0;
    color: white;
}

.feature-list-text p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.4;
}

@media (max-width: 992px) {
    .why-choose-content {
        padding-left: 0;
    }

    .why-choose .section-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .image-stack {
        margin-bottom: 3rem;
    }
}

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

.quote-form-container {
    background: var(--bg-dark);
    padding: 3.5rem;
    border-radius: 12px;
    border: 1px solid var(--border);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.form-group {
    margin-bottom: 2rem;
    position: relative;
}

.form-group label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 800;
    margin-bottom: 0.75rem;
    color: var(--primary);
    letter-spacing: 0.05em;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100% !important;
    padding: 1.2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: white;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    appearance: none;
    /* Remove default arrow */
    -webkit-appearance: none;
}

.form-group select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23E52D27' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1.2rem center;
    background-size: 1.2rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 20px rgba(229, 45, 39, 0.15);
}

.form-group select option {
    background: #1A1A1A;
    color: white;
    padding: 1rem;
}

.service-card {
    background: var(--bg-dark);
    padding: 3rem 2rem;
    border-radius: 8px;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.service-card:hover {
    border-color: var(--primary);
    transform: translateY(-10px);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 107, 0, 0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .grid-2 {
        grid-template-columns: 1fr;
    }

    .about-stats {
        flex-direction: column;
    }
}

.footer-bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    font-size: 0.85rem;
}

.footer-credit {
    font-weight: 500;
}

.footer-credit a {
    color: white;
    font-weight: 700;
}

.footer-credit a:hover {
    color: var(--primary);
}


/* Gallery / Portfolio */
.project-grid {
    margin-top: 3rem;
}

.project-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 16/10;
    border: 1px solid var(--border);
    transition: var(--transition);
    background: var(--bg-dark);
}

.project-item:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(229, 45, 39, 0.15);
}

.project-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.project-item:hover img {
    transform: scale(1.1);
    filter: brightness(0.5) saturate(1.2);
}

.project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(17, 17, 17, 0.95) 0%, rgba(17, 17, 17, 0.4) 40%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2.5rem;
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.project-overlay span {
    color: white;
    font-size: 1.4rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    display: flex;
    align-items: center;
    gap: 15px;
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.project-overlay span::before {
    content: '';
    width: 40px;
    height: 4px;
    background: var(--primary);
    display: block;
    box-shadow: 0 0 15px var(--primary), 0 0 30px var(--primary);
    border-radius: 2px;
}

.project-overlay span::after {
    content: '→';
    font-size: 1rem;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.4s 0.1s;
}

.project-item:hover .project-overlay span::after {
    opacity: 1;
    transform: translateX(0);
}

/* Gallery Carousel */
.project-carousel-container {
    padding: 2rem 1rem 4rem;
}

.swiper-slide {
    height: auto;
}

.project-item {
    cursor: grab;
}

.project-item:active {
    cursor: grabbing;
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--primary);
    background: rgba(26, 26, 26, 0.8);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    backdrop-filter: blur(5px);
    border: 1px solid var(--border);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 1.2rem;
    font-weight: 900;
}

.swiper-pagination-bullet {
    background: white;
    opacity: 0.3;
}

.swiper-pagination-bullet-active {
    background: var(--primary);
    opacity: 1;
    width: 20px;
    border-radius: 4px;
}

/* Custom Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: var(--bg-dark);
    padding: 3rem;
    border-radius: 16px;
    border: 1px solid var(--border);
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

.modal-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary);
    box-shadow: 0 0 15px var(--primary);
}

.modal-icon {
    width: 80px;
    height: 80px;
    background: rgba(229, 45, 39, 0.1);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.modal-icon i {
    width: 40px;
    height: 40px;
}

.modal h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.modal p {
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.admin-link {
    font-size: 0.75rem;
    color: var(--text-muted);
    opacity: 0.5;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.admin-link:hover {
    opacity: 1;
    color: var(--primary);
}

@media (max-width: 768px) {
    .footer-bottom-flex {
        justify-content: center;
        text-align: center;
    }
}