/* General Styles */
:root {
    --primary-color: #1a1a1a;
    --secondary-color: #f5f5f5;
    --accent-color: #8e8e8e;
    --text-color: #333;
    --light-gray: #e0e0e0;
    --white: #ffffff;
    --luxury-gold: #c5a059;
}

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

body {
    font-family: 'Playfair Display', serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--white);
}

h1, h2, h3 {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

p {
    font-family: 'Lato', sans-serif;
    font-size: 1.1rem;
}

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

/* Header & Nav */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    z-index: 1000;
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.logo {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--primary-color);
}

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

nav ul li {
    margin-left: 2rem;
}

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

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../images/hero.jpg') no-repeat center center/cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--white);
    padding: 0 10%;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    max-width: 800px;
    animation: fadeInUp 1.2s ease;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    animation: fadeInUp 1.4s ease;
}

.btn {
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: bold;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: 0.3s;
}

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

.btn-primary:hover {
    background-color: #b08d4a;
}

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

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

/* Services Section */
.services {
    padding: 100px 10%;
    background-color: var(--secondary-color);
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 50px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--luxury-gold);
    margin: 20px auto;
}

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

.service-card {
    background: var(--white);
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
}

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

.service-card h3 {
    margin-bottom: 15px;
}

/* About Section */
.about {
    padding: 100px 10%;
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-content {
    flex: 1;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    border-radius: 5px;
    box-shadow: 20px 20px 0 var(--luxury-gold);
}

/* Gallery Section */
.gallery {
    padding: 100px 10%;
    background-color: var(--secondary-color);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    height: 300px;
}

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

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

/* Process Section */
.process {
    padding: 100px 10%;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
    gap: 20px;
}

.step {
    flex: 1;
    text-align: center;
    position: relative;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--luxury-gold);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    margin: 0 auto 20px;
}

/* Map Section */
.map-container {
    height: 450px;
    width: 100%;
}

/* Contact Section */
.contact {
    padding: 100px 10%;
    background: var(--primary-color);
    color: var(--white);
    display: flex;
    gap: 50px;
}

.contact-info, .contact-form {
    flex: 1;
}

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

.contact-form input, .contact-form textarea {
    padding: 15px;
    background: #2a2a2a;
    border: 1px solid #444;
    color: var(--white);
    font-family: 'Lato', sans-serif;
}

.contact-form button {
    background: var(--luxury-gold);
    color: var(--white);
    border: none;
    padding: 15px;
    cursor: pointer;
    font-weight: bold;
    text-transform: uppercase;
}

/* Footer */
footer {
    padding: 50px 10%;
    background: #111;
    color: #888;
    text-align: center;
}

.footer-content {
    margin-bottom: 30px;
}

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

.footer-links a {
    margin: 0 15px;
}

/* Mobile Sticky Call */
.mobile-call-btn {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--luxury-gold);
    color: var(--white);
    text-align: center;
    padding: 15px;
    font-weight: bold;
    z-index: 1001;
}

@media (max-width: 768px) {
    .mobile-call-btn {
        display: block;
    }
    header {
        padding: 1rem 5%;
    }
    nav {
        display: none;
    }
    .hero h1 {
        font-size: 2.5rem;
    }
    .about, .contact {
        flex-direction: column;
    }
    .process-steps {
        flex-direction: column;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#form-success {
    display: none;
    background: #27ae60;
    color: white;
    padding: 20px;
    margin-top: 20px;
    text-align: center;
}
