/* BASE CSS & ROOT VARIABLES */
:root {
    --bg-dark: #101010;
    --bg-card: #181818;
    --text-light: #f5f5f5;
    --text-muted: #aaaaaa;
    --gold: #D4AF37;       /* Rich Gold */
    --gold-light: #f1d570;
    --gold-dark: #aa8823;
    --accent: #111111;
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

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

li {
    list-style: none;
}

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

/* GENERAL TYPOGRAPHY & LAYOUT */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 100px 0;
}

.section-header {
    margin-bottom: 60px;
}

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

.sect-subtitle {
    font-family: 'Playfair Display', serif;
    color: var(--gold);
    font-style: italic;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.sect-title {
    font-size: 2.8rem;
    font-weight: 600;
    position: relative;
    display: inline-block;
}

.sect-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--gold);
}

.section-header.center .sect-title::after {
    left: 50%;
    transform: translateX(-50%);
}

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.primary-btn {
    background-color: transparent;
    border-color: var(--gold);
    color: var(--gold);
}
.primary-btn:hover {
    background-color: var(--gold);
    color: var(--bg-dark);
}
.primary-btn.solid-gold {
    background-color: var(--gold);
    color: var(--bg-dark);
}
.primary-btn.solid-gold:hover {
    background-color: var(--gold-light);
}

.secondary-btn {
    background-color: #25D366;
    color: white;
}
.secondary-btn:hover {
    background-color: #1ebe56;
}

/* NAVBAR */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 1000;
    transition: all 0.4s ease;
    background: transparent;
}

.navbar.scrolled {
    background-color: rgba(16, 16, 16, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.5);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 0.9;
    display: flex;
    flex-direction: column;
}
.logo span {
    font-size: 0.8rem;
    letter-spacing: 5px;
    color: var(--text-light);
    margin-top: 5px;
    font-weight: 400;
}

.nav-links {
    display: flex;
    gap: 30px;
}
.nav-links a {
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--gold);
    transition: width 0.3s ease;
}
.nav-links a:hover::after, .nav-links a.active::after {
    width: 100%;
}

.social-links {
    display: flex;
    gap: 15px;
    align-items: center;
}

.social-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--text-light);
    font-size: 1.2rem;
    transition: all 0.3s;
}
.social-btn.whatsapp:hover { background: #25D366; border-color: #25D366; color: white;}
.social-btn.instagram:hover { background: #E1306C; border-color: #E1306C; color: white;}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 1.5rem;
    cursor: pointer;
}

/* HERO SECTION */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(to right, #101010, transparent), url('https://images.unsplash.com/photo-1600596542815-ffad4c1539a9?auto=format&fit=crop&q=80&w=2000') no-repeat center center/cover;
    /* Soft dark gradient on top of bg image */
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(16, 16, 16, 0.75);
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
}

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

.hero .subtitle {
    font-family: 'Playfair Display', serif;
    color: var(--gold);
    font-size: 1.5rem;
    font-style: italic;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s ease forwards;
}

.hero .title {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s 0.2s ease forwards;
}
.hero .title span {
    color: var(--gold);
}

.hero .description {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 600px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s 0.4s ease forwards;
}

.hero .action-buttons {
    display: flex;
    gap: 20px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s 0.6s ease forwards;
}

.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--text-light);
    font-size: 1.5rem;
    z-index: 2;
    animation: bounce 2s infinite;
    opacity: 0.7;
}
.scroll-down:hover {
    color: var(--gold);
    opacity: 1;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); }
    40% { transform: translateY(-15px) translateX(-50%); }
    60% { transform: translateY(-7px) translateX(-50%); }
}

/* FEATURES SECTION */
.features {
    background-color: var(--bg-dark);
}

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

.feature-card {
    background: var(--bg-card);
    padding: 40px 30px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.03);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    background: #1c1c1c;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.feature-card:hover::before {
    transform: scaleX(1);
}

.icon-wrapper {
    width: 60px;
    height: 60px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.8rem;
    margin-bottom: 25px;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.feature-card p {
    color: var(--text-muted);
}

/* SERVICES SECTION */
.services {
    background-color: #0b0b0b;
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.service-card {
    display: flex;
    align-items: center;
    gap: 50px;
}
.service-card.reverse {
    flex-direction: row-reverse;
}

.service-img {
    flex: 1;
    position: relative;
}
.service-img img {
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    transition: transform 0.4s ease;
}
.service-img::after {
    content: '';
    position: absolute;
    inset: -15px 15px 15px -15px;
    border: 2px solid var(--gold);
    border-radius: 8px;
    z-index: -1;
}
.service-card.reverse .service-img::after {
    inset: -15px -15px 15px 15px;
}
.service-card:hover .service-img img {
    transform: scale(1.02);
}

.service-content {
    flex: 1;
}
.service-content h3 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--gold);
}
.ser-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}
.ser-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.05rem;
}
.ser-list li i {
    color: var(--gold);
    font-size: 0.9rem;
}

/* GALLERY SECTION */
.gallery {
    background-color: var(--bg-dark);
}

.photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.photo-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    height: 280px;
}

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

.photo-overlay {
    position: absolute;
    inset: 0;
    background: rgba(16, 16, 16, 0.6);
    backdrop-filter: blur(3px);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: all 0.4s ease;
    color: var(--gold);
    font-size: 2.5rem;
}

.photo-item:hover img {
    transform: scale(1.1);
}
.photo-item:hover .photo-overlay {
    opacity: 1;
}

.gallery-cta {
    text-align: center;
    background: var(--bg-card);
    padding: 40px;
    border-radius: 8px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}
.gallery-cta p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

/* FOOTER SECTION */
.footer {
    background-color: #080808;
    padding-top: 80px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    justify-content: space-between;
    margin-bottom: 50px;
}

.footer-info {
    flex: 2;
    min-width: 300px;
}

.footer-info h2 {
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: 20px;
    letter-spacing: 1px;
}
.footer-info h2 span {
    color: var(--text-light);
    font-size: 1rem;
    letter-spacing: 5px;
    display: block;
}

.footer-desc {
    color: var(--text-muted);
    margin-bottom: 30px;
    max-width: 400px;
}

.contact-details .c-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.2rem;
    margin-bottom: 20px;
}
.contact-details .c-item i {
    color: var(--gold);
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}
.footer-social a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--text-light);
}
.footer-social a:hover {
    background: var(--gold);
    color: var(--bg-dark);
}

.footer-links {
    flex: 1;
    min-width: 200px;
}
.footer-links h3 {
    font-weight: 500;
    margin-bottom: 25px;
    color: white;
}
.footer-links ul li {
    margin-bottom: 15px;
}
.footer-links ul li a {
    color: var(--text-muted);
}
.footer-links ul li a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding: 20px;
    border-top: 1px solid rgba(255,255,255,0.05);
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* RESPONSIVE DESIGN */
@media (max-width: 992px) {
    .hero .title { font-size: 3.5rem; }
    .nav-links { display: none; } /* Mobile menu toggle logic should go here */
    .mobile-menu-btn { display: block; }
    
    .service-card, .service-card.reverse {
        flex-direction: column;
        gap: 30px;
    }
    .service-img::after { display: none; }
}

@media (max-width: 768px) {
    .hero .title { font-size: 2.8rem; }
    .hero .action-buttons { flex-direction: column; }
    section { padding: 60px 0; }
    .sect-title { font-size: 2.2rem; }
    .service-content h3 { font-size: 1.8rem; }
}
