@charset "UTF-8";

:root {
    --primary: #d4a373;
    --secondary: #faedcd;
    --dark: #1d1d1d;
    --light: #fffdf9;
    --gray: #6b6b6b;
    --gradient: linear-gradient(135deg, #d4a373, #e9c46a);
}

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

body {
    font-family: 'Inter', sans-serif;
    background: var(--light);
    color: var(--dark);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
}

section {
    padding: 100px 0;
}

.navbar {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    transition: 0.3s ease;
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark) !important;
}

.logo-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(212,163,115,0.4);
}

.nav-link {
    color: var(--dark) !important;
    font-weight: 500;
    margin-left: 15px;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    left: 0;
    bottom: -4px;
    background: var(--primary);
    transition: .3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background:
    linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)),
    url('../img/banner-hero.avif');
    background-size: cover;
    background-position: center;
    color: white;
    position: relative;
}

.hero h1 {
    font-size: 5rem;
    line-height: 1;
    margin-bottom: 25px;
}

.hero p {
    font-size: 1.1rem;
    max-width: 620px;
    opacity: 0.95;
    margin-bottom: 35px;
}

.btn-gold {
    background: var(--gradient);
    color: white;
    border: none;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.3s ease;
    box-shadow: 0 10px 25px rgba(212,163,115,0.35);
}

.btn-gold:hover {
    transform: translateY(-3px);
    color: white;
}

.hero-badge {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 50px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    margin-bottom: 25px;
    border: 1px solid rgba(255,255,255,0.15);
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.section-title p {
    color: var(--gray);
    max-width: 700px;
    margin: auto;
}

.service-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    transition: 0.4s ease;
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
    height: 100%;
}

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

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

.service-content {
    padding: 30px;
}

.service-content h4 {
    font-size: 2rem;
    margin-bottom: 12px;
}

.gallery img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 24px;
    transition: 0.4s ease;
    cursor: pointer;
}

.gallery img:hover {
    transform: scale(1.02);
}

.about {
    background: #fff8f1;
}

.about img {
    border-radius: 30px;
    width: 100%;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

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

.stat-item h3 {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 0;
}

.testimonial-card {
    background: white;
    border-radius: 24px;
    padding: 35px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
    height: 100%;
}

.testimonial-card p {
    color: var(--gray);
    line-height: 1.8;
}

.testimonial-user {
    margin-top: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-user img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.cta {
    background:
    linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)),
    url('https://images.unsplash.com/photo-1522337360788-8b13dee7a37e?q=80&w=1600&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    border-radius: 30px;
    padding: 80px 40px;
}

.cta h2 {
    font-size: 4rem;
    margin-bottom: 20px;
}

.footer {
    background: #111;
    color: white;
    padding: 70px 0 30px;
}

.footer p,
.footer a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
}

.footer a:hover {
    color: white;
}

.footer-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    margin-right: 10px;
    transition: .3s ease;
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.logo-showcase {
    background: white;
    border-radius: 30px;
    padding: 60px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
}

.main-logo {
    width: 180px;
    height: 180px;
    margin: auto;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 50px rgba(212,163,115,0.35);
    margin-bottom: 25px;
}

.main-logo svg {
    width: 110px;
    height: 110px;
}

.main-logo path {
    fill: white;
}

@media (max-width: 991px) {
    .hero h1 {
    font-size: 3.5rem;
    }

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

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

    .hero {
    text-align: center;
    }

    .hero h1 {
    font-size: 2.7rem;
    }

    .section-title h2 {
    font-size: 2.2rem;
    }

    .stats {
    gap: 20px;
    }

    .cta {
    padding: 60px 25px;
    }
}