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

:root {
    --primary-blue: #228b22;
    --dark-navy: #c86b09;
    --orange-yellow: #b4ff00;
    --light-gray: #b1dd9c3b;
    --white: #FFFFFF;
    --black: #000000;
    --text-dark: #333333;
    --text-light: #666666;
    --border-blue: #ffd700;
    --border-red: #30cc00;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family:'roboto', Arial', 'Helvetica', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

/* ===========================
   Container & Layout
   =========================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

/* ===========================
   Buttons
   =========================== */
.btn {
    display: inline-block;
    padding: 16px 40px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

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

.btn-primary:hover {
    background-color: #005009;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(3, 93, 0, 0.3);
}

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

.btn-secondary:hover {
    background-color: var(--primary-blue);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(43, 126, 193, 0.3);
}

/* ===========================
   Top Bar
   =========================== */
.top-bar {
    background-color: var(--light-gray);
    padding: 12px 0;
    font-size: 14px;
    color: var(--text-dark);
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.opening-hours {
    font-size: 14px;
}

.top-bar-contacts {
    display: flex;
    gap: 25px;
}

.top-contact {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-dark);
    transition: color 0.3s ease;
}

.top-contact:hover {
    color: var(--primary-blue);
}

.top-contact i {
    font-size: 14px;
}

/* ===========================
   Navigation
   =========================== */
.navbar {
    background-color: var(--black);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

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

.nav-menu {
    display: flex;
    gap: 35px;
    align-items: center;
}

.nav-menu li a {
    color: var(--white);
    font-size: 18px;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    color: var(--orange-yellow);
}

.nav-menu li a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--orange-yellow);
}

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

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

/* ===========================
   Hero Section
   =========================== */
.hero {
    position: relative;
    min-height: 700px;
    display: flex;
    align-items: center;
    padding: 100px 0;
    overflow: hidden;
}

.hero-background-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    z-index: 0;
}

.hero-bg-item {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-bg-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.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;
    max-width: 1000px;
    text-align: center;
    margin: 0 auto;
}

.hero-title {
    font-size: 50px;
    color: var(--white);
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 60px;
    font-weight: 800;
    background: linear-gradient(135deg, #F5A623 0%, #FFD700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 30px;
    line-height: 1.2;
}

.hero-text {
    font-size: 18px;
    color: var(--white);
    margin-bottom: 40px;
    line-height: 1.8;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

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

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

.about-image .image-frame {
    position: relative;
    padding: 20px;
}

.about-image .image-frame::before,
.about-image .image-frame::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border: 15px solid;
    z-index: 1;
}

.about-image .image-frame::before {
    top: -20px;
    left: -20px;
    border-color: var(--border-blue) transparent transparent var(--border-blue);
}

.about-image .image-frame::after {
    bottom: -20px;
    right: -20px;
    border-color: transparent var(--orange-yellow) var(--orange-yellow) transparent;
}

.about-image img {
    position: relative;
    z-index: 2;
    border-radius: 8px;
    width: 100%;
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--dark-navy);
    margin-bottom: 20px;
}

.about-subtitle {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.about-tagline {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 25px;
    font-weight: 500;
}

.about-description {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-text .btn {
    margin-top: 20px;
}

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

.services .section-title {
    text-align: center;
}

.services-subtitle {
    text-align: center;
    font-size: 16px;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto 60px;
}

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

.service-card {
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark-navy);
    padding: 20px 20px 10px;
}

.service-list {
    padding: 0 20px 20px;
}

.service-list li {
    font-size: 14px;
    color: var(--text-light);
    padding: 5px 0;
    padding-left: 20px;
    position: relative;
}

.service-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-blue);
    font-weight: bold;
}

.services-button {
    text-align: center;
}

/* ===========================
   Why Choose Us Section
   =========================== */
.why-choose-us {
    padding: 100px 0;
    background-color: var(--light-gray);
}

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

.why-subtitle {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.why-intro {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.why-point {
    margin-bottom: 25px;
}

.why-point h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-navy);
    margin-bottom: 10px;
}

.why-point p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
}

.why-image .image-frame {
    position: relative;
    padding: 20px;
}

.why-image .image-frame::before,
.why-image .image-frame::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border: 15px solid;
    z-index: 1;
}

.why-image .image-frame::before {
    top: -20px;
    right: -20px;
    border-color: var(--border-blue) var(--border-blue) transparent transparent;
}

.why-image .image-frame::after {
    bottom: -20px;
    left: -20px;
    border-color: transparent transparent var(--border-red) var(--border-red);
}

.why-image img {
    position: relative;
    z-index: 2;
    border-radius: 8px;
    width: 100%;
}

/* ===========================
   Gallery Section
   =========================== */
.gallery {
    padding: 100px 0;
    background-color: var(--white);
}

.gallery .section-title {
    text-align: center;
}

.gallery-subtitle {
    text-align: center;
    font-size: 16px;
    color: var(--text-light);
    max-width: 900px;
    margin: 0 auto 40px;
}

.gallery-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 50px;
}

.filter-btn {
    padding: 12px 24px;
    border: none;
    background-color: var(--light-gray);
    color: var(--text-dark);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background-color: var(--orange-yellow);
    color: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 50px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    aspect-ratio: 1/1;
}

.gallery-item.large {
    grid-row: span 2;
    aspect-ratio: auto;
}

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

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

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

.gallery-button {
    text-align: center;
}

/* ===========================
   Reviews Section
   =========================== */
.reviews {
    padding: 100px 0;
    background-color: var(--light-gray);
}

.reviews-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.reviews-image {
    height: 100%;
    display: flex;
    align-items: stretch;
}

.reviews-image .image-frame {
    position: relative;
    padding: 20px;
    flex: 1;
    display: flex;
    align-items: center;
}

.reviews-image .image-frame::before,
.reviews-image .image-frame::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border: 15px solid;
    z-index: 1;
}

.reviews-image .image-frame::before {
    top: -20px;
    left: -20px;
    border-color: var(--border-blue) transparent transparent var(--border-blue);
}

.reviews-image .image-frame::after {
    bottom: -20px;
    right: -20px;
    border-color: transparent var(--orange-yellow) var(--orange-yellow) transparent;
}

.reviews-image img {
    position: relative;
    z-index: 2;
    border-radius: 8px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.reviews-subtitle {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.reviews-intro {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.review-slider {
    position: relative;
    min-height: 400px;
}

.review-card {
    background-color: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.review-card.active {
    opacity: 1;
    visibility: visible;
    position: relative;
}

.quote-icon {
    font-size: 60px;
    color: var(--primary-blue);
    opacity: 0.2;
    line-height: 1;
    margin-bottom: 10px;
}

.quote-icon-end {
    font-size: 60px;
    color: var(--primary-blue);
    opacity: 0.2;
    line-height: 1;
    text-align: right;
    margin-top: 10px;
}

.review-text {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.review-rating {
    margin-bottom: 15px;
}

.review-rating i {
    color: #FFD700;
    font-size: 18px;
    margin-right: 3px;
}

.review-author {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.review-location {
    font-size: 14px;
    color: var(--text-light);
}

.review-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #D3D3D3;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active {
    background-color: var(--primary-blue);
}

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

.contact .section-title {
    text-align: center;
}

.contact-subtitle {
    text-align: center;
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 60px;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    background-color: var(--light-gray);
    padding: 60px;
    border-radius: 12px;
}

.contact-form-wrapper h3,
.contact-details h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark-navy);
    margin-bottom: 25px;
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #D3D3D3;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
}

.form-group textarea {
    resize: vertical;
}

.contact-detail-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    color: var(--white);
    font-size: 20px;
}

.contact-info h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-navy);
    margin-bottom: 8px;
}

.contact-info p {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 5px;
}

.contact-info a {
    color: var(--text-light);
    transition: color 0.3s ease;
}

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

.contact-info .emergency {
    color: var(--border-red);
    font-weight: 500;
}

/* ===========================
   Footer
   =========================== */
.footer {
    background-color: var(--black);
    padding: 60px 0 30px;
}

.footer-content {
    text-align: center;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    height: 100px;
    margin: 0 auto;
}

.footer-copyright {
    color: var(--white);
    font-size: 14px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* ===========================
   Responsive Design
   =========================== */

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

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .about-content,
    .why-content,
    .reviews-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .why-content {
        direction: ltr;
    }

    .why-text {
        order: 1;
    }

    .why-image {
        order: 2;
    }

    .hero-subtitle {
        font-size: 42px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .top-bar-content {
        flex-direction: column;
        text-align: center;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 120px;
        flex-direction: column;
        background-color: var(--black);
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        padding: 30px 0;
        gap: 20px;
    }

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

    .mobile-menu-toggle {
        display: flex;
    }

    .hero {
        min-height: 600px;
        padding: 60px 0;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 32px;
    }

    .hero-text {
        font-size: 16px;
    }

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

    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }

    .section-title {
        font-size: 32px;
    }

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

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

    .contact-content {
        padding: 40px 20px;
        gap: 40px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-filters {
        gap: 5px;
    }

    .filter-btn {
        padding: 10px 16px;
        font-size: 12px;
    }

    .hero-subtitle {
        font-size: 28px;
    }
}
