/* Reset and Base Styles */
:root {
    --primary-gold: #C9A961;
    --primary-gold-dark: #B8941F;
    --dark-bg: rgba(0, 0, 0, 0.7);
    --text-white: #ffffff;
    --text-light: rgba(255, 255, 255, 0.9);
    --text-muted: rgba(255, 255, 255, 0.7);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #2d3748;
    background-color: #ffffff;
    overflow-x: hidden;
}

/* Navigation Styles */
.navbar {
    background: rgba(0, 0, 0, 0.1) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all 0.3s ease;
    padding: 1rem 0;
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.95) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.navbar-brand {
    text-decoration: none;
}

.brand-content {
    color: var(--text-white);
}

.brand-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 1;
}

.brand-subtitle {
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 2px;
    opacity: 0.8;
}

.navbar-nav .nav-link {
    color: var(--text-white) !important;
    font-weight: 500;
    font-size: 0.875rem;
    letter-spacing: 0.5px;
    margin: 0 0.75rem;
    text-transform: uppercase;
    transition: all 0.3s ease;
    padding: 0.5rem 0 !important;
    position: relative;
}

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

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

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

.btn-quote {
    background: var(--primary-gold);
    color: var(--text-white) !important;
    padding: 0.5rem 1.25rem;
    border-radius: 4px;
    font-weight: 500;
    font-size: 0.875rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
}

.btn-quote:hover {
    background: var(--primary-gold-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(201, 169, 97, 0.3);
}

.navbar-toggler {
    border: none;
    padding: 0.25rem 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 0;
    margin: 0;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    color: var(--text-white);
    z-index: 3;
    padding-top: 100px;
}

.hero-badge {
    display: inline-block;
    background: rgba(0, 0, 0, 0.3);
    color: var(--text-white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 2rem;
}

.title-line {
    display: block;
}

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

.hero-subtitle {
    font-size: 1.125rem;
    font-weight: 400;
    opacity: 0.9;
    line-height: 1.6;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

.btn-primary {
    background: var(--primary-gold);
    border: none;
    color: var(--text-white);
    padding: 0.875rem 1.75rem;
    font-weight: 500;
    font-size: 0.95rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.btn-primary:hover {
    background: var(--primary-gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(201, 169, 97, 0.4);
    color: var(--text-white);
}

.btn-outline-light {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--text-white);
    padding: 0.875rem 1.75rem;
    font-weight: 500;
    font-size: 0.95rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-decoration: none;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: inline-flex;
    align-items: center;
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    color: var(--text-white);
    transform: translateY(-2px);
}

.hero-features {
    margin-top: 3rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.feature-bullet {
    color: var(--primary-gold);
    font-size: 1.2rem;
    font-weight: 700;
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .navbar-nav {
        text-align: center;
        margin-top: 1rem;
    }
    
    .navbar-nav .nav-link {
        margin: 0.25rem 0;
    }
    
    .btn-quote {
        margin-top: 1rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-primary,
    .btn-outline-light {
        width: 100%;
        justify-content: center;
        text-align: center;
    }
    
    .hero-content {
        padding-top: 120px;
    }
    
    .feature-item {
        justify-content: center;
        margin-bottom: 0.75rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-badge {
        font-size: 0.65rem;
        padding: 0.4rem 0.8rem;
    }
    
    .brand-title {
        font-size: 1.25rem;
    }
    
    .brand-subtitle {
        font-size: 0.65rem;
    }
}

/* Additional Utility Classes */
.text-gold {
    color: var(--primary-gold) !important;
}

.bg-gold {
    background-color: var(--primary-gold) !important;
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* Navbar scroll effect */
.navbar-scroll-effect {
    animation: fadeInUp 0.3s ease;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: #f8f9fa;
}

.section-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: #C9A961;
    letter-spacing: 2px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: #2d3748;
}

.section-subtitle {
    font-size: 1rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

.service-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    padding: 2.5rem 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: #C9A961;
    transition: height 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: #C9A961;
}

.service-card:hover::before {
    height: 4px;
}

.service-icon-box {
    width: 50px;
    height: 50px;
    background: #F5F0E8;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon {
    width: 28px;
    height: 28px;
    color: #C9A961;
    stroke-width: 1.5;
}

.service-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.375rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 1rem;
}

.service-text {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

.service-card-dark {
    background: #2d3748;
    border: 1px solid #2d3748;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-card-dark:hover {
    background: #1e293b;
    border-color: #C9A961;
}

.service-title-dark {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
}

.service-text-dark {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.service-link {
    color: #C9A961;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    display: inline-block;
    transition: all 0.3s ease;
}

.service-link:hover {
    color: #B8941F;
    transform: translateX(5px);
}

/* Responsive Grid */
@media (max-width: 991.98px) {
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 767.98px) {
    .services {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .service-card {
        padding: 2rem 1.5rem;
    }
}

/* Portfolio Section */
.portfolio {
    padding: 80px 0;
    background: #ffffff;
}

.portfolio-filters {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    color: #64748b;
    padding: 0.5rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 0;
}

.filter-btn:hover {
    border-color: #C9A961;
    color: #C9A961;
}

.filter-btn.active {
    background: #C9A961;
    border-color: #C9A961;
    color: #ffffff;
}

.portfolio-card {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
    background: #f8f9fa;
}

.portfolio-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.portfolio-card:hover .portfolio-image {
    transform: scale(1.05);
}

/* Responsive Portfolio */
@media (max-width: 991.98px) {
    .portfolio .d-flex {
        flex-direction: column;
        align-items: flex-start !important;
    }
    
    .portfolio-filters {
        margin-top: 1rem;
    }
}

@media (max-width: 767.98px) {
    .portfolio {
        padding: 60px 0;
    }
    
    .filter-btn {
        padding: 0.4rem 1rem;
        font-size: 0.8rem;
    }
}

/* Process Section */
.process {
    padding: 80px 0;
    background: #f8f9fa;
}

.process-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    padding: 2rem 1.5rem;
    transition: all 0.3s ease;
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: #C9A961;
}

.step-number {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 300;
    color: #e5e7eb;
    line-height: 1;
    margin-bottom: 1rem;
}

.step-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.125rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.step-description {
    font-size: 0.875rem;
    color: #64748b;
    line-height: 1.5;
    margin: 0;
}

/* Responsive Process */
@media (max-width: 991.98px) {
    .process {
        padding: 60px 0;
    }
    
    .step-number {
        font-size: 2.5rem;
    }
    
    .step-title {
        font-size: 1rem;
    }
    
    .process-card {
        padding: 1.5rem 1.25rem;
    }
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: #2b3544;
    color: #ffffff;
}

.testimonials-info {
    padding-right: 3rem;
}

.star-rating {
    display: flex;
    gap: 0.5rem;
}

.star-rating .star {
    color: #C9A961;
    font-size: 1.75rem;
}

.testimonials-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.75rem;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.3;
}

.text-gold {
    color: #C9A961;
}

.testimonials-desc {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
}

.testimonials-stats {
    margin-top: 2.5rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
}

.stat-label {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 0.5rem;
}

.review-card {
    background: #3a4556;
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 3rem 2.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.quote-icon {
    font-size: 4rem;
    color: #C9A961;
    line-height: 0.8;
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
}

.review-text {
    font-size: 1.1rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.review-author {
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.75rem;
    font-size: 1.05rem;
}

.review-stars {
    display: flex;
    gap: 0.3rem;
}

.review-stars .star {
    color: #C9A961;
    font-size: 1.1rem;
}

/* Carousel Indicators */
.carousel-indicators {
    position: relative;
    margin-top: 2.5rem;
    margin-bottom: 0;
    justify-content: center;
}

.carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.25);
    border: none;
    opacity: 1;
    transition: all 0.3s ease;
    margin: 0 4px;
}

.carousel-indicators .active {
    background-color: #C9A961;
    width: 28px;
    border-radius: 5px;
}

/* Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
    display: none;
}

/* Responsive Testimonials */
@media (max-width: 991.98px) {
    .testimonials-info {
        padding-right: 0;
        margin-bottom: 3rem;
        text-align: center;
    }
    
    .star-rating {
        justify-content: center;
    }
    
    .testimonials-title {
        font-size: 2.25rem;
    }
    
    .stat-item {
        align-items: center;
    }
}

@media (max-width: 767.98px) {
    .testimonials {
        padding: 60px 0;
    }
    
    .testimonials-title {
        font-size: 1.85rem;
    }
    
    .stat-value {
        font-size: 2.5rem;
    }
    
    .review-card {
        padding: 2.5rem 2rem;
    }
    
    .quote-icon {
        font-size: 3rem;
    }
    
    .review-text {
        font-size: 1rem;
    }
}

/* About Section */
.about {
    padding: 80px 0;
    background: #f8f8f8;
}

.about-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 0;
}

.about-image {
    width: 100%;
    height: auto;
    display: block;
    filter: grayscale(100%);
    transition: filter 0.6s ease;
}

.about-image-wrapper:hover .about-image {
    filter: grayscale(0%);
}

.about-content {
    padding-left: 2rem;
}

.about-description {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #666;
}

.about-description strong {
    color: #2b3544;
    font-weight: 600;
}

.about-stat {
    border-left: 3px solid var(--primary-gold);
    padding-left: 1.5rem;
}

.about-stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2b3544;
    font-family: 'Playfair Display', serif;
    line-height: 1;
    display: block;
    margin-bottom: 0.5rem;
}

.about-stat-label {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 1px;
    color: #999;
    text-transform: uppercase;
}

/* Contact Section */
.contact {
    padding: 0;
    background: #fff;
}

.contact-info-section {
    background: #f8f8f8;
    height: 100%;
    min-height: 700px;
    display: flex;
    flex-direction: column;
}

.contact-info-content {
    padding: 4rem 3rem 2rem;
    flex-shrink: 0;
}

.contact-description {
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
}

.contact-details {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.contact-icon-wrapper {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon {
    width: 24px;
    height: 24px;
    color: var(--primary-gold);
}

.contact-detail-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2b3544;
    margin-bottom: 0.5rem;
}

.contact-detail-text {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.contact-detail-text a {
    color: #2b3544;
    text-decoration: none;
    font-weight: 500;
}

.contact-map {
    flex: 1;
    min-height: 300px;
    width: 100%;
}

.contact-form-section {
    padding: 4rem 4rem;
    background: white;
}

.form-title {
    font-size: 2rem;
    font-weight: 700;
    color: #2b3544;
    font-family: 'Playfair Display', serif;
}

.form-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: #2b3544;
    margin-bottom: 0.5rem;
}

.form-control {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: white;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 3px rgba(201, 169, 97, 0.1);
}

.form-control::placeholder {
    color: #999;
}

select.form-control {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.btn-contact-submit {
    background: var(--primary-gold);
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-contact-submit:hover {
    background: #b8964f;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(201, 169, 97, 0.3);
}

.form-disclaimer {
    font-size: 0.8rem;
    color: #999;
    text-align: center;
    margin: 0;
    line-height: 1.5;
}

/* Footer */
.footer {
    background: #1a202c;
    color: white;
    padding: 3rem 0 2rem;
}

.footer-content {
    text-align: center;
    margin-bottom: 2rem;
}

.footer-brand h2 {
    font-size: 2rem;
    color: #d4af37;
    margin-bottom: 0.5rem;
}

.footer-brand p {
    color: #a0aec0;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #2d3748;
    color: #a0aec0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        transform: translateY(-100vh);
        transition: transform 0.3s ease;
        z-index: 999;
    }

    .nav-menu.active {
        transform: translateY(0);
    }

    .nav-hamburger {
        display: flex;
    }

    .nav-hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-features {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .testimonials-stats {
        gap: 2rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-text .section-label,
    .about-text .section-title {
        text-align: center;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .about-stats {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .portfolio-item {
        min-height: 250px;
    }

    .services-grid {
        gap: 1.5rem;
    }

    .service-card {
        padding: 2rem 1.5rem;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.6s ease;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Smooth Scrolling for Safari */
@media screen and (-webkit-min-device-pixel-ratio: 0) {
    html {
        scroll-behavior: smooth;
    }
}