/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --gold: #c8a656;
    --gold-light: #dfc07f;
    --dark: #1a1a1a;
    --darker: #111111;
    --dark-card: #222222;
    --light: #f5f0eb;
    --text: #cccccc;
    --text-light: #999999;
    --white: #ffffff;
    --radius: 12px;
    --shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    --transition: 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--darker);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
}

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

ul {
    list-style: none;
}

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

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

.section {
    padding: 100px 0;
}

.section-dark {
    background-color: var(--dark);
}

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

.section-title {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 15px;
    font-weight: 700;
}

.section-title span {
    color: var(--gold);
}

.section-subtitle {
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 550px;
    margin: 0 auto 50px;
    text-align: center;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 14px 36px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
    border: 2px solid transparent;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.btn-primary:hover {
    background-color: transparent;
    color: var(--gold);
    border-color: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(200, 166, 86, 0.3);
}

.btn-outline {
    background-color: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-outline:hover {
    background-color: var(--white);
    color: var(--dark);
    transform: translateY(-2px);
}

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

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all var(--transition);
}

.navbar.scrolled {
    background-color: rgba(17, 17, 17, 0.95);
    backdrop-filter: blur(10px);
    padding: 12px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

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

.logo {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 1px;
}

.logo span {
    color: var(--gold);
}

.nav-links {
    display: flex;
    gap: 35px;
}

.nav-links a {
    color: var(--text);
    font-weight: 500;
    position: relative;
    padding: 5px 0;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--gold);
    transition: width var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--gold);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

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

.nav-toggle span {
    width: 25px;
    height: 2px;
    background-color: var(--white);
    transition: all var(--transition);
}

/* ===== HERO ===== */
.hero, .page-header {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-image: url('https://images.unsplash.com/photo-1585747860019-8bc2e2c2b7a0?w=1600&h=900&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero {
    min-height: 100vh;
}

.page-header {
    min-height: 50vh;
    padding-top: 80px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(17, 17, 17, 0.7) 0%,
        rgba(17, 17, 17, 0.85) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 750px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 3.8rem;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: 800;
}

.hero-content h1 span {
    color: var(--gold);
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text);
    margin-bottom: 35px;
    line-height: 1.8;
}

.hero .btn {
    margin: 0 8px 10px;
}

/* ===== ABOUT ===== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-images {
    position: relative;
    height: 450px;
}

.image-card {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    position: absolute;
}

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

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

.image-card-1 {
    width: 65%;
    height: 70%;
    top: 0;
    left: 0;
    z-index: 2;
}

.image-card-2 {
    width: 55%;
    height: 65%;
    bottom: 0;
    right: 0;
    z-index: 1;
    border: 4px solid var(--gold);
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.stats {
    display: flex;
    gap: 40px;
    margin-top: 35px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--gold);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== SERVICES ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.service-card {
    background-color: var(--dark-card);
    border-radius: var(--radius);
    padding: 40px 25px;
    text-align: center;
    transition: all var(--transition);
    border: 1px solid transparent;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
    box-shadow: 0 10px 40px rgba(200, 166, 86, 0.15);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.service-card h3 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 12px;
}

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

/* ===== GALLERY ===== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.gallery-item {
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
}

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

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

/* ===== CTA ===== */
.cta {
    background: linear-gradient(135deg, var(--dark) 0%, var(--darker) 100%);
    border-top: 1px solid rgba(200, 166, 86, 0.2);
    border-bottom: 1px solid rgba(200, 166, 86, 0.2);
}

.cta h2 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 15px;
}

.cta h2 span {
    color: var(--gold);
}

.cta p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

/* ===== PRICING ===== */
.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    max-width: 800px;
    margin: 0 auto;
}

.pricing-category-title {
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: 25px;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(200, 166, 86, 0.3);
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    background-color: var(--dark);
    border-radius: var(--radius);
    margin-bottom: 12px;
    transition: all var(--transition);
    border: 1px solid transparent;
}

.price-item:hover {
    border-color: var(--gold);
    transform: translateX(5px);
}

.price-item.featured {
    border-color: var(--gold);
    background: linear-gradient(135deg, var(--dark-card) 0%, rgba(200, 166, 86, 0.1) 100%);
}

.price-info h3 {
    color: var(--white);
    font-size: 1.15rem;
    margin-bottom: 5px;
}

.price-info p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.price-amount {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--gold);
    white-space: nowrap;
    margin-left: 20px;
}

/* ===== CONTACT ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 25px;
    background-color: var(--dark);
    border-radius: var(--radius);
    transition: all var(--transition);
    border: 1px solid transparent;
}

.contact-card:hover {
    border-color: var(--gold);
    transform: translateX(5px);
}

.contact-icon {
    font-size: 1.8rem;
    width: 50px;
    flex-shrink: 0;
    text-align: center;
}

.contact-card h3 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 3px;
}

.contact-card a {
    color: var(--gold);
    font-size: 0.95rem;
}

.contact-card a:hover {
    color: var(--gold-light);
}

.contact-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.5;
}

/* ===== FORM ===== */
.contact-form-wrapper {
    background-color: var(--dark);
    padding: 40px;
    border-radius: var(--radius);
}

.contact-form-wrapper .section-title {
    font-size: 1.8rem;
    margin-bottom: 25px;
}

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

.form-group label {
    display: block;
    margin-bottom: 6px;
    color: var(--text);
    font-size: 0.9rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background-color: var(--dark-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--white);
    font-size: 1rem;
    font-family: inherit;
    transition: border-color var(--transition);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light);
}

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

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-success {
    display: none;
    text-align: center;
    padding: 40px 20px;
}

.form-success.show {
    display: block;
}

.success-icon {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 15px;
}

.form-success h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.form-success p {
    color: var(--text-light);
}

/* ===== MAP ===== */
.map-wrapper {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-top: 10px;
}

/* ===== FOOTER ===== */
.footer {
    background-color: var(--darker);
    padding: 60px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
}

.footer-col h4 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.footer-col p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: var(--text-light);
    font-size: 0.95rem;
    transition: color var(--transition);
}

.footer-col ul li a:hover {
    color: var(--gold);
}

.footer-bottom {
    text-align: center;
    padding: 25px 0;
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
    color: var(--text-light);
    font-size: 0.85rem;
}

/* ===== ANIMATIONS ===== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 2.8rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-images {
        height: 350px;
    }

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

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

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

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 70px 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background-color: var(--darker);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 30px;
        transition: right var(--transition);
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
    }

    .nav-links.open {
        right: 0;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

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

    .hero-content p {
        font-size: 1rem;
    }

    .hero .btn {
        padding: 12px 28px;
        font-size: 0.9rem;
    }

    .about-images {
        height: 280px;
    }

    .stats {
        gap: 25px;
    }

    .stat-number {
        font-size: 1.8rem;
    }

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

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

    .cta h2 {
        font-size: 1.8rem;
    }

    .price-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .price-amount {
        margin-left: 0;
    }

    .contact-form-wrapper {
        padding: 25px;
    }

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

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }

    .stats {
        flex-direction: column;
        gap: 20px;
    }

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