:root {
    --charcoal: #1A1A2E;
    --white: #FFFFFF;
    --burnt-orange: #C44900;
    --burnt-orange-dark: #A33D00;
    --gray-light: #F5F5F5;
    --gray-medium: #6B6B6B;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Sora', sans-serif;
    color: var(--charcoal);
    line-height: 1.6;
    background-color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
}

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

.btn {
    display: inline-block;
    padding: 16px 32px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background-color: var(--burnt-orange);
    color: var(--white);
    border: 2px solid var(--burnt-orange);
}

.btn-primary:hover {
    background-color: var(--burnt-orange-dark);
    border-color: var(--burnt-orange-dark);
}

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

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

.btn-dark {
    background-color: var(--charcoal);
    color: var(--white);
    border: 2px solid var(--charcoal);
}

.btn-dark:hover {
    background-color: transparent;
    color: var(--charcoal);
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--charcoal);
    z-index: 1000;
    padding: 16px 0;
}

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

.nav-logo {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
}

.nav-logo span {
    color: var(--burnt-orange);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.nav-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    font-weight: 600;
    font-size: 1rem;
}

.nav-phone:hover {
    color: var(--burnt-orange);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(26, 26, 46, 0.7), rgba(26, 26, 46, 0.85)),
                url('../images/pexels-enis-yavuz-3516387-5276374.jpg') center/cover no-repeat;
    padding-top: 80px;
    text-align: center;
}

.hero-content {
    max-width: 900px;
    padding: 40px 24px;
}

.hero h1 {
    font-size: 4rem;
    color: var(--white);
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: 'Outfit', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--burnt-orange);
    display: block;
}

.stat-label {
    color: var(--white);
    font-size: 1rem;
    font-weight: 500;
}

/* Services Section */
.services {
    padding: 120px 0;
    background-color: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-tag {
    display: inline-block;
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--burnt-orange);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.section-title {
    font-size: 2.5rem;
    color: var(--charcoal);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray-medium);
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.service-category {
    padding: 32px;
    border: 1px solid #E5E5E5;
    border-radius: 8px;
}

.service-category h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--charcoal);
}

.service-category ul {
    list-style: none;
}

.service-category li {
    padding: 8px 0;
    border-bottom: 1px solid #F0F0F0;
    color: var(--gray-medium);
    font-size: 0.95rem;
}

.service-category li:last-child {
    border-bottom: none;
}

/* About Section */
.about {
    padding: 120px 0;
    background-color: var(--gray-light);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-quote {
    position: relative;
    padding: 48px;
    background-color: var(--charcoal);
    border-radius: 8px;
}

.about-quote::before {
    content: '"';
    font-family: 'Outfit', sans-serif;
    font-size: 8rem;
    color: var(--burnt-orange);
    position: absolute;
    top: -20px;
    left: 20px;
    line-height: 1;
    opacity: 0.3;
}

.quote-text {
    font-family: 'Outfit', sans-serif;
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--white);
    line-height: 1.4;
    position: relative;
    z-index: 1;
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 24px;
    color: var(--charcoal);
}

.about-content p {
    color: var(--gray-medium);
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.about-content .owner {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid #E5E5E5;
}

.owner-info h4 {
    font-size: 1.1rem;
    color: var(--charcoal);
}

.owner-info span {
    color: var(--burnt-orange);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Testimonials Section */
.testimonials {
    padding: 120px 0;
    background-color: var(--white);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

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

.testimonial-card.featured {
    background-color: var(--charcoal);
}

.testimonial-card.featured .testimonial-text {
    color: var(--white);
}

.testimonial-card.featured .testimonial-author {
    color: rgba(255, 255, 255, 0.8);
}

.testimonial-quote {
    font-size: 4rem;
    color: var(--burnt-orange);
    line-height: 1;
    margin-bottom: -10px;
    display: block;
    opacity: 0.5;
}

.testimonial-text {
    font-size: 1.1rem;
    color: var(--charcoal);
    line-height: 1.7;
    margin-bottom: 24px;
}

.testimonial-author {
    font-weight: 600;
    color: var(--gray-medium);
    font-size: 0.9rem;
}

/* Trust Section */
.trust {
    padding: 100px 0;
    background-color: var(--charcoal);
    text-align: center;
}

.trust h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 48px;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.badge-item {
    text-align: center;
}

.badge-icon {
    width: 80px;
    height: 80px;
    border: 2px solid var(--burnt-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: var(--burnt-orange);
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
}

.badge-label {
    color: var(--white);
    font-weight: 500;
}

/* Contact Section */
.contact {
    padding: 120px 0;
    background-color: var(--white);
}

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

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 24px;
    color: var(--charcoal);
}

.contact-info p {
    color: var(--gray-medium);
    margin-bottom: 32px;
    font-size: 1.05rem;
}

.contact-details {
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-item-icon {
    width: 48px;
    height: 48px;
    background-color: var(--gray-light);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--burnt-orange);
    flex-shrink: 0;
}

.contact-item-text h4 {
    font-size: 1rem;
    margin-bottom: 4px;
    color: var(--charcoal);
}

.contact-item-text p {
    margin: 0;
    color: var(--gray-medium);
    font-size: 0.95rem;
}

.contact-item-text a {
    color: var(--burnt-orange);
    font-weight: 500;
}

.contact-item-text a:hover {
    text-decoration: underline;
}

.map-container {
    border-radius: 8px;
    overflow: hidden;
    height: 300px;
    background-color: var(--gray-light);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

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

.contact-form h3 {
    font-size: 1.5rem;
    margin-bottom: 24px;
    color: var(--charcoal);
}

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

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--charcoal);
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #DDD;
    border-radius: 4px;
    font-family: 'Sora', sans-serif;
    font-size: 1rem;
    background-color: var(--white);
    transition: border-color 0.3s ease;
}

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

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

.contact-form .btn {
    width: 100%;
}

/* Footer */
footer {
    background-color: var(--charcoal);
    padding: 40px 0;
    text-align: center;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}

.footer-logo {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
}

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

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--burnt-orange);
}

.footer-social a {
    color: var(--white);
    font-size: 1.25rem;
    margin-left: 16px;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: var(--burnt-orange);
}

.footer-bottom {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

/* Mobile Styles */
@media (max-width: 968px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

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

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

    .mobile-menu-btn {
        display: block;
    }

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

    .hero-stats {
        gap: 32px;
    }

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

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

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

    .about-quote {
        padding: 32px;
    }

    .quote-text {
        font-size: 1.4rem;
    }

    .trust-badges {
        gap: 32px;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-social a {
        margin: 0 8px;
    }
}

/* Mobile Menu */
.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--charcoal);
    z-index: 999;
    padding: 80px 24px 24px;
}

.mobile-nav.active {
    display: block;
}

.mobile-nav a {
    display: block;
    color: var(--white);
    font-size: 1.25rem;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav .mobile-phone {
    display: block;
    background-color: var(--burnt-orange);
    color: var(--white);
    text-align: center;
    padding: 16px;
    border-radius: 4px;
    margin-top: 24px;
    font-weight: 600;
}

/* Loading Animation */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--charcoal);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

.loader-wrench {
    width: 48px;
    height: 48px;
    animation: tighten 0.6s ease-in-out infinite;
    transform-origin: 50% 15%;
    position: relative;
}

.loader-wrench svg {
    width: 100%;
    height: 100%;
    fill: var(--burnt-orange);
}

@keyframes tighten {
    0%, 100% {
        transform: rotate(-25deg);
    }
    50% {
        transform: rotate(25deg);
    }
}

.loader-text {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 3px;
}

.loader-text span {
    color: var(--burnt-orange);
}

.loader-bar {
    width: 180px;
    height: 3px;
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 2px;
    overflow: hidden;
}

.loader-bar-fill {
    height: 100%;
    background-color: var(--burnt-orange);
    width: 0%;
    animation: load 1.5s ease-out forwards;
}

@keyframes load {
    0% {
        width: 0%;
    }
    100% {
        width: 100%;
    }
}

.page-loader.hidden {
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

/* Schema.org JSON-LD */
.hidden {
    display: none;
}
