:root {
    --primary-gold: #C0A062;
    /* Updated to match new logo - muted luxury gold */
    --primary-gold-dark: #A08042;
    --primary-black: #1a1a1a;
    --secondary-black: #2c2c2c;
    --text-white: #ffffff;
    --text-grey: #555555;
    --bg-light: #f8f8f8;
    --bg-white: #ffffff;
    --border-color: #e5e5e5;
    --transition: all 0.3s ease;
    --header-height: 80px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--secondary-black);
    line-height: 1.7;
    background-color: var(--bg-white);
    padding-top: var(--header-height);
    /* Prevent content hiding behind fixed header */
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--primary-black);
    letter-spacing: -0.02em;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

/* Utilities */
.text-center {
    text-align: center;
}

.text-gold {
    color: var(--primary-gold);
}

.section {
    padding: 100px 0;
}

.section-title {
    font-size: 2.8rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 20px;
    display: inline-block;
}

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

.section-desc {
    color: var(--text-grey);
    max-width: 700px;
    margin: 0 auto 50px;
    font-size: 1.1rem;
}

/* Header */
.header {
    background-color: var(--bg-white);
    /* Changed to white for cleaner look */
    color: var(--primary-black);
    padding: 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    height: var(--header-height);
    display: flex;
    align-items: center;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo img {
    height: 60px;
    /* Slightly larger */
    filter: none;
    /* Removed invert since header is white now */
    transition: var(--transition);
}

.nav-list {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-link {
    font-size: 1rem;
    font-weight: 500;
    color: var(--primary-black);
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.85rem;
}

.nav-link::after {
    background-color: var(--primary-gold);
    height: 2px;
}

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

.header-call-btn {
    background-color: var(--primary-gold);
    color: white;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-call-btn:hover {
    background-color: var(--primary-gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(192, 160, 98, 0.3);
}

.mobile-menu-btn {
    color: var(--primary-black);
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('assets/hero_bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--text-white);
    padding-top: 80px;
    /* Header height */
}

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

.hero-title {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-white);
    /* Force white color */
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

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

/* Services */
.services {
    background-color: var(--bg-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--bg-white);
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    text-align: center;
    border-bottom: 3px solid transparent;
    display: block;
    /* Ensure link behaves as block */
    height: 100%;
    /* Uniform height */
}

.service-card:hover {
    transform: translateY(-10px);
    border-bottom-color: var(--primary-gold);
}

.service-icon {
    font-size: 3rem;
    color: var(--primary-gold);
    margin-bottom: 20px;
}

.service-title {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.service-text {
    color: var(--text-grey);
    font-size: 0.95rem;
}

/* About */
.about-container {
    display: block;
    /* Removed grid for full width text */
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    /* Center align text since image is gone */
}

.section-divider.aligned-left {
    margin: 0 auto 30px;
    /* Center the divider */
}

.about-text {
    margin-bottom: 30px;
    color: var(--text-grey);
    font-size: 1.1rem;
}

.about-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.about-text {
    margin-bottom: 20px;
    color: var(--text-grey);
}

.about-features {
    margin-top: 30px;
}

.about-features li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.image-placeholder-box {
    width: 100%;
    height: 400px;
    background-color: var(--secondary-black);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary-gold);
    font-size: 5rem;
    border-radius: 8px;
}

/* Contact */
.contact {
    background-color: var(--bg-white);
}

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

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--primary-gold);
    margin-top: 5px;
}

.info-item h4 {
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.info-item p,
.info-item a {
    color: var(--text-grey);
}

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

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

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

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

/* Footer */
.footer {
    background-color: var(--primary-black);
    color: var(--text-white);
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 40px;
}

.footer-logo h3 {
    color: var(--primary-gold);
    margin-bottom: 5px;
}

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

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

.footer-social {
    display: flex;
    gap: 15px;
}

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

.footer-social a:hover {
    background-color: var(--primary-gold);
    color: var(--text-white);
}

.footer-bottom {
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Floating Buttons */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1001;
}

.float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 1.8rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
}

.float-btn.whatsapp {
    background-color: #25D366;
}

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

.float-btn:hover {
    transform: scale(1.1);
}

/* Responsive */
@media (max-width: 768px) {
    .header-container {
        padding: 0 15px;
    }

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

    .nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--primary-black);
        padding: 20px 0;
        clip-path: circle(0% at 100% 0);
        transition: var(--transition);
    }

    .nav.active {
        clip-path: circle(150% at 100% 0);
    }

    .nav-list {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

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

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

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

    .footer-links {
        flex-direction: column;
        gap: 10px;
    }
}

/* Service Details Responsive Fixes */
.service-detail-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 80px;
    align-items: center;
}

.service-detail-item img {
    width: 100%;
    height: auto;
    /* Maintain aspect ratio to prevent stretching */
    max-height: 500px;
    /* Prevent images from becoming too tall */
    object-fit: cover;
    /* Ensure image covers area well if constrained */
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {
    .service-detail-item {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 50px;
    }

    /* Normalize order on mobile for consistency: Image first, then Text */
    .service-detail-item>div:has(img) {
        order: -1 !important;
    }

    .service-detail-item>div {
        order: 0;
    }
}