/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Premium Luxury Palette */
    --rich-mahogany: #3d2817;
    --warm-oak: #8b6f47;
    --aged-bronze: #b8860b;
    --deep-burgundy: #722f37;
    --cream: #f5f5dc;
    --charcoal: #2c2c2c;
    --soft-gold: #d4af37;
    --light-cream: #faf8f3;
    --white: #ffffff;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.2);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Baskerville', 'Georgia', 'Times New Roman', serif;
    color: var(--charcoal);
    line-height: 1.8;
    background: var(--light-cream);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Navigation */
.navbar {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--cream);
}

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

.nav-brand h1 {
    color: var(--rich-mahogany);
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
    letter-spacing: 0.5px;
    font-family: 'Georgia', serif;
}

.nav-brand .tagline {
    color: var(--warm-oak);
    font-size: 0.95rem;
    font-style: italic;
    letter-spacing: 0.3px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 3rem;
}

.nav-links a {
    color: var(--charcoal);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.05rem;
    transition: color 0.3s;
    letter-spacing: 0.3px;
}

.nav-links a:hover {
    color: var(--aged-bronze);
}

.cta-btn {
    background: var(--rich-mahogany);
    color: var(--cream);
    padding: 0.9rem 1.8rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    border: 1px solid var(--rich-mahogany);
    letter-spacing: 0.5px;
}

.cta-btn:hover {
    background: var(--deep-burgundy);
    border-color: var(--deep-burgundy);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--rich-mahogany) 0%, var(--deep-burgundy) 100%);
    color: var(--cream);
    padding: 8rem 0;
    text-align: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M0,50 Q25,45 50,50 T100,50" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="0.5"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-content h2 {
    font-size: 3.8rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
    letter-spacing: 1px;
    font-family: 'Georgia', serif;
}

.hero-subtitle {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    opacity: 0.95;
    font-style: italic;
    color: var(--soft-gold);
    letter-spacing: 0.5px;
}

.hero-description {
    font-size: 1.15rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.9;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 4rem;
}

.btn {
    padding: 1.2rem 2.5rem;
    border-radius: 4px;
    font-weight: 500;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: var(--soft-gold);
    color: var(--rich-mahogany);
    border: 2px solid var(--soft-gold);
}

.btn-primary:hover {
    background: var(--aged-bronze);
    border-color: var(--aged-bronze);
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.btn-secondary {
    background: transparent;
    color: var(--cream);
    border: 2px solid var(--cream);
}

.btn-secondary:hover {
    background: var(--cream);
    color: var(--rich-mahogany);
    transform: translateY(-3px);
}

.trust-badges {
    display: flex;
    gap: 3rem;
    justify-content: center;
    flex-wrap: wrap;
}

.badge {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-size: 1.1rem;
    opacity: 0.95;
}

.badge-icon {
    font-size: 1.8rem;
}

/* Services Section */
.services {
    padding: 7rem 0;
    background: var(--white);
}

.section-title {
    text-align: center;
    font-size: 3rem;
    color: var(--rich-mahogany);
    margin-bottom: 1.5rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    font-family: 'Georgia', serif;
}

.section-subtitle {
    text-align: center;
    font-size: 1.3rem;
    color: var(--warm-oak);
    margin-bottom: 4rem;
    font-style: italic;
    letter-spacing: 0.3px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.service-card {
    background: var(--light-cream);
    padding: 3rem 2.5rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.4s;
    border: 1px solid var(--cream);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--aged-bronze);
}

.service-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    color: var(--rich-mahogany);
    font-size: 1.7rem;
    margin-bottom: 1.2rem;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.service-card p {
    color: var(--charcoal);
    line-height: 1.9;
    font-size: 1.05rem;
}

/* About/Craftsmanship Section */
.about {
    padding: 7rem 0;
    background: var(--light-cream);
}

.about-content {
    max-width: 1100px;
    margin: 0 auto;
}

.about-text h2 {
    font-size: 3rem;
    color: var(--rich-mahogany);
    margin-bottom: 2rem;
    font-weight: 500;
    text-align: center;
    letter-spacing: 0.5px;
    font-family: 'Georgia', serif;
}

.about-intro {
    font-size: 1.3rem;
    color: var(--warm-oak);
    text-align: center;
    margin-bottom: 4rem;
    font-style: italic;
    line-height: 2;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
}

.feature {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--aged-bronze);
    box-shadow: var(--shadow);
}

.feature h4 {
    color: var(--rich-mahogany);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.feature p {
    color: var(--charcoal);
    line-height: 1.9;
    font-size: 1.05rem;
}

/* Gallery & Pricing Section */
.pricing {
    padding: 7rem 0;
    background: var(--white);
}

.gallery-placeholder {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 5rem;
}

.placeholder-box {
    background: var(--light-cream);
    border: 2px dashed var(--warm-oak);
    border-radius: 8px;
    padding: 4rem 2rem;
    text-align: center;
    transition: all 0.3s;
}

.placeholder-box:hover {
    border-color: var(--aged-bronze);
    background: var(--cream);
}

.placeholder-text {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    opacity: 0.6;
}

.placeholder-caption {
    color: var(--warm-oak);
    font-size: 1.1rem;
    font-style: italic;
}

.pricing-info {
    max-width: 900px;
    margin: 0 auto;
    background: var(--light-cream);
    padding: 4rem 3rem;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--aged-bronze);
}

.pricing-info h3 {
    color: var(--rich-mahogany);
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 500;
    letter-spacing: 0.5px;
    font-family: 'Georgia', serif;
}

.price-description {
    text-align: center;
    font-size: 1.2rem;
    color: var(--charcoal);
    margin-bottom: 2.5rem;
    line-height: 1.9;
}

.price-highlight {
    text-align: center;
    margin: 3rem 0;
    padding: 2rem;
    background: var(--white);
    border-radius: 8px;
    border: 1px solid var(--aged-bronze);
}

.price-label {
    display: block;
    font-size: 1.2rem;
    color: var(--warm-oak);
    margin-bottom: 0.5rem;
    font-style: italic;
}

.price-amount {
    display: block;
    font-size: 4rem;
    font-weight: 500;
    color: var(--rich-mahogany);
    letter-spacing: 1px;
    font-family: 'Georgia', serif;
}

.pricing-includes {
    list-style: none;
    margin: 2.5rem 0;
    padding: 0;
}

.pricing-includes li {
    padding: 1rem;
    border-bottom: 1px solid var(--cream);
    font-size: 1.1rem;
    color: var(--charcoal);
}

.pricing-includes li:last-child {
    border-bottom: none;
}

.custom-note {
    text-align: center;
    font-size: 1.1rem;
    color: var(--warm-oak);
    margin: 2.5rem 0;
    font-style: italic;
    line-height: 1.9;
}

.pricing-info .btn-primary {
    display: block;
    width: 100%;
    margin-top: 2rem;
}

/* Contact Section */
.contact {
    padding: 7rem 0;
    background: var(--light-cream);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.contact-card {
    background: var(--white);
    padding: 3rem 2.5rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    border: 1px solid var(--cream);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--aged-bronze);
}

.contact-card h3 {
    color: var(--rich-mahogany);
    font-size: 1.7rem;
    margin-bottom: 1.2rem;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.contact-card p {
    color: var(--charcoal);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.contact-link {
    color: var(--aged-bronze);
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 500;
    transition: color 0.3s;
    letter-spacing: 0.3px;
}

.contact-link:hover {
    color: var(--soft-gold);
}

.contact-link-btn {
    background: var(--rich-mahogany);
    color: var(--cream);
    padding: 0.9rem 2rem;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.contact-link-btn:hover {
    background: var(--deep-burgundy);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

/* Footer */
.footer {
    background: var(--rich-mahogany);
    color: var(--cream);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    color: var(--soft-gold);
    font-size: 1.5rem;
    margin-bottom: 1.2rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.footer-section h4 {
    color: var(--soft-gold);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.footer-section p {
    margin: 0.7rem 0;
    opacity: 0.9;
    line-height: 1.8;
}

.footer-section a {
    color: var(--cream);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--soft-gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    opacity: 0.8;
    font-size: 0.95rem;
    font-style: italic;
}

/* Chat Bubble */
.chat-bubble {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 65px;
    height: 65px;
    background: var(--rich-mahogany);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s;
    z-index: 1000;
    border: 2px solid var(--aged-bronze);
}

.chat-bubble:hover {
    transform: scale(1.1);
    background: var(--deep-burgundy);
    box-shadow: var(--shadow-xl);
}

.chat-icon {
    font-size: 1.8rem;
    color: var(--cream);
}

.chat-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--soft-gold);
    color: var(--rich-mahogany);
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
}

/* Chat Window */
.chat-window {
    position: fixed;
    bottom: 110px;
    right: 20px;
    width: 420px;
    height: 600px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-xl);
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    transition: all 0.3s;
    z-index: 999;
    border: 2px solid var(--aged-bronze);
}

.chat-window.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.chat-header {
    background: var(--rich-mahogany);
    color: var(--cream);
    padding: 1.3rem;
    border-radius: 10px 10px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-header-content {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.status-dot {
    width: 11px;
    height: 11px;
    background: var(--soft-gold);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.chat-header h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.chat-header p {
    margin: 0;
    font-size: 0.85rem;
    opacity: 0.9;
}

.chat-close {
    background: none;
    border: none;
    color: var(--cream);
    font-size: 1.6rem;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: background 0.3s;
}

.chat-close:hover {
    background: rgba(255, 255, 255, 0.15);
}

.chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 1.3rem;
    background: var(--light-cream);
}

.message {
    margin-bottom: 1.2rem;
    display: flex;
}

.message.bot {
    justify-content: flex-start;
}

.message.user {
    justify-content: flex-end;
}

.message-content {
    max-width: 80%;
    padding: 0.9rem 1.2rem;
    border-radius: 12px;
    word-wrap: break-word;
    line-height: 1.6;
}

.message.bot .message-content {
    background: var(--white);
    color: var(--charcoal);
    border-bottom-left-radius: 4px;
    border: 1px solid var(--cream);
}

.message.user .message-content {
    background: var(--rich-mahogany);
    color: var(--cream);
    border-bottom-right-radius: 4px;
}

.typing-indicator {
    background: var(--white);
    padding: 0.9rem 1.2rem;
    border-radius: 12px;
    border-bottom-left-radius: 4px;
    display: inline-flex;
    gap: 5px;
    border: 1px solid var(--cream);
}

.typing-indicator span {
    width: 9px;
    height: 9px;
    background: var(--warm-oak);
    border-radius: 50%;
    animation: typing 1.4s infinite;
}

.typing-indicator span:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-indicator span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typing {
    0%, 60%, 100% {
        transform: translateY(0);
    }
    30% {
        transform: translateY(-10px);
    }
}

.quick-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 1.2rem;
}

.quick-action-btn {
    background: var(--white);
    border: 1px solid var(--warm-oak);
    color: var(--rich-mahogany);
    padding: 0.6rem 1.2rem;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.95rem;
    transition: all 0.3s;
    font-weight: 500;
}

.quick-action-btn:hover {
    background: var(--rich-mahogany);
    color: var(--cream);
    border-color: var(--rich-mahogany);
}

.chat-input {
    display: flex;
    padding: 1.2rem;
    border-top: 1px solid var(--cream);
    background: var(--white);
    border-radius: 0 0 10px 10px;
}

.chat-input input {
    flex: 1;
    padding: 0.9rem;
    border: 1px solid var(--cream);
    border-radius: 6px;
    font-size: 0.95rem;
    outline: none;
    font-family: 'Baskerville', 'Georgia', 'Times New Roman', serif;
}

.chat-input input:focus {
    border-color: var(--aged-bronze);
}

.chat-input button {
    margin-left: 0.6rem;
    padding: 0.9rem 1.8rem;
    background: var(--rich-mahogany);
    color: var(--cream);
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    transition: background 0.3s;
    letter-spacing: 0.3px;
}

.chat-input button:hover {
    background: var(--deep-burgundy);
}

.chat-input button:disabled {
    background: var(--warm-oak);
    cursor: not-allowed;
    opacity: 0.6;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }
    
    .hero-content h2 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero-content h2 {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .chat-window {
        width: calc(100% - 40px);
        right: 20px;
        left: 20px;
    }

    .services-grid,
    .gallery-placeholder,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .price-amount {
        font-size: 3rem;
    }
}
