/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Abel', sans-serif;
    font-size: 18px;
    color: #1F1F1F;
    letter-spacing: 0.5px;
    line-height: 1.6;
    background: #fff;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

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

/* ===== HEADER ===== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

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

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

.logo img {
    height: 90px;
    width: auto;
}

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

.main-nav a {
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #1F1F1F;
    font-weight: 400;
    position: relative;
    padding: 5px 0;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #3B4D5E;
    transition: width 0.3s;
}

.main-nav a:hover::after {
    width: 100%;
}

.header-phone {
    font-size: 18px;
    font-weight: 700;
    color: #3B4D5E;
    letter-spacing: 1px;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: #1F1F1F;
    transition: 0.3s;
}

/* ===== HERO VIDEO ===== */
.hero-video {
    position: relative;
    height: 830px;
    overflow: hidden;
    margin-top: 100px;
    border: 14px solid #fff;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.hero-bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 120%;
    width: auto;
    height: auto;
    transform: translate(-50%, -44%);
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
    color: #fff;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 56px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 4px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 22px;
    letter-spacing: 2px;
    margin-bottom: 35px;
    opacity: 0.9;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 14px 40px;
    font-family: 'Abel', sans-serif;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
}

.btn-primary {
    background: #3B4D5E;
    color: #fff;
}

.btn-primary:hover {
    background: #2E3E4D;
}

.btn-outline {
    background: transparent;
    color: #3B4D5E;
    border: 2px solid #3B4D5E;
}

.btn-outline:hover {
    background: #3B4D5E;
    color: #fff;
}

.btn-view {
    background: transparent;
    color: #3B4D5E;
    border: 2px solid #3B4D5E;
    padding: 10px 30px;
    font-size: 14px;
}

.btn-view:hover {
    background: #3B4D5E;
    color: #fff;
}

.full-width {
    width: 100%;
}

/* ===== ACCENT DIVIDER ===== */
.green-divider {
    width: 60px;
    height: 3px;
    background: #C0735B;
    margin: 15px 0 25px;
}

.green-divider.center {
    margin-left: auto;
    margin-right: auto;
}

.green-divider.light {
    background: #C0735B;
}

/* ===== INTRO SECTION ===== */
.intro-section {
    text-align: center;
    padding: 100px 20px;
    max-width: 900px;
    margin: 0 auto;
}

.intro-section h2 {
    font-size: 40px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
    color: #1F1F1F;
}

.intro-section .green-divider {
    margin-left: auto;
    margin-right: auto;
}

.intro-text {
    font-size: 18px;
    color: #777;
    line-height: 1.8;
    margin-bottom: 35px;
}

/* ===== SERVICES ===== */
.services-section {
    padding: 80px 0;
    background: #f9f9f9;
}

.section-title {
    font-size: 40px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
    margin-bottom: 10px;
}

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

.service-card {
    background: #fff;
    text-align: center;
    padding: 0;
    transition: transform 0.3s, box-shadow 0.3s;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.service-img {
    width: 100%;
    height: 250px;
    background-size: cover;
    background-position: center;
}

.service-card h3 {
    font-size: 22px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 25px;
    color: #1F1F1F;
}

.card-divider {
    width: 40px;
    height: 2px;
    background: #C0735B;
    margin: 15px auto;
}

.service-card p {
    font-size: 16px;
    color: #777;
    padding: 0 25px;
    line-height: 1.7;
    margin-bottom: 25px;
}

.service-card .btn {
    margin-bottom: 30px;
}

/* ===== ABOUT ===== */
.about-section {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.about-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.about-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
}

.about-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 100px 0;
    text-align: center;
    color: #fff;
}

.about-content h2 {
    font-size: 40px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.about-grid {
    display: flex;
    justify-content: center;
    gap: 80px;
    margin: 50px 0;
}

.about-number {
    font-size: 48px;
    font-weight: 700;
    color: #C0735B;
}

/* Nav hover underline uses coral accent */
.main-nav a::after {
    background: #C0735B;
}

.about-item p {
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 10px;
    opacity: 0.9;
}

.about-text {
    max-width: 700px;
    margin: 0 auto 35px;
    font-size: 18px;
    line-height: 1.8;
    opacity: 0.9;
}

/* ===== GALLERY ===== */
.gallery-section {
    padding: 80px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 50px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    height: 280px;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 25px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: #fff;
    transform: translateY(100%);
    transition: transform 0.4s;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h4 {
    font-size: 18px;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.gallery-overlay p {
    font-size: 14px;
    opacity: 0.8;
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
    padding: 80px 0;
    background: #f9f9f9;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background: #fff;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}

.stars {
    color: #f4a623;
    font-size: 22px;
    margin-bottom: 20px;
    letter-spacing: 3px;
}

.testimonial-card p {
    font-size: 16px;
    color: #777;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 25px;
}

.testimonial-card h4 {
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #1F1F1F;
}

.testimonial-card span {
    font-size: 14px;
    color: #999;
}

/* ===== CONTACT ===== */
.contact-section {
    padding: 80px 0;
}

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

.contact-info h2 {
    font-size: 36px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.contact-info > p {
    font-size: 16px;
    color: #777;
    line-height: 1.8;
    margin-bottom: 30px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: #777;
}

.contact-item a {
    color: #777;
}

.contact-item a:hover {
    color: #3B4D5E;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    font-family: 'Abel', sans-serif;
    font-size: 16px;
    padding: 15px 20px;
    border: 1px solid #ddd;
    background: #f9f9f9;
    color: #1F1F1F;
    letter-spacing: 1px;
    outline: none;
    transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: #3B4D5E;
}

.contact-form textarea {
    resize: vertical;
}

/* ===== FOOTER ===== */
.site-footer {
    background: #111;
    color: #fff;
    padding-top: 60px;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
}

.footer-logo {
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #fff;
    display: inline-block;
    margin-bottom: 15px;
}

.footer-logo span {
    color: #C0735B;
}

.footer-left p {
    font-size: 15px;
    color: #999;
    line-height: 1.7;
    margin-bottom: 20px;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.social-icons a:hover {
    background: #3B4D5E;
}

.footer-center h4,
.footer-right h4 {
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    color: #fff;
}

.footer-center ul,
.footer-right ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-center a {
    font-size: 15px;
    color: #999;
    transition: color 0.3s;
}

.footer-center a:hover {
    color: #C0735B;
}

.footer-right li {
    font-size: 15px;
    color: #999;
}

.footer-bottom {
    text-align: center;
    padding: 25px 20px;
    margin-top: 50px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
    font-size: 13px;
    color: #666;
    letter-spacing: 1px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .services-grid,
    .gallery-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-grid {
        gap: 40px;
    }

    .footer-inner {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .hero-video {
        height: 600px;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-content p {
        font-size: 18px;
    }

    .main-nav {
        display: none;
        position: absolute;
        top: 100px;
        left: 0;
        width: 100%;
        background: #fff;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        padding: 20px;
    }

    .main-nav.open {
        display: block;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 20px;
    }

    .mobile-toggle {
        display: flex;
    }

    .header-phone {
        display: none;
    }

    .section-title,
    .intro-section h2,
    .about-content h2,
    .contact-info h2 {
        font-size: 30px;
    }

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

    .about-grid {
        flex-direction: column;
        gap: 30px;
    }

    .about-number {
        font-size: 40px;
    }

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

    .footer-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-icons {
        justify-content: center;
    }

    .intro-section {
        padding: 60px 20px;
    }
}

@media (max-width: 480px) {
    .hero-video {
        height: 500px;
    }

    .hero-content h1 {
        font-size: 28px;
        letter-spacing: 2px;
    }

    .btn {
        padding: 12px 25px;
        font-size: 14px;
    }
}
