:root {
    --bg-color: #ffffff; 
    --secondary-color: #e0e0e0; 
    --primary-color: #c59e51; /* Golden */
    --primary-hover: #d3b063;
    --text-color: #1a1a1a; /* Dark Charcoal */
    --text-muted: #707070; /* Medium Gray */
    --border-color: #cccccc;
    --header-bg: #1a1a1a; /* Dark Charcoal / Black */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Top Bar */
.top-bar {
    background-color: var(--header-bg);
    color: #e5e5e5;
    font-size: 0.85rem;
    padding: 10px 5%;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.top-bar-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.top-bar-left span, .top-bar-right span {
    display: inline-flex;
    align-items: center;
    margin-right: 20px;
}
.top-bar-left span svg, .top-bar-right span svg {
    margin-right: 8px;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background-color: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 35px;
}

nav ul li a {
    text-decoration: none;
    color: var(--header-bg);
    font-size: 0.95rem;
    font-weight: 600;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: var(--primary-color);
}

/* Hero Slider Section */
.hero-slider-section {
    position: relative;
    width: 100%;
    height: 100vh;
    padding: 0;
    margin: 0;
    overflow: hidden;
}

.hero-slider {
    width: 100%;
    height: 100%;
    position: relative;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: white;
    text-align: left;
    padding: 0 5%;
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    z-index: 2;
}

.hero-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    cursor: pointer;
    padding: 15px 20px;
    font-size: 1.5rem;
    z-index: 3;
    transition: background 0.3s;
    border-radius: 5px;
}
.hero-nav:hover {
    background: var(--primary-color);
}
.hero-nav.prev {
    left: 20px;
}
.hero-nav.next {
    right: 20px;
}

.hero-content {
    background: rgba(0, 0, 0, 0.6);
    padding: 40px;
    border-radius: 8px;
    max-width: 500px;
    backdrop-filter: blur(5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 800;
    line-height: 1.2;
    color: #ffffff;
}

.hero-content p {
    font-size: 1.15rem;
    margin-bottom: 30px;
    color: #e5e5e5;
}

.page-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7)), url('images/about-lift.jpg') no-repeat center center/cover;
    height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.page-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
}

.btn {
    padding: 14px 35px;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background: var(--primary-hover);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(242, 139, 130, 0.4);
}

/* Global Sections */
section {
    padding: 90px 5%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-bg-light {
    background-color: var(--secondary-color);
}

.section-bg-golden {
    background-color: var(--primary-color);
}
.section-bg-golden .section-title {
    color: var(--header-bg);
}
.section-bg-golden .section-title::after {
    background: var(--header-bg);
}

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

.section-title {
    text-align: center;
    font-size: 2.8rem;
    color: var(--header-bg);
    margin: 0 auto 60px auto;
    font-weight: 700;
    position: relative;
    display: block;
    width: fit-content;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: var(--primary-color);
}

/* About Grid - 4 Columns */
.about-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    width: 100%;
}

.about-card {
    background: #ffffff;
    padding: 40px 25px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
    border-color: var(--primary-color);
}

.about-card svg {
    width: 50px;
    height: 50px;
    fill: none;
    stroke: var(--primary-color);
    stroke-width: 1.5;
    margin-bottom: 20px;
}

/* Services Page Grid */
.services-page-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    width: 100%;
}

/* Services Preview Grid / Slider */
.services-slider-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 20px 60px;
}

.services-track {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease-in-out;
}

.service-card {
    flex: 0 0 calc(33.333% - 20px);
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    text-align: center;
}

.services-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--header-bg);
    color: var(--primary-color);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.services-arrow:hover {
    background: var(--primary-color);
    color: #ffffff;
}

.services-arrow.prev {
    left: 0;
}

.services-arrow.next {
    right: 0;
}

.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.service-card h3 {
    margin: 20px 0 10px;
    color: var(--header-bg);
}

.service-card p {
    color: var(--text-muted);
    padding: 0 20px 25px;
    font-size: 0.95rem;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    border-color: var(--primary-color);
}


.about-card h3 {
    margin-bottom: 15px;
    color: var(--text-color);
    font-size: 1.25rem;
}

.about-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Split Section (Image + Content) */
.split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
}
.split-section.reverse {
    direction: rtl;
}
.split-section.reverse > * {
    direction: ltr;
}
.split-image {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.split-content h2 {
    font-size: 2.5rem;
    color: var(--header-bg);
    margin-bottom: 25px;
    line-height: 1.2;
}
.split-content p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.7;
}

@media (max-width: 900px) {
    .split-section {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    width: 100%;
}

.feature-card {
    background-color: #ffffff;
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.4s ease;
    border: 1px solid var(--border-color);
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-color);
}

.feature-card h3 {
    margin-bottom: 15px;
    color: var(--text-color);
    font-size: 1.4rem;
}

.feature-card p {
    color: var(--text-muted);
}

/* Why Choose Us Icons List */
.why-choose-list {
    list-style: none;
    padding: 0;
}
.why-choose-list li {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: var(--text-color);
    background: #ffffff;
    padding: 15px 25px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    box-shadow: 0 3px 10px rgba(0,0,0,0.02);
}
.why-choose-list li svg {
    width: 24px;
    height: 24px;
    fill: var(--primary-color);
    margin-right: 15px;
    flex-shrink: 0;
}

/* Counter Section - Horizontal */
.counter-section {
    background: var(--header-bg);
    width: 100%;
    padding: 50px 5%;
}

.counter-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.counter-box {
    text-align: center;
    border-right: 1px solid rgba(255,255,255,0.2);
}
.counter-box:last-child {
    border-right: none;
}

.counter-box h2 {
    font-size: 3.5rem;
    margin-bottom: 5px;
    font-weight: 800;
    color: #ffffff;
}

.counter-box p {
    font-size: 1rem;
    font-weight: 500;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Testimonial Slider */
.slider-container {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    padding-bottom: 40px;
}

.slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slide {
    min-width: 100%;
    background: #ffffff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    text-align: center;
    border: 1px solid var(--border-color);
}

.slide p {
    font-size: 1.15rem;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 25px;
    position: relative;
}
.slide p::before {
    content: '"';
    font-size: 3rem;
    color: var(--border-color);
    position: absolute;
    top: -20px;
    left: -20px;
    font-family: serif;
}

.slide h4 {
    color: var(--header-bg);
    font-size: 1.2rem;
}
.slide .role {
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: bold;
}

.slider-dots {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--border-color);
    cursor: pointer;
    transition: background 0.3s;
}

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

/* FAQ */
.faq-item {
    margin-bottom: 20px;
    background: #ffffff;
    border-radius: 8px;
    padding: 30px;
    border: 1px solid var(--border-color);
    transition: transform 0.3s;
}

.faq-item:hover {
    transform: translateX(10px);
    border-color: var(--primary-color);
}

.faq-item h4 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--text-color);
}

/* Contact Details */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    width: 100%;
}

.contact-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.contact-info-box {
    background: #ffffff;
    padding: 30px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    transition: transform 0.3s;
}

.contact-info-box:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.contact-info-box h3 {
    color: var(--header-bg);
    margin-bottom: 12px;
}

.contact-form {
    background: #ffffff;
    padding: 50px 40px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.contact-form h3 {
    color: var(--header-bg);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 18px;
    background: #f8f9fa;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    color: var(--text-color);
    font-family: inherit;
    margin-bottom: 20px;
    font-size: 1rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: #ffffff;
}

/* FAQ Accordion */
.faq-accordion {
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
}

/* Map Container */
.map-container {
    width: 100%;
    height: 450px;
    margin-top: 50px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    display: block;
}
.faq-item {
    background-color: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: box-shadow 0.3s;
}
.faq-item.active {
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}
.faq-header {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--header-bg);
}
.faq-icon {
    transition: transform 0.3s;
    display: inline-block;
}
.faq-item.active .faq-icon {
    transform: rotate(180deg);
}
.faq-content {
    max-height: 0;
    padding: 0 20px;
    opacity: 0;
    transition: all 0.3s ease-out;
}
.faq-item.active .faq-content {
    max-height: 500px;
    padding: 0 20px 20px;
    opacity: 1;
}

/* Footer */
footer {
    background-color: #ffffff;
    color: var(--text-muted);
    border-top: 1px solid var(--border-color);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    padding: 70px 5%;
}

.footer-section h3 {
    color: var(--header-bg);
    margin-bottom: 25px;
    font-size: 1.25rem;
}

.footer-section p {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.footer-section p svg {
    margin-right: 10px;
    flex-shrink: 0;
    margin-top: 2px;
}

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

.footer-section ul li {
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.footer-section a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--primary-color);
}

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

.gallery-grid img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 4px;
    transition: transform 0.3s;
}

.gallery-grid img:hover {
    transform: scale(1.05);
}

.footer-bottom {
    text-align: center;
    background-color: var(--header-bg);
    color: var(--primary-color);
    padding: 20px 5%;
    font-size: 0.95rem;
}

/* Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.hamburger {
    display: none;
    cursor: pointer;
    color: var(--header-bg);
}

/* Responsive */
@media (max-width: 992px) {
    .about-grid, .counter-grid, .services-page-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .service-card {
        flex: 0 0 calc(50% - 15px);
    }
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    .counter-box:nth-child(2) {
        border-right: none;
    }
    .counter-box {
        border-bottom: 1px solid rgba(255,255,255,0.2);
        padding-bottom: 20px;
    }
    .counter-box:nth-child(3), .counter-box:nth-child(4) {
        border-bottom: none;
    }
    .top-bar-container {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .about-grid, .counter-grid, .footer-content, .services-page-grid {
        grid-template-columns: 1fr;
    }
    .service-card {
        flex: 0 0 100%;
    }
    .counter-box {
        border-right: none;
    }
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .hamburger {
        display: block;
    }
    .nav-menu {
        display: none;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        background-color: #ffffff;
        box-shadow: 0 10px 15px rgba(0,0,0,0.1);
        padding: 20px 0;
    }
    .nav-menu.active {
        display: block;
    }
    .nav-menu ul {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    header {
        flex-wrap: wrap;
    }
}
