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

:root {
    --primary-dark: #1a1a1a;
    --primary-gold: #d4af37;
    --text-light: #f5f5f5;
    --text-dark: #2c2c2c;
    --accent-orange: #ff9500;
    --light-bg: #f8f8f8;
    --border-color: #e0e0e0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lato', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: #fff;
}

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

/* Navigation */
.navbar {
    background: linear-gradient(to bottom, rgba(26, 26, 26, 0.99), rgba(26, 26, 26, 0.97));
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

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

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

.logo img {
    height: 70px;
    width: auto;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(212, 175, 55, 0.15));
}

.logo img:hover {
    transform: scale(1.08);
    filter: drop-shadow(0 4px 8px rgba(212, 175, 55, 0.3));
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0;
    align-items: center;
    flex: 1;
    justify-content: center;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.8rem 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    display: block;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-gold);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background-color: var(--primary-gold);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 60%;
}

.nav-cta {
    background-color: var(--primary-gold);
    color: var(--primary-dark);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 0.9rem 1.8rem;
    border-radius: 3px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    flex-shrink: 0;
    display: inline-block;
}

.nav-cta:hover {
    background-color: var(--accent-orange);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(255, 149, 0, 0.3);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    overflow: hidden;
    padding-top: 24vh;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.35)), url('images/hero.png') center/cover no-repeat;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: #ffffff;
    max-width: 2000px;
    padding: 0 2rem;
    text-align: center;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 4px 4px 16px rgba(0, 0, 0, 1), 2px 2px 8px rgba(0, 0, 0, 0.9);
    line-height: 1.4;
    letter-spacing: -1px;
    color: #ffffff;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    text-shadow: 3px 3px 12px rgba(0, 0, 0, 1), 1px 1px 6px rgba(0, 0, 0, 0.9);
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: 0.3px;
    color: #ffffff;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 8rem;
}

.btn {
    display: inline-block;
    padding: 1.1rem 2.5rem;
    text-decoration: none;
    font-weight: 700;
    border-radius: 2px;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    border: 2px solid transparent;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background-color: var(--primary-gold);
    color: var(--primary-dark);
}

.btn-primary:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
    background-color: rgba(0, 0, 0, 0.4);
    color: var(--primary-gold);
    border: 2px solid var(--primary-gold);
}

.btn-secondary:hover {
    background-color: var(--primary-gold);
    color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
}

/* Services Section */
.services {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.75), rgba(26, 26, 26, 0.70)), url('images/services.png') center/cover;
    background-attachment: fixed;
    color: var(--text-light);
}

.services h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--primary-gold);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

.service-card {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
    height: 350px;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.25);
}

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

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

.carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.carousel-image {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.carousel-image.active {
    opacity: 1;
}

.service-card-carousel:hover .carousel-image.active {
    opacity: 0;
}

.service-card-carousel:hover .carousel-image:not(.active) {
    opacity: 1;
}

.service-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.7), transparent);
    color: var(--text-light);
    padding: 3rem 2rem 2rem;
    min-height: 140px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: all 0.3s ease;
}

.service-card:hover .service-overlay {
    background: linear-gradient(to top, rgba(212, 175, 55, 0.15), rgba(0, 0, 0, 0.95), transparent);
}

.service-overlay h3 {
    font-size: 1.6rem;
    text-align: left;
    font-weight: 700;
    width: 100%;
    margin-bottom: 0.8rem;
    color: var(--primary-gold);
}

.service-overlay p {
    font-size: 0.95rem;
    color: #ddd;
    font-weight: 400;
    line-height: 1.5;
}

/* About Section */
.about {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.55), rgba(26, 26, 26, 0.50)), url('images/about.png') center/cover;
    background-attachment: fixed;
    padding: 6rem 0;
    text-align: center;
    color: var(--text-light);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: transparent;
    z-index: 1;
}

.about .container {
    position: relative;
    z-index: 2;
}

.about h2 {
    font-size: 3rem;
    margin-bottom: 0.8rem;
    color: var(--primary-gold);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-subtitle {
    font-size: 1.2rem;
    color: var(--primary-gold);
    margin-bottom: 2rem;
    font-weight: 400;
    letter-spacing: 1px;
}

.about-text {
    font-size: 1.1rem;
    margin-bottom: 3.5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
    font-weight: 400;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.value-item {
    text-align: left;
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-gold);
}

.value-number {
    display: none;
}

.value-item h4 {
    font-size: 1.1rem;
    color: var(--primary-gold);
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.value-item p {
    font-size: 0.9rem;
    color: #ddd;
    font-weight: 400;
    line-height: 1.7;
}

/* Why Choose Section */
.why-choose {
    padding: 6rem 0;
    background-color: #f8f8f8;
}

.why-choose h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--text-dark);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

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

.why-text h3 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.why-text p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.why-list {
    list-style: none;
    padding: 0;
}

.why-list li {
    font-size: 1rem;
    color: #555;
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    font-weight: 500;
}

.why-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-gold);
    font-weight: 700;
    font-size: 1.2rem;
}

.service-area-map {
    position: relative;
    height: 400px;
    border-radius: 3px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.map-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Contact Section */
.contact {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.85), rgba(26, 26, 26, 0.80)), url('images/services.png') center/cover;
    background-attachment: fixed;
    padding: 6rem 0;
    color: var(--text-light);
}

.contact h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--primary-gold);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.contact-subtitle {
    text-align: center;
    color: #ccc;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    font-weight: 400;
}

.contact-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 8px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.contact-card:hover {
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.15);
    transform: translateY(-5px);
}

.contact-card h3 {
    font-size: 1.6rem;
    color: var(--primary-gold);
    margin-bottom: 2rem;
    font-weight: 700;
}

.contact-detail {
    margin-bottom: 1.8rem;
}

.contact-detail strong {
    display: block;
    color: var(--primary-gold);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.contact-detail p {
    color: #ddd;
    font-size: 1.1rem;
    font-weight: 500;
}

.contact-detail a {
    color: #ddd;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-detail a:hover {
    color: var(--primary-gold);
}

.contact-benefits {
    list-style: none;
    padding: 0;
}

.contact-benefits li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    color: #ddd;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.6;
}

.contact-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-gold);
    font-weight: 700;
    font-size: 1.2rem;
}

/* Inquiry Section */
.inquiry {
    background-color: #1a1a1a;
    color: var(--text-light);
    padding: 5rem 0;
}

.inquiry h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-gold);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.inquiry-form {
    max-width: 900px;
    margin: 0 auto;
}

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

.form-group {
    display: flex;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.inquiry-form input,
.inquiry-form textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #444;
    border-radius: 3px;
    font-size: 0.95rem;
    font-family: 'Lato', sans-serif;
    background-color: #2a2a2a;
    color: var(--text-light);
    transition: all 0.3s ease;
}

.inquiry-form input::placeholder,
.inquiry-form textarea::placeholder {
    color: #888;
}

.inquiry-form input:focus,
.inquiry-form textarea:focus {
    outline: none;
    border-color: var(--primary-gold);
    background-color: #333;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.submit-btn {
    width: 100%;
    background-color: var(--primary-gold);
    color: var(--primary-dark);
    padding: 1.2rem;
    border: none;
    border-radius: 3px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-btn:hover {
    background-color: var(--accent-orange);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 149, 0, 0.3);
}

/* Footer */
.footer {
    background: linear-gradient(to bottom, rgba(26, 26, 26, 0.99), rgba(20, 20, 20, 1));
    color: var(--text-light);
    padding: 4rem 0 2rem;
    border-top: 3px solid var(--primary-gold);
}

.footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-logo {
    text-align: center;
    margin-bottom: 2rem;
}

.footer-logo-img {
    height: 60px;
    width: auto;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(212, 175, 55, 0.2));
}

.footer-logo-img:hover {
    transform: scale(1.08);
    filter: drop-shadow(0 4px 8px rgba(212, 175, 55, 0.3));
}

.footer-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    font-size: 1.2rem;
    color: var(--primary-gold);
    margin-bottom: 1rem;
    font-weight: 700;
}

.footer-section-main {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    grid-column: 1;
}

.footer-logo {
    flex-shrink: 0;
    margin-bottom: 0;
    display: flex;
    align-items: center;
}

.footer-logo-img {
    height: 65px;
    width: auto;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(212, 175, 55, 0.2));
}

.footer-logo-img:hover {
    transform: scale(1.08);
    filter: drop-shadow(0 4px 8px rgba(212, 175, 55, 0.3));
}

.footer-info {
    flex: 1;
}

.footer-info h4 {
    font-size: 1.2rem;
    color: var(--primary-gold);
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.footer-info p {
    font-size: 0.95rem;
    color: #ccc;
    line-height: 1.7;
}

.footer-section p {
    font-size: 0.95rem;
    color: #ccc;
    line-height: 1.7;
    margin-bottom: 0.8rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

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

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-section strong {
    color: var(--primary-gold);
    font-weight: 600;
}

.footer-bottom {
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    padding-top: 2rem;
    text-align: center;
}

.footer-tagline {
    font-size: 0.95rem;
    color: #bbb;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.footer-year {
    font-size: 0.85rem;
    color: #888;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .nav-menu {
        gap: 0;
        width: 100%;
        order: 3;
        justify-content: center;
    }

    .nav-link {
        padding: 0.7rem 0.8rem;
        font-size: 0.75rem;
        letter-spacing: 0.3px;
    }

    .nav-cta {
        order: 2;
        padding: 0.7rem 1.2rem;
        font-size: 0.85rem;
    }

    .hero {
        height: 80vh;
        padding-top: 8vh;
    }

    .hero-content {
        max-width: 600px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

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

    .hero-buttons {
        flex-direction: column;
        margin-top: 4rem;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .services h2,
    .about h2,
    .contact h2 {
        font-size: 2rem;
    }

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

    .service-card {
        height: 250px;
    }

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

    .value-item {
        padding: 1.5rem;
    }

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

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

    .footer-section-main {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-logo-img {
        height: 50px;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 1rem;
        gap: 0.5rem;
    }

    .logo img {
        height: 45px;
    }

    .nav-menu {
        gap: 0;
    }

    .nav-link {
        padding: 0.5rem 0.3rem;
        font-size: 0.6rem;
        letter-spacing: 0.1px;
    }

    .nav-cta {
        padding: 0.5rem 0.6rem;
        font-size: 0.65rem;
        letter-spacing: 0.2px;
    }

    .hero {
        height: 100vh;
        padding-top: 10vh;
    }

    .hero-content {
        max-width: 100%;
        padding: 0 1rem;
    }

    .hero-content h1 {
        font-size: 1.6rem;
        line-height: 1.3;
    }

    .hero-subtitle {
        font-size: 0.85rem;
        margin-bottom: 1.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        margin-top: 3rem;
        gap: 1rem;
    }

    .btn {
        padding: 0.8rem 1.2rem;
        font-size: 0.8rem;
    }

    .services h2,
    .about h2,
    .contact h2 {
        font-size: 1.6rem;
    }

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

    .service-card {
        height: 200px;
    }

    .service-overlay h3 {
        font-size: 1.1rem;
    }

    .service-overlay p {
        font-size: 0.8rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .value-item {
        padding: 1rem;
        border-left: 3px solid var(--primary-gold);
    }

    .value-item h4 {
        font-size: 0.95rem;
    }

    .value-item p {
        font-size: 0.8rem;
    }

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

    .contact-card {
        padding: 1.5rem;
    }

    .contact-card h3 {
        font-size: 1.2rem;
    }

    .contact-detail strong {
        font-size: 0.75rem;
    }

    .contact-detail p,
    .contact-detail a {
        font-size: 0.9rem;
    }

    .contact-benefits li {
        padding: 0.6rem 0;
        padding-left: 1.5rem;
        font-size: 0.85rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .footer-section-main {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .footer-logo-img {
        height: 45px;
    }

    .footer-info h4 {
        font-size: 1rem;
    }

    .footer-info p {
        font-size: 0.85rem;
    }

    .footer-section h4 {
        font-size: 1rem;
    }

    .footer-links a {
        font-size: 0.85rem;
    }

    .footer-tagline {
        font-size: 0.8rem;
    }

    .footer-year {
        font-size: 0.75rem;
    }
}
