/* Base Variables & Reset based on exact screenshot design */
:root {
    --color-red: #E3000F; /* The vibrant red used in buttons and highlights */
    --color-black: #000000;
    --color-dark: #111111;
    --color-white: #ffffff;
    --color-gray-light: #f5f5f5;
    --color-gray-text: #666666;
    
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Poppins', sans-serif;
    
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--color-dark);
    line-height: 1.6;
    background-color: var(--color-white);
}

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

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center { text-align: center; }
.text-white { color: var(--color-white); }
.text-gray { color: #cccccc; }
.mb-50 { margin-bottom: 50px; }
.mt-30 { margin-top: 30px; }
.w-100 { width: 100%; }

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.3;
}

.section-title {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--color-black);
}

.section-subtitle-red {
    color: var(--color-red);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    font-weight: 600;
}

/* Buttons */
.btn-primary, .btn-primary-red, .btn-small-red, .btn-white, .btn-white-outline {
    display: inline-block;
    font-family: var(--font-heading);
    font-weight: 600;
    text-align: center;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--color-red);
    color: var(--color-white);
    padding: 12px 30px;
}

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

.btn-small-red {
    background-color: var(--color-red);
    color: var(--color-white);
    padding: 6px 15px;
    font-size: 13px;
    border-radius: 3px;
}

.btn-small-red:hover {
    background-color: var(--color-white);
    color: var(--color-red);
}

.btn-primary-red {
    background-color: var(--color-red);
    color: var(--color-white);
    padding: 10px 25px;
}

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

.btn-white {
    background-color: var(--color-white);
    color: var(--color-red);
    padding: 15px 35px;
}

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

.btn-white-outline {
    background-color: transparent;
    color: var(--color-white);
    border-color: var(--color-white);
    padding: 15px 35px;
}

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

/* Top Bar */
.top-bar {
    background-color: #000000;
    color: #ffffff;
    font-size: 13px;
    padding: 8px 0;
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-contact span {
    margin-right: 20px;
    color: #cccccc;
}

/* Header */
.site-header {
    background-color: var(--color-white);
    padding: 15px 0;
    border-bottom: 1px solid #eeeeee;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.main-nav ul {
    display: flex;
    gap: 30px;
}

.main-nav a {
    color: var(--color-black);
    font-weight: 600;
    font-size: 15px;
    text-transform: uppercase;
    font-family: var(--font-heading);
}

.main-nav a:hover, .main-nav a.active {
    color: var(--color-red);
}

/* Hero Section */
.hero-section {
    position: relative;
    background-image: url('imgs/Untitled-design-2.jpg');
    background-size: cover;
    background-position: center;
    padding: 150px 0;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 100%);
}

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

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

.hero-title {
    color: var(--color-white);
    font-size: 48px;
    margin-bottom: 20px;
}

.hero-subtitle {
    color: #eeeeee;
    font-size: 18px;
    margin-bottom: 30px;
}

/* Intro Section */
.intro-section {
    padding: 80px 0;
}

.intro-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.intro-text p {
    color: var(--color-gray-text);
    margin-bottom: 30px;
}

.black-highlight-box {
    background-color: var(--color-black);
    color: var(--color-white);
    padding: 40px;
    border-radius: 5px;
    border-left: 5px solid var(--color-red);
}

.black-highlight-box h3 {
    margin-bottom: 10px;
}

.black-highlight-box p {
    color: #cccccc;
    margin-bottom: 20px;
}

.intro-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Features Section */
.black-bg {
    background-color: var(--color-black);
    padding: 80px 0;
}

.features-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

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

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

.feature-icon {
    font-size: 30px;
    color: var(--color-red);
}

/* Services Section */
.services-section {
    padding: 80px 0;
    background-color: var(--color-gray-light);
}

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

.service-card {
    background-color: var(--color-white);
    padding: 40px 30px;
    border-radius: 5px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    text-align: center;
    border-bottom: 3px solid transparent;
    transition: var(--transition);
}

.service-card:hover {
    border-bottom-color: var(--color-red);
    transform: translateY(-5px);
}

.service-icon-box {
    width: 70px;
    height: 70px;
    background-color: #ffe6e6;
    color: var(--color-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin: 0 auto 20px;
}

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

.service-card p {
    color: var(--color-gray-text);
    margin-bottom: 20px;
    font-size: 14px;
}

.service-link {
    color: var(--color-red);
    font-weight: 600;
    font-family: var(--font-heading);
    text-transform: uppercase;
    font-size: 13px;
}

/* Red CTA Section */
.red-cta-section {
    background-color: var(--color-red);
    padding: 60px 0;
}

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

.red-cta-content h2 {
    color: var(--color-white);
    font-size: 32px;
    margin-bottom: 10px;
}

.red-cta-content p {
    color: rgba(255,255,255,0.9);
}

.red-cta-buttons {
    display: flex;
    gap: 15px;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.contact-item {
    margin-bottom: 20px;
}

.contact-item strong {
    color: var(--color-red);
    font-family: var(--font-heading);
    display: block;
    margin-bottom: 5px;
}

.contact-form {
    background-color: var(--color-gray-light);
    padding: 40px;
    border-radius: 5px;
}

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

.form-group input, .form-group select {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: var(--font-body);
}

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

/* Footer */
.site-footer {
    background-color: var(--color-dark);
    color: #aaaaaa;
    padding: 60px 0 0;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    filter: brightness(0) invert(1);
    margin-bottom: 20px;
}

.footer-col h3 {
    color: var(--color-white);
    margin-bottom: 20px;
    font-size: 18px;
}

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

.footer-col a {
    color: #aaaaaa;
}

.footer-col a:hover {
    color: var(--color-red);
}

.footer-bottom {
    background-color: #000000;
    padding: 20px 0;
    text-align: center;
    font-size: 14px;
}

/* Service Links inside Black Box */
.service-outline-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid var(--color-red);
    color: var(--color-white);
    padding: 12px 20px;
    font-size: 14px;
    text-decoration: none;
    transition: var(--transition);
}

.service-outline-link:hover {
    background-color: var(--color-red);
    color: var(--color-white);
}

.service-outline-link .arrow {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.service-outline-link:hover .arrow {
    transform: translateX(3px);
}

/* Responsive */
@media (max-width: 992px) {
    .intro-container, .features-container, .red-cta-container, .contact-container, .footer-container, .ce-container, .trusted-grid, .gallery-grid {
        grid-template-columns: 1fr !important;
        text-align: center;
    }
    
    .red-cta-buttons {
        justify-content: center;
        margin-top: 30px;
    }
    
    .feature-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .black-highlight-box {
        text-align: left;
    }
}

@media (max-width: 768px) {
    .top-bar { display: none; }
    
    .main-nav { display: none; } /* Simple mobile hide for now */
    .nav-right { display: none; }
    
    .hero-title { font-size: 32px; }
    .section-title { font-size: 28px; }
}


.custom-textarea {
    width: 100%;
    min-height: 150px;
    padding: 14px 18px;
    font-size: 15px;
    line-height: 1.6;
    color: #333;
    background: #fff;
    border: 1px solid #dcdcdc;
    border-radius: 12px;
    resize: vertical;
    outline: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.custom-textarea::placeholder {
    color: #999;
}

.custom-textarea:hover {
    border-color: #b5b5b5;
}

.custom-textarea:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 4px rgba(13, 110, 253, 0.15);
    background-color: #fff;
}

.custom-textarea::-webkit-scrollbar {
    width: 8px;
}

.custom-textarea::-webkit-scrollbar-thumb {
    background: #c5c5c5;
    border-radius: 10px;
}

.custom-textarea::-webkit-scrollbar-thumb:hover {
    background: #999;
}
