/*
 * Bullscapes LLC — Color palette derived from brand logo
 *
 * Logo: near-black background (#0F0E0C) + warm bronze/tan illustration (#9E8A68)
 *
 * --bronze:       #9E8A68   logo's bull/text color — primary accent
 * --bronze-light: #B8A07C   lighter bronze for hover states
 * --bronze-deep:  #6A5A3E   deeper bronze for CTA backgrounds
 * --ink:          #0F0E0C   near-black matching logo background
 * --earth:        #1A1813   dark earth — alternate section backgrounds
 * --stone:        #252119   card background
 * --stone-light:  #2E2A22   lighter card gradient end
 * --cream:        #F0E8D8   warm white for headings
 * --sand:         #C0B09A   warm body text (replaces cold #ccc)
 * --pebble:       #7A6E5E   muted mid-tone (replaces cold #888)
 * --border:       #3A3328   warm dark brown borders (replaces cold #333)
 */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Arial', 'Helvetica', sans-serif;
    line-height: 1.6;
    color: #F0E8D8;
    background-color: #0F0E0C;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: bold;
    margin-bottom: 1rem;
    color: #F0E8D8;
}

h1 {
    font-size: 2.5rem;
    line-height: 1.2;
}

h2 {
    font-size: 2rem;
    line-height: 1.3;
}

h3 {
    font-size: 1.5rem;
    line-height: 1.4;
}

p {
    margin-bottom: 1rem;
    color: #C0B09A;
}

a {
    color: #9E8A68;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #F0E8D8;
}

/* Navigation */
.navbar {
    background: rgba(15, 14, 12, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0.5rem 0;
    border-bottom: 2px solid #9E8A68;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo .logo {
    height: 50px;
    width: auto;
}

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

.nav-link {
    color: #F0E8D8;
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.nav-link:hover,
.nav-link.active {
    color: #0F0E0C;
    background-color: #9E8A68;
}

.nav-link.cta-button {
    background-color: #9E8A68;
    color: #0F0E0C;
    font-weight: bold;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
}

.nav-link.cta-button:hover {
    background-color: #F0E8D8;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(158, 138, 104, 0.35);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #9E8A68;
    margin: 3px 0;
    transition: 0.3s;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    border-radius: 25px;
    font-weight: bold;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
    font-size: 1rem;
}

.btn-primary {
    background-color: #9E8A68;
    color: #0F0E0C;
}

.btn-primary:hover {
    background-color: #F0E8D8;
    color: #0F0E0C;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(158, 138, 104, 0.45);
}

.btn-secondary {
    background-color: transparent;
    color: #9E8A68;
    border: 2px solid #9E8A68;
}

.btn-secondary:hover {
    background-color: #9E8A68;
    color: #0F0E0C;
    transform: translateY(-2px);
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

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

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 40%, rgba(158, 138, 104, 0.08) 0%, transparent 55%);
    pointer-events: none;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    color: #F0E8D8;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: #C0B09A;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Page Hero (for internal pages) */
.page-hero {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #0F0E0C 0%, #1A1813 100%);
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-hero p {
    font-size: 1.2rem;
    color: #C0B09A;
    max-width: 600px;
    margin: 0 auto;
}

/* Sections */
section {
    padding: 60px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #F0E8D8;
}

.section-header p {
    font-size: 1.1rem;
    color: #C0B09A;
    max-width: 600px;
    margin: 0 auto;
}

/* Services Preview */
.services-preview {
    background-color: #1A1813;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-card {
    background: linear-gradient(135deg, #252119 0%, #0F0E0C 100%);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: #9E8A68;
    box-shadow: 0 10px 30px rgba(158, 138, 104, 0.18);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.service-card h3 {
    color: #9E8A68;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

/* Why Choose Section */
.why-choose {
    background-color: #0F0E0C;
}

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

.feature {
    text-align: center;
    padding: 1.5rem;
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.feature h3 {
    color: #9E8A68;
    margin-bottom: 0.5rem;
}

/* Services Detailed */
.services-detailed {
    background-color: #0F0E0C;
}

.service-detail {
    margin-bottom: 4rem;
    background: linear-gradient(135deg, #252119 0%, #1A1813 100%);
    border-radius: 15px;
    padding: 2.5rem;
    border-left: 4px solid #9E8A68;
}

.service-icon-large {
    font-size: 4rem;
    margin-bottom: 1rem;
    display: block;
}

.service-detail h2 {
    color: #9E8A68;
    margin-bottom: 1rem;
}

.service-features {
    list-style: none;
    margin-top: 1.5rem;
}

.service-features li {
    padding: 0.5rem 0;
    color: #C0B09A;
    position: relative;
    padding-left: 1.5rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #9E8A68;
    font-weight: bold;
}

/* Process Section */
.process-section {
    background-color: #1A1813;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.process-step {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #252119 0%, #0F0E0C 100%);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(158, 138, 104, 0.12);
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #9E8A68;
    color: #0F0E0C;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

.process-step h3 {
    color: #9E8A68;
    margin-bottom: 1rem;
}

/* Gallery */
.gallery-filters {
    background-color: #1A1813;
    padding: 2rem 0;
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-btn {
    background-color: transparent;
    color: #C0B09A;
    border: 2px solid #3A3328;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background-color: #9E8A68;
    color: #0F0E0C;
    border-color: #9E8A68;
}

.gallery-section {
    background-color: #0F0E0C;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.gallery-item {
    background: linear-gradient(135deg, #252119 0%, #1A1813 100%);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(158, 138, 104, 0.18);
}

.before-after-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 250px;
}

.before-image,
.after-image {
    position: relative;
    overflow: hidden;
}

.placeholder-image {
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #252119 0%, #2E2A22 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #C0B09A;
    font-size: 0.9rem;
    text-align: center;
    padding: 1rem;
}

.placeholder-image span {
    font-weight: bold;
    color: #9E8A68;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.gallery-info {
    padding: 1.5rem;
}

.gallery-info h3 {
    color: #9E8A68;
    margin-bottom: 0.5rem;
}

/* Reviews */
.reviews-stats {
    background-color: #1A1813;
    padding: 3rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #9E8A68;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #C0B09A;
    font-size: 1.1rem;
}

.reviews-section {
    background-color: #0F0E0C;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.review-card {
    background: linear-gradient(135deg, #252119 0%, #1A1813 100%);
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid #9E8A68;
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(158, 138, 104, 0.12);
}

.review-stars {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #9E8A68;
}

.review-card p {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: #C0B09A;
    line-height: 1.6;
}

.review-author {
    font-weight: bold;
    color: #9E8A68;
    margin-bottom: 0.5rem;
}

.review-author span {
    color: #C0B09A;
    font-weight: normal;
}

.review-project {
    color: #7A6E5E;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.review-highlights {
    background-color: #1A1813;
}

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

.highlight-item {
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, #252119 0%, #0F0E0C 100%);
    border-radius: 15px;
}

.highlight-item h3 {
    color: #9E8A68;
    margin-bottom: 1rem;
}

/* Testimonials */
.testimonial-gallery {
    background-color: #1A1813;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: linear-gradient(135deg, #252119 0%, #0F0E0C 100%);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    border-color: #9E8A68;
    transform: translateY(-3px);
}

.testimonial-author {
    color: #9E8A68;
    font-weight: bold;
    margin-top: 1rem;
}

/* Contact */
.contact-section {
    background-color: #0F0E0C;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h2 {
    color: #9E8A68;
    margin-bottom: 2rem;
}

.contact-details {
    margin-bottom: 3rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1rem;
    background: linear-gradient(135deg, #252119 0%, #1A1813 100%);
    border-radius: 10px;
}

.contact-icon {
    font-size: 1.5rem;
    min-width: 40px;
}

.contact-text h3 {
    color: #9E8A68;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-text p {
    margin: 0;
    color: #C0B09A;
}

.contact-text a {
    color: #9E8A68;
    font-weight: bold;
}

.emergency-info {
    background: linear-gradient(135deg, #252119 0%, #1A1813 100%);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #9E8A68;
}

.emergency-info h3 {
    color: #9E8A68;
    margin-bottom: 1rem;
}

/* Contact Form */
.contact-form-container {
    background: linear-gradient(135deg, #252119 0%, #1A1813 100%);
    padding: 2.5rem;
    border-radius: 15px;
    border: 2px solid #3A3328;
}

.contact-form h2 {
    color: #9E8A68;
    margin-bottom: 1rem;
}

.contact-form > p {
    color: #C0B09A;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #9E8A68;
    font-weight: bold;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #3A3328;
    border-radius: 8px;
    background-color: #0F0E0C;
    color: #F0E8D8;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #9E8A68;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #C0B09A;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.form-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #7A6E5E;
    text-align: center;
}

.form-message {
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 1rem;
}

.form-message.success {
    background-color: rgba(46, 160, 67, 0.2);
    border: 2px solid #2ea043;
    color: #F0E8D8;
}

.form-message.error {
    background-color: rgba(220, 53, 69, 0.15);
    border: 2px solid #dc3545;
    color: #F0E8D8;
}

.form-message h3 {
    color: #2ea043;
    margin-bottom: 0.5rem;
}

.form-message.error h3 {
    color: #dc3545;
}

/* Service Areas */
.service-areas {
    background-color: #1A1813;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.area-card {
    background: linear-gradient(135deg, #252119 0%, #0F0E0C 100%);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid #3A3328;
    transition: all 0.3s ease;
}

.area-card:hover {
    border-color: #9E8A68;
    transform: translateY(-3px);
}

.area-card h3 {
    color: #9E8A68;
    margin-bottom: 1rem;
    text-align: center;
}

.area-card ul {
    list-style: none;
}

.area-card li {
    padding: 0.3rem 0;
    color: #C0B09A;
    position: relative;
    padding-left: 1.2rem;
}

.area-card li::before {
    content: '📍';
    position: absolute;
    left: 0;
}

.areas-note {
    text-align: center;
    color: #7A6E5E;
    font-style: italic;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #6A5A3E 0%, #4E4230 100%);
    color: #F0E8D8;
    text-align: center;
    padding: 80px 0;
}

.cta-content h2 {
    color: #F0E8D8;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    color: #C0B09A;
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-section .btn-primary {
    background-color: #F0E8D8;
    color: #0F0E0C;
}

.cta-section .btn-primary:hover {
    background-color: #9E8A68;
    color: #0F0E0C;
}

/* Footer */
.footer {
    background-color: #0A0908;
    padding: 40px 0 20px;
    border-top: 2px solid #9E8A68;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: #9E8A68;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #C0B09A;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #9E8A68;
}

.footer-logo {
    height: 40px;
    width: auto;
    margin-bottom: 1rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #3A3328;
    color: #7A6E5E;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.mb-1 {
    margin-bottom: 1rem;
}

.mb-2 {
    margin-bottom: 2rem;
}

.mb-3 {
    margin-bottom: 3rem;
}

.mt-1 {
    margin-top: 1rem;
}

.mt-2 {
    margin-top: 2rem;
}

.mt-3 {
    margin-top: 3rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(15, 14, 12, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        gap: 0;
        padding: 2rem 0;
        border-top: 2px solid #9E8A68;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu .nav-link {
        padding: 1rem;
        display: block;
        width: 100%;
    }

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

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .page-hero h1 {
        font-size: 2.2rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .before-after-container {
        grid-template-columns: 1fr;
        height: auto;
    }

    .before-image,
    .after-image {
        height: 200px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .highlights-grid {
        grid-template-columns: 1fr;
    }

    .areas-grid {
        grid-template-columns: 1fr;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .filter-buttons {
        gap: 0.5rem;
    }

    .filter-btn {
        font-size: 0.9rem;
        padding: 0.4rem 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .page-hero h1 {
        font-size: 1.8rem;
    }

    .section-header h2 {
        font-size: 1.6rem;
    }

    .btn {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }

    .btn-large {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }

    .contact-form-container {
        padding: 1.5rem;
    }

    .service-detail {
        padding: 1.5rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-number {
        font-size: 2rem;
    }
}

/* Loading and Animation Classes */
.fade-in {
    opacity: 0;
    animation: fadeIn 0.6s ease-in-out forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.slide-up {
    transform: translateY(30px);
    opacity: 0;
    animation: slideUp 0.6s ease-out forwards;
}

@keyframes slideUp {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Scroll behavior for gallery filtering */
.gallery-item {
    transition: all 0.3s ease;
}

.gallery-item.hidden {
    display: none;
}

/* Form validation styles */
.form-group input:invalid,
.form-group select:invalid,
.form-group textarea:invalid {
    border-color: #dc3545;
}

.form-group input:valid,
.form-group select:valid,
.form-group textarea:valid {
    border-color: #28a745;
}
