/* ==========================================================================
   CSS VARIABLES & BASE STYLES
   ========================================================================== */
:root {
    --primary: #FFB800;
    --primary-dark: #E6A600;
    --black: #050505;
    --dark-grey: #1a1a1a;
    --medium-grey: #333333;
    --light-grey: #f5f5f5;
    --white: #ffffff;
    --text-main: #4a4a4a;
    --text-light: #888888;
    
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --transition: all 0.3s ease;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-heavy: 0 20px 40px rgba(0, 0, 0, 0.3);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    line-height: 1.6;
    background-color: var(--light-grey);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--black);
    line-height: 1.2;
    text-transform: uppercase;
    font-weight: 800;
}

p {
    margin-bottom: 1.5rem;
}

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

ul {
    list-style: none;
}

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

.text-center { text-align: center; }
.mt-4 { margin-top: 2rem; }

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    border-radius: 2px;
}

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

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

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

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

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

/* ==========================================================================
   HEADER
   ========================================================================== */
.header {
    background-color: var(--black);
    color: var(--white);
    padding: 15px 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 2px solid var(--primary);
}

.header.scrolled {
    padding: 10px 0;
    box-shadow: var(--shadow-heavy);
}

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

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

.logo-icon {
    width: 40px;
    height: 40px;
    background-color: var(--primary);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    position: relative;
}

.logo-icon::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 20px; height: 20px;
    background-color: var(--black);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: 1px;
}

.logo-text span {
    color: var(--primary);
    font-size: 16px;
    font-weight: 700;
}

.contact-info {
    display: flex;
    gap: 40px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.info-item .icon {
    font-size: 24px;
    color: var(--primary);
}

.info-item .label {
    display: block;
    font-size: 12px;
    color: var(--text-light);
    text-transform: uppercase;
    font-weight: 600;
}

.info-item .value {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
}

.info-item .value:hover {
    color: var(--primary);
}

.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
}

.mobile-menu-toggle span {
    display: block;
    width: 30px;
    height: 3px;
    background-color: var(--white);
    transition: var(--transition);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
    position: relative;
    min-height: 100vh;
    padding-top: 100px; /* Offset for fixed header */
    display: flex;
    align-items: center;
    background-color: var(--black);
}

.hero-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: url('assets/hero.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.6;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(90deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.7) 50%, rgba(0,0,0,0.3) 100%);
}

.hero-container {
    position: relative;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
    padding-top: 50px;
    padding-bottom: 50px;
}

.hero-content {
    flex: 1;
    color: var(--white);
}

.hero-title {
    color: var(--white);
    font-size: 56px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

.hero-subtitle {
    color: var(--primary);
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 20px;
    display: inline-block;
    padding-bottom: 5px;
    border-bottom: 3px solid var(--primary);
}

.hero-text {
    font-size: 18px;
    color: #e0e0e0;
    max-width: 600px;
    margin-bottom: 30px;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature-item {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: var(--primary);
}

/* Quote Form */
.hero-form-wrapper {
    width: 400px;
    flex-shrink: 0;
}

.quote-form {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 4px;
    box-shadow: var(--shadow-heavy);
    position: relative;
}

.quote-form::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 5px;
    background-color: var(--primary);
    border-radius: 4px 4px 0 0;
}

.quote-form h2 {
    font-size: 24px;
    margin-bottom: 15px;
}

.quote-form p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 25px;
}

.quote-form input,
.quote-form textarea {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 2px;
    font-family: var(--font-body);
    font-size: 15px;
    transition: var(--transition);
}

.quote-form input:focus,
.quote-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(255, 184, 0, 0.2);
}

.form-row {
    display: flex;
    gap: 15px;
}

/* ==========================================================================
   BADGES SECTION
   ========================================================================== */
.badges-section {
    background-color: var(--black);
    padding: 40px 0;
    border-bottom: 2px solid var(--medium-grey);
}

.badges-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

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

.badge-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary);
    color: var(--black);
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 800;
    border-radius: 50%;
    box-shadow: 0 0 0 5px rgba(255, 184, 0, 0.2);
}

.badge-text {
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
}

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
.testimonials {
    padding: 80px 0;
    background-color: var(--white);
}

.section-title {
    font-size: 36px;
    margin-bottom: 40px;
    position: relative;
}

.section-title.text-center::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: var(--primary);
    margin: 15px auto 0;
}

.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-card {
    text-align: center;
    padding: 40px;
    background-color: var(--light-grey);
    border-radius: 8px;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 120px;
    color: rgba(255, 184, 0, 0.1);
    font-family: Georgia, serif;
    line-height: 1;
}

.stars {
    color: var(--primary);
    font-size: 24px;
    margin-bottom: 20px;
}

.review-text {
    font-size: 18px;
    font-style: italic;
    color: var(--black);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.client-name {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--primary-dark);
}

/* ==========================================================================
   SERVICES
   ========================================================================== */
.services {
    background-color: var(--black);
}

.service-row {
    padding: 80px 0;
    border-bottom: 1px solid var(--medium-grey);
}

.service-row.alt-row {
    background-color: var(--dark-grey);
}

.service-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.service-container.reverse {
    flex-direction: row-reverse;
}

.service-content {
    flex: 1;
    color: var(--white);
}

.service-title {
    color: var(--primary);
    font-size: 32px;
    margin-bottom: 20px;
}

.service-content p {
    color: #cccccc;
    font-size: 16px;
    margin-bottom: 25px;
}

.service-list {
    margin-bottom: 30px;
}

.service-list li {
    font-family: var(--font-heading);
    font-weight: 600;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-list li::before {
    content: '►';
    color: var(--primary);
    font-size: 12px;
}

.service-image {
    flex: 1;
    position: relative;
}

.service-image::before {
    content: '';
    position: absolute;
    top: -15px; left: -15px;
    width: 100px; height: 100px;
    border-top: 4px solid var(--primary);
    border-left: 4px solid var(--primary);
    z-index: 0;
}

.service-image::after {
    content: '';
    position: absolute;
    bottom: -15px; right: -15px;
    width: 100px; height: 100px;
    border-bottom: 4px solid var(--primary);
    border-right: 4px solid var(--primary);
    z-index: 0;
}

.service-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    position: relative;
    z-index: 1;
    box-shadow: var(--shadow-heavy);
    filter: grayscale(20%) contrast(120%);
    transition: var(--transition);
}

.service-row:hover .service-image img {
    filter: grayscale(0%) contrast(100%);
}

/* ==========================================================================
   PROCESS SECTION
   ========================================================================== */
.process-section {
    padding: 100px 0;
    background-color: var(--white);
    background-image: linear-gradient(#f9f9f9 1px, transparent 1px), linear-gradient(90deg, #f9f9f9 1px, transparent 1px);
    background-size: 20px 20px;
}

.process-desc {
    max-width: 600px;
    margin: 0 auto 50px;
    color: var(--text-light);
    font-size: 18px;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.process-card {
    background-color: var(--white);
    padding: 40px 30px;
    border: 1px solid #eee;
    border-top: 4px solid var(--black);
    transition: var(--transition);
    position: relative;
}

.process-card:hover {
    transform: translateY(-10px);
    border-top-color: var(--primary);
    box-shadow: var(--shadow);
}

.step-num {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 900;
    color: rgba(255, 184, 0, 0.2);
    position: absolute;
    top: 20px;
    right: 20px;
    line-height: 1;
    transition: var(--transition);
}

.process-card:hover .step-num {
    color: var(--primary);
}

.process-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    margin-top: 20px;
}

.process-card p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 0;
}

/* ==========================================================================
   CONTACT SECTION
   ========================================================================== */
.contact-section {
    background-color: var(--black);
    position: relative;
    padding: 80px 0;
}

.contact-container {
    display: flex;
    max-width: 1200px;
    padding: 0 20px;
    margin: 0 auto;
    gap: 40px;
    align-items: center;
}

.contact-card {
    flex: 1;
    background-color: var(--dark-grey);
    padding: 50px;
    color: var(--white);
    border-radius: 4px;
}

.contact-card .section-title {
    color: var(--white);
}

.contact-card .section-title::after {
    margin-left: 0;
}

.contact-details {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

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

.contact-item .icon {
    font-size: 24px;
    color: var(--primary);
    background: rgba(255, 184, 0, 0.1);
    width: 50px; height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

.contact-item strong {
    font-family: var(--font-heading);
    color: var(--primary);
    text-transform: uppercase;
    font-size: 14px;
    display: block;
    margin-bottom: 5px;
}

.contact-item a {
    color: var(--white);
}

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

.map-container {
    flex: 1;
    height: 400px;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: var(--shadow-heavy);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
    background-color: #000;
    color: #aaa;
    border-top: 1px solid #222;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding: 80px 20px;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 900;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-logo span {
    color: var(--primary);
}

.footer-heading {
    color: var(--white);
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-heading::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:hover {
    color: var(--primary);
    padding-left: 5px;
}

.contact-links li {
    display: flex;
    gap: 10px;
}

.footer-quote-box {
    background-color: var(--dark-grey);
    padding: 30px;
    border-left: 4px solid var(--primary);
}

.footer-quote-box h4 {
    color: var(--white);
    margin-bottom: 10px;
}

.footer-quote-box p {
    font-size: 14px;
    margin-bottom: 20px;
}

.footer-bottom {
    background-color: #050505;
    padding: 20px 0;
    text-align: center;
    border-top: 1px solid #111;
    font-size: 14px;
}

/* ==========================================================================
   MEDIA QUERIES (RESPONSIVE)
   ========================================================================== */
@media (max-width: 1024px) {
    .hero-container {
        flex-direction: column;
        padding-top: 100px;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-text {
        margin: 0 auto 30px;
    }
    
    .hero-title {
        font-size: 42px;
    }
    
    .service-container,
    .service-container.reverse {
        flex-direction: column;
        text-align: center;
    }
    
    .service-image::before,
    .service-image::after {
        display: none;
    }
    
    .service-list li {
        justify-content: center;
    }
    
    .contact-container {
        flex-direction: column;
    }
    
    .contact-card, .map-container {
        flex: 0 0 100%;
    }
    
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .contact-info, .btn-quote {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-form-wrapper {
        width: 100%;
        max-width: 400px;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .process-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
    }
}
