:root {
    --primary-color: #d4af37;
    --secondary-color: #c9a961;
    --dark-color: #2c2c2c;
    --light-color: #f8f9fa;
    --accent-color: #ff69b4;
}

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

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
}

/* Navbar */
.navbar {
    background: linear-gradient(135deg, var(--dark-color) 0%, #1a1a1a 100%);
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: box-shadow 0.3s;
}

.navbar-brand img {
    transition: transform 0.3s;
}

.navbar-brand:hover img {
    transform: scale(1.05);
}

.navbar-nav .nav-link {
    color: #fff !important;
    margin: 0 15px;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

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

.navbar-nav .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), 
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%23fce4ec" width="1200" height="600"/><path fill="%23f8bbd0" d="M0 300L50 283.3C100 266.7 200 233.3 300 216.7C400 200 500 200 600 216.7C700 233.3 800 266.7 900 283.3C1000 300 1100 300 1150 300L1200 300L1200 601L1150 601C1100 601 1000 601 900 601C800 601 700 601 600 601C500 601 400 601 300 601C200 601 100 601 50 601L0 601Z"/></svg>');
    background-size: cover;
    background-position: center;
    padding: 150px 0 100px;
    color: white;
    text-align: center;
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-section p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--dark-color) 0%, #1a1a1a 100%);
    padding: 120px 0 60px;
    text-align: center;
    color: white;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 1.2rem;
    color: var(--primary-color);
}

/* Buttons */
.btn-custom {
    background: var(--primary-color);
    color: var(--dark-color);
    padding: 12px 35px;
    border-radius: 30px;
    font-weight: 600;
    border: none;
    transition: all 0.3s;
    display: inline-block;
    text-decoration: none;
}

.btn-custom:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
    color: var(--dark-color);
}

.btn-outline-light {
    border: 2px solid white;
    color: white;
    padding: 10px 33px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-outline-light:hover {
    background: white;
    color: var(--dark-color);
}

.btn-outline-dark {
    border: 2px solid var(--dark-color);
    color: var(--dark-color);
    padding: 10px 33px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s;
}

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

/* Section Title */
.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.8rem;
    color: var(--dark-color);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary-color);
}

.section-title.text-start h2::after {
    left: 0;
    transform: translateX(0);
}

/* Service Cards */
.services-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #fafafa 0%, #f0f0f0 100%);
}

.service-card, .quick-service-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s;
    height: 100%;
}

.service-card:hover, .quick-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.service-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-card h4, .quick-service-card h4 {
    color: var(--dark-color);
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.quick-service-card p {
    color: #666;
    margin-bottom: 15px;
}

.learn-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.learn-more:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.service-card ul {
    list-style: none;
    padding: 0;
}

.service-card ul li {
    padding: 8px 0;
    color: #666;
    position: relative;
    padding-left: 25px;
}

.service-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Feature Boxes */
.feature-box {
    background: white;
    padding: 30px 20px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.2);
}

.feature-box i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.feature-box h5 {
    color: var(--dark-color);
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.feature-box p {
    color: #666;
    margin: 0;
    font-size: 0.9rem;
}

/* Value Cards */
.value-card {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.value-card h4 {
    color: var(--dark-color);
    margin: 20px 0 15px;
}

.value-card p {
    color: #666;
    line-height: 1.8;
}

/* Gallery */
.gallery-section {
    padding: 80px 0;
    background: white;
}

.gallery-grid {
    margin-top: 30px;
}

.gallery-item, .gallery-preview-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    height: 300px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.gallery-item:hover, .gallery-preview-item:hover {
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

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

.gallery-item:hover img, .gallery-preview-item:hover img {
    transform: scale(1.15);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(212, 175, 55, 0.95) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
    padding: 20px;
}

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

.gallery-overlay h5 {
    color: white;
    font-size: 1.3rem;
    margin: 0;
    text-align: center;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    overflow: auto;
}

.lightbox-content {
    position: relative;
    margin: auto;
    padding: 0;
    width: 90%;
    max-width: 1200px;
    text-align: center;
    margin-top: 50px;
}

.lightbox-content img {
    width: auto;
    max-width: 100%;
    max-height: 80vh;
    margin: auto;
    display: block;
    border-radius: 10px;
    box-shadow: 0 10px 50px rgba(0,0,0,0.5);
    transition: opacity 0.3s ease;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: #fff;
    font-size: 45px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10000;
    transition: color 0.3s;
}

.lightbox-close:hover {
    color: var(--primary-color);
}

.lightbox-prev, .lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    padding: 20px;
    background: rgba(212, 175, 55, 0.8);
    border-radius: 5px;
    transition: all 0.3s;
    user-select: none;
}

.lightbox-prev:hover, .lightbox-next:hover {
    background: var(--primary-color);
    color: var(--dark-color);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-caption {
    color: #fff;
    font-size: 1.5rem;
    text-align: center;
    padding: 20px;
    margin-top: 20px;
    font-family: 'Playfair Display', serif;
}

.lightbox-counter {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 1.2rem;
    background: rgba(212, 175, 55, 0.9);
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
}

/* Testimonials */
.testimonial-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.testimonial-stars {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.testimonial-text {
    font-style: italic;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.8;
}

.testimonial-author {
    font-weight: 600;
    color: var(--dark-color);
}

/* Contact */
.contact-section {
    padding: 80px 0;
    background: white;
}

.contact-info {
    background: var(--dark-color);
    color: white;
    padding: 40px;
    border-radius: 15px;
    height: 100%;
}

.contact-info h4 {
    color: var(--primary-color);
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 15px;
    width: 30px;
    margin-top: 5px;
}

.contact-item h6 {
    margin-bottom: 5px;
    color: var(--primary-color);
}

.contact-item p {
    margin: 0;
    color: #ccc;
}

.contact-form-box {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.form-control {
    border-radius: 10px;
    padding: 12px;
    border: 2px solid #e0e0e0;
    transition: all 0.3s;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
}

/* Footer */
footer {
    background: var(--dark-color);
    color: white;
    padding: 40px 0 20px;
}

.footer-social a {
    color: white;
    font-size: 1.5rem;
    margin: 0 10px;
    transition: color 0.3s;
}

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

/* Scroll to Top */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--primary-color);
    color: var(--dark-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1000;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    transition: all 0.3s;
}

.scroll-top:hover {
    transform: translateY(-5px);
    background: var(--secondary-color);
}

.scroll-top.show {
    display: flex;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section {
        padding: 120px 0 80px;
    }
    
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .hero-section p {
        font-size: 1.1rem;
    }
    
    .page-header h1 {
        font-size: 2.2rem;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .lightbox-prev, .lightbox-next {
        font-size: 30px;
        padding: 15px;
    }
    
    .lightbox-close {
        font-size: 35px;
        right: 20px;
    }
    
    .lightbox-content {
        width: 95%;
        margin-top: 30px;
    }
    
    .gallery-item, .gallery-preview-item {
        height: 250px;
    }
    
    .navbar-nav .nav-link {
        margin: 5px 0;
    }
}
