/* --- Google Fonts & Resets --- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
    scroll-behavior: smooth;
}

:root {
    --dark: #111111;
    --light-grey: #f8f9fa;
    --primary-red: #E31B23;
    --accent-red: #ff2d35;
    --text-dark: #222222;
    --white: #ffffff;
}

body {
    background-color: var(--white);
    color: var(--text-dark);
}

/* --- Header & Nav --- */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    background-color: var(--dark);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid var(--primary-red);
}

.logo-container {
    display: flex;
    align-items: center;
    background-color: #f4f4f4;
    padding: 8px 12px;
    border-radius: 6px;
    gap: 15px;
}

.site-logo-svg, .site-logo-img {
    height: 50px !important;
    width: auto !important;
    max-height: none !important;
    max-width: none !important;
    object-fit: contain;
}

.brand-text-banner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-left: 2px solid #ccc;
    padding-left: 12px;
}

.brand-main {
    color: var(--dark);
    font-weight: 800;
    font-size: 1.2rem;
    letter-spacing: 1.5px;
    line-height: 1.1;
}

.brand-sub {
    color: var(--primary-red);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 2px;
    margin-top: 2px;
}

nav {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

nav a {
    color: var(--white);
    text-decoration: none;
    margin-left: 12px;
    font-weight: 600;
    font-size: 0.85rem;
    transition: color 0.3s;
}

nav a:hover {
    color: var(--primary-red);
}

.btn-nav {
    background-color: var(--primary-red);
    padding: 6px 12px;
    border-radius: 4px;
    color: var(--white) !important;
}

.btn-nav:hover {
    background-color: var(--accent-red);
}

.btn-admin-link {
    color: #bbb !important;
    font-size: 0.8rem !important;
    background: rgba(255, 255, 255, 0.1);
    padding: 6px 10px;
    border-radius: 4px;
}

.btn-admin-link:hover {
    color: var(--white) !important;
    background: rgba(255, 255, 255, 0.2);
}

/* --- Hero Section --- */
.hero {
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('https://images.unsplash.com/photo-1541888946425-d81bb19240f5?auto=format&fit=crop&w=1200&q=80') no-repeat center center/cover;
    height: 75vh;
    display: flex;
    align-items: center;
    padding: 0 8%;
}

.hero-content {
    max-width: 650px;
    color: var(--white);
}

.badge {
    background-color: var(--primary-red);
    padding: 5px 12px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 3px;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-top: 15px;
    line-height: 1.2;
}

.hero p {
    font-size: 1.1rem;
    margin: 20px 0 30px 0;
    opacity: 0.9;
    line-height: 1.6;
}

.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 12px 28px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 4px;
    transition: transform 0.2s;
    text-align: center;
}

.btn-primary {
    background-color: var(--primary-red);
    color: var(--white);
    margin-right: 15px;
    border: none;
}

.btn-secondary {
    border: 2px solid var(--white);
    color: var(--white);
    background: transparent;
}

.btn-primary:hover, .btn-secondary:hover {
    transform: translateY(-2px);
}

.btn-primary:hover {
    background-color: var(--accent-red);
}

/* --- Trust Bar --- */
.trust-bar {
    background-color: #1a1a1a;
    display: flex;
    justify-content: space-around;
    padding: 20px 8%;
    flex-wrap: wrap;
    border-bottom: 1px solid #333;
}

.trust-item {
    color: var(--white);
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 10px;
}

.trust-item i {
    color: var(--primary-red);
}

/* --- Sections Shared --- */
section {
    padding: 80px 8%;
}

section h2 {
    font-size: 2.2rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    color: var(--dark);
}

section h2::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 4px;
    background-color: var(--primary-red);
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}

/* --- About --- */
.about {
    background-color: var(--white);
}

.about-text h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.about-text p {
    line-height: 1.7;
    margin-bottom: 20px;
    color: #555;
}

.about-text ul {
    list-style: none;
}

.about-text ul li {
    margin-bottom: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-text ul li i {
    color: var(--primary-red);
}

/* --- Services --- */
.services {
    background-color: var(--light-grey);
}

.services-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.service-card {
    background-color: var(--white);
    flex: 1;
    min-width: 280px;
    padding: 40px 30px;
    border-radius: 6px;
    border-bottom: 4px solid transparent;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.service-card:hover {
    transform: translateY(-5px);
    border-bottom: 4px solid var(--primary-red);
}

.service-card i {
    font-size: 2.5rem;
    color: var(--primary-red);
    margin-bottom: 20px;
}

.service-card h3 {
    margin-bottom: 15px;
    font-weight: 700;
}

.service-card p {
    color: #666;
    line-height: 1.6;
}

/* --- Portfolio & Image Slider --- */
.section-sub {
    text-align: center;
    margin-top: -30px;
    margin-bottom: 40px;
    color: #666;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.project-card {
    background-color: var(--white);
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.project-img-slider {
    height: 220px;
    position: relative;
    overflow: hidden;
    background-color: #000;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.project-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: #2b9348;
    color: var(--white);
    padding: 4px 10px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 3px;
    z-index: 10;
}

.project-badge.red {
    background-color: var(--primary-red);
}

.project-info {
    padding: 20px;
}

.project-info h3 {
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.project-info p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* --- Contact & Info Section --- */
.contact {
    background-color: var(--light-grey);
}

.contact-wrapper-grid {
    display: flex;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.contact-info-box {
    flex: 1;
    min-width: 280px;
    background: var(--white);
    padding: 30px;
    border-radius: 6px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.contact-info-box h3 {
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.contact-info-box p {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    color: #444;
    font-size: 0.95rem;
}

.contact-info-box i {
    color: var(--primary-red);
    margin-top: 4px;
}

.contact-container {
    flex: 1.2;
    min-width: 300px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input, .contact-form select, .contact-form textarea {
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    outline: none;
}

.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
    border-color: var(--primary-red);
}

/* --- Admin Modal UI Styling --- */
.admin-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.admin-modal-content {
    background: var(--white);
    width: 100%;
    max-width: 550px;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    max-height: 90vh;
    overflow-y: auto;
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.close-btn {
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: #666;
}

.admin-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.admin-form label {
    font-size: 0.85rem;
    font-weight: 700;
    color: #444;
}

.admin-form input, .admin-form textarea, .admin-form select {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 0.95rem;
}

.admin-actions {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

/* --- Footer --- */
footer {
    background-color: var(--dark);
    color: #aaa;
    text-align: center;
    padding: 30px;
    font-size: 0.85rem;
    border-top: 1px solid #222;
}

/* --- WhatsApp Float --- */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.3);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.2s;
}

.whatsapp-float:hover {
    transform: scale(1.08);
}

/* --- Clickable Contact Links --- */
.contact-link {
    color: #444;
    text-decoration: none;
    transition: color 0.2s;
}

.contact-link:hover {
    color: var(--primary-red);
    text-decoration: underline;
}

/* --- Responsive adjustments --- */
@media (max-width: 900px) {
    header { 
        padding: 15px 4%; 
        flex-direction: column;
        gap: 15px;
    }
    nav { 
        display: flex; 
        justify-content: center;
        width: 100%;
        gap: 8px;
    }
    nav a {
        margin-left: 0;
        font-size: 0.75rem;
        padding: 5px 8px;
    }
    .hero h1 { font-size: 2.2rem; }
    .contact-wrapper-grid { flex-direction: column; }
    .brand-main { font-size: 1rem; }
    .brand-sub { font-size: 0.75rem; }
    .logo-container { padding: 6px 10px; gap: 10px; }
    .site-logo-svg, .site-logo-img { height: 38px !important; }
}

/* --- Additional File Upload Styling for Admin Modal --- */
.file-upload-group {
    background: #f9f9f9;
    padding: 10px;
    border: 1px dashed #ccc;
    border-radius: 4px;
    margin-bottom: 5px;
}

.file-upload-group label {
    font-size: 0.8rem;
    color: #666;
    display: block;
    margin-bottom: 3px;
}
/* --- Interactive Multi-Step Contact Wizard Styles --- */
.wizard-container {
    background: var(--white);
    padding: 30px;
    border-radius: 6px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.wizard-steps-indicator {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    position: relative;
}

.wizard-steps-indicator::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background: #e0e0e0;
    z-index: 1;
    transform: translateY(-50%);
}

.step-dot {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #e0e0e0;
    color: #777;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.step-dot.active {
    background: var(--primary-red);
    color: var(--white);
    box-shadow: 0 0 10px rgba(227, 27, 35, 0.4);
}

.step-dot.completed {
    background: #2b9348;
    color: var(--white);
}

.wizard-step {
    display: none;
    animation: fadeIn 0.4s ease-in-out;
}

.wizard-step.active-step {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.wizard-step h3 {
    font-size: 1.25rem;
    margin-bottom: 20px;
    color: var(--dark);
    font-weight: 700;
    text-align: center;
}

.wizard-options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 12px;
    margin-bottom: 25px;
}

.wizard-option-btn {
    background: #f8f9fa;
    border: 2px solid #e0e0e0;
    padding: 14px 10px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-dark);
    cursor: pointer;
    text-align: center;
    transition: all 0.2s ease;
}

.wizard-option-btn:hover {
    border-color: var(--primary-red);
    background: rgba(227, 27, 35, 0.03);
}

.wizard-option-btn.selected {
    border-color: var(--primary-red);
    background: var(--primary-red);
    color: var(--white);
}

.wizard-form-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.wizard-form-group input, 
.wizard-form-group textarea {
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    outline: none;
    font-family: 'Montserrat', sans-serif;
}

.wizard-form-group input:focus, 
.wizard-form-group textarea:focus {
    border-color: var(--primary-red);
}

.wizard-buttons {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin-top: 20px;
}

.wizard-btn-prev, .wizard-btn-next, .wizard-btn-submit {
    padding: 12px 24px;
    font-weight: 700;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.95rem;
    border: none;
    transition: transform 0.2s, background-color 0.2s;
}

.wizard-btn-prev {
    background: #e0e0e0;
    color: #444;
}

.wizard-btn-prev:hover {
    background: #d0d0d0;
}

.wizard-btn-next, .wizard-btn-submit {
    background: var(--primary-red);
    color: var(--white);
    margin-left: auto;
}

.wizard-btn-next:hover, .wizard-btn-submit:hover {
    background: var(--accent-red);
    transform: translateY(-2px);
}