:root {
    --bg-deep: #f5f5f0;
    --section-alt: #ebebeb;
    --glass-bg: #ffffff;
    --glass-border: #dcdcdc;
    --gold-primary: #b8941f;
    --gold-hover: #9e7d18;
    --text-main: #2c3e50;
    --text-muted: #666666;
}

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

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

h1, h2, h3, h4, h5, h6, .navbar-brand, .heading-section {
    font-family: 'Cinzel', serif;
    letter-spacing: 0.05em;
}

/* Top Bar */
.wrap {
    background: #fff;
    border-bottom: 1px solid #eee;
    font-size: 12px;
    letter-spacing: 1px;
    color: var(--text-muted);
}

.wrap a {
    color: var(--text-main);
    text-decoration: none;
    transition: 0.3s;
    font-weight: 500;
}

.wrap a:hover {
    color: var(--gold-primary);
}

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #eaeaea;
    padding: 15px 0;
    transition: 0.4s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    padding: 10px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.navbar-brand {
    font-size: 32px;
    font-weight: 800;
    color: var(--text-main) !important;
}

.navbar-brand span {
    color: var(--gold-primary);
}

.nav-link {
    color: var(--text-main) !important;
    font-weight: 600;
    margin: 0 10px;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
    position: relative;
    transition: 0.3s;
}

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

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

.nav-link:hover,
.nav-link.active {
    color: var(--gold-primary) !important;
}

/* Hero Slider */
.hero-slider {
    width: 100%;
    height: 85vh;
    min-height: 600px;
    position: relative;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 2s ease-in-out, transform 10s ease;
    z-index: 1;
    transform: scale(1.05);
}

.slide.active {
    opacity: 1;
    z-index: 2;
    transform: scale(1);
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    z-index: 10;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 3;
}

.slider-text h1 {
    font-size: 4.5rem;
    font-weight: 800;
    color: #fff;
    text-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    margin-bottom: 20px;
}

.slider-text h1 span {
    color: var(--gold-primary);
}

.slider-text p {
    font-size: 1.2rem;
    color: #f0f0f0;
    letter-spacing: 1px;
    margin-bottom: 40px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* Buttons */
.btn-primary {
    background: var(--gold-primary);
    border: none;
    color: #fff;
    font-weight: 700;
    padding: 15px 40px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 13px;
    transition: 0.4s;
    box-shadow: 0 5px 15px rgba(184, 148, 31, 0.3);
}

.btn-primary:hover {
    background: var(--gold-hover);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(184, 148, 31, 0.5);
    color: #fff;
}

.btn-outline-dark {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
    padding: 15px 40px;
    border-radius: 50px;
    margin-left: 15px;
    transition: 0.3s;
    font-weight: 700;
}

.btn-outline-dark:hover {
    background: #fff;
    color: #000;
    border-color: #fff;
}

.btn-nav {
    background: var(--text-main);
    color: white;
    padding: 10px 25px;
    border-radius: 30px;
    font-size: 12px;
    transition: 0.3s;
    border: none;
    cursor: pointer;
}

.btn-nav:hover {
    background: var(--gold-primary);
    color: white;
    transform: translateY(-2px);
}

/* Sections */
.ftco-section {
    padding: 6rem 0;
    position: relative;
    z-index: 5;
}

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

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 50px;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 20px;
}

.heading-section .subheading {
    color: var(--gold-primary);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 13px;
    font-weight: 700;
    display: block;
    margin-bottom: 10px;
}

.heading-section h2 {
    font-size: 2.5rem;
    color: var(--text-main);
    margin: 0;
    font-weight: 700;
}

/* Cards */
.feature-card,
.product-card,
.testimony-wrap,
.form-container {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    text-align: center;
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.feature-card:hover,
.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--gold-primary);
}

.feature-card img,
.product-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 25px;
    transition: 0.5s;
}

.feature-card:hover img,
.product-card:hover img {
    transform: scale(1.05);
}

.feature-card h3,
.product-card h4 {
    color: var(--text-main);
    margin-bottom: 10px;
    font-weight: 700;
}

.product-card {
    padding: 0;
    border: none;
    background: transparent;
    box-shadow: none;
}

.product-card .card-glass {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    height: 100%;
    overflow: hidden;
    transition: 0.4s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.product-card:hover .card-glass {
    border-color: var(--gold-primary);
    transform: translateY(-5px);
}

.product-details {
    padding: 25px;
}

.price {
    color: var(--gold-primary);
    font-weight: 800;
    font-size: 1.5rem;
}

.old-price {
    font-size: 1rem;
    color: #999;
    text-decoration: line-through;
    margin-left: 10px;
}

.category {
    color: var(--gold-primary);
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 1px;
    font-weight: 600;
}

/* Testimonials */
.testimony-wrap {
    padding: 40px;
    margin: 20px;
}

.testimony-wrap .img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    margin: 0 auto 25px;
    border: 3px solid var(--gold-primary);
}

.testimony-wrap p {
    font-style: italic;
    color: #555;
    font-size: 1rem;
}

.testimony-wrap .name {
    color: var(--text-main);
    font-weight: 700;
    font-size: 1.1rem;
    margin-top: 15px;
}

.text-gold {
    color: var(--gold-primary);
}

.star i {
    color: var(--gold-primary);
    margin: 0 2px;
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 300px;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

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

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    padding: 20px;
    opacity: 0;
    transition: 0.4s;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* Forms */
.form-container {
    text-align: left;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: none;
}

.form-control,
.form-control:focus {
    background: #fff;
    border: 1px solid #ddd;
    color: var(--text-main);
    border-radius: 8px;
    padding: 12px 15px;
}

.form-control:focus {
    border-color: var(--gold-primary);
    box-shadow: 0 0 0 0.2rem rgba(184, 148, 31, 0.25);
}

/* Star Selector */
.star-selector i {
    font-size: 28px;
    color: #ddd;
    cursor: pointer;
    margin-right: 8px;
    transition: 0.2s;
}

.star-selector i.text-gold,
.star-selector i.active {
    color: var(--gold-primary);
}

/* Read More Link */
.read-more {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.read-more:hover {
    color: var(--gold-primary);
    text-decoration: none;
}

/* Footer */
.ftco-footer {
    background: #1a1c23;
    padding: 4rem 0 1rem;
    color: #bbb;
    position: relative;
}

.ftco-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
}

.ftco-footer a {
    color: #aaa;
    text-decoration: none;
    transition: 0.3s;
    font-size: 14px;
}

.ftco-footer a:hover {
    color: var(--gold-primary);
}

/* Animations */
.ftco-animate {
    opacity: 0;
    visibility: hidden;
}

.ftco-animated {
    animation: fadeInUp 0.6s ease-out forwards;
    visibility: visible;
}

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

/* Responsive */
@media (max-width: 768px) {
    .slider-text h1 {
        font-size: 2.5rem;
    }
    
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .hero-slider {
        height: 100vh;
    }
    
    .ftco-section {
        padding: 3rem 0;
    }
    
    .heading-section h2 {
        font-size: 1.8rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 15px;
    }
}
/* Fix form alignment - ADD THIS TO YOUR CSS FILE */
.form-container .form-group {
    margin-bottom: 20px;
}

.form-container label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

.form-container .form-control {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.form-container .btn-primary {
    width: 100%;
    padding: 12px;
    margin-top: 10px;
}