/* Design System Tokens */
:root {
    --color-cream: #fdfbf7;
    --color-gold: #c5a059;
    --color-gold-dark: #b38d4a;
    --color-charcoal: #333333;
    --color-soft: #f9f6f1;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
    --transition-smooth: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Global Styles */
body {
    background-color: var(--color-cream);
    color: var(--color-charcoal);
    font-family: var(--font-body);
    overflow-x: hidden;
    line-height: 1.7;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
}

.py-100 {
    padding: 100px 0;
}

.bg-soft {
    background-color: var(--color-soft);
}

.bg-charcoal {
    background-color: var(--color-charcoal);
}

/* Navbar Customization */
.navbar {
    padding: 20px 0;
    transition: var(--transition-smooth);
    background-color: transparent;
}

.navbar.scrolled {
    background-color: rgba(253, 251, 247, 0.95);
    backdrop-filter: blur(10px);
    padding: 10px 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.navbar-brand {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 1.5rem;
}

.navbar-brand span {
    font-weight: 300;
    margin-left: 5px;
    color: var(--color-gold);
}

.nav-link {
    font-size: 0.9rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    margin: 0 10px;
    color: var(--color-charcoal) !important;
    position: relative;
}

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

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

/* Buttons */
.btn-gold {
    background-color: var(--color-gold);
    color: white;
    padding: 12px 30px;
    border-radius: 0;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    transition: var(--transition-smooth);
    border: none;
}

.btn-gold:hover {
    background-color: var(--color-gold-dark);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(197, 160, 89, 0.3);
}

.btn-outline-dark {
    border-radius: 0;
    padding: 12px 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* Hero Section */
.hero-section {
    height: 100vh;
    min-height: 800px;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 100px;
}

.hero-text h1 span {
    font-weight: 400;
    font-style: italic;
    color: var(--color-gold);
}

.rounded-special {
    border-radius: 50% 50% 0 0;
    max-height: 500px;
    object-fit: cover;
}

.hero-img-container {
    position: relative;
}

.hero-img-container::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    width: 100%;
    height: 100%;
    border: 1px solid var(--color-gold);
    z-index: -1;
    border-radius: 50% 50% 0 0;
}

/* Section Common Elements */
.section-title {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.divider {
    width: 60px;
    height: 3px;
    background-color: var(--color-gold);
    margin-bottom: 20px;
}

.section-subtitle {
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Service Cards */
.service-card {
    background: white;
    border: none;
    transition: var(--transition-smooth);
    overflow: hidden;
}

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

.service-img {
    height: 250px;
    overflow: hidden;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

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

.service-body {
    padding: 30px;
}

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

.read-more {
    color: var(--color-gold);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-block;
}

/* About Section */
.rounded-special-right {
    border-radius: 0 100px 100px 0;
}

.check-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.check-list i {
    color: var(--color-gold);
    font-size: 1.2rem;
    margin-right: 15px;
}

/* Contact Section */
.contact-wrapper {
    overflow: hidden;
    border-radius: 5px;
}

.contact-info .icon {
    font-size: 1.3rem;
    color: var(--color-gold);
}

.social-links a {
    color: white;
    font-size: 1.5rem;
    margin-right: 20px;
    transition: var(--transition-smooth);
}

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

.form-control, .form-select {
    border-radius: 0;
    padding: 12px;
    border-color: #eee;
}

.form-control:focus {
    border-color: var(--color-gold);
    box-shadow: none;
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 991px) {
    .section-title {
        font-size: 2.2rem;
    }
    .hero-section {
        height: auto;
        padding-top: 150px;
        padding-bottom: 80px;
    }
    .hero-text {
        text-align: center;
    }
}
