:root {
    --gold: #d4af37;
    --dark-gold: #b8860b;
    --soft-white: #fdfbf7;
    --deep-green: #2d4628;
    --text-color: #333;
    --bg-light: #f9f6f2;
}

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

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--soft-white);
    scroll-behavior: smooth;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Cinzel', serif;
    letter-spacing: 2px;
    word-wrap: break-word;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    overflow: hidden;
}

header {
    background: rgba(255, 255, 255, 0.95);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.logo-img {
    height: 70px;
    width: 70px;
    object-fit: cover;
    border-radius: 50%;
}

.logo-text {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo h1 {
    font-size: 1.2rem;
    color: var(--deep-green);
    margin: 0;
    line-height: 1;
}

.logo span {
    font-size: 0.5rem;
    display: block;
    letter-spacing: 2px;
    color: var(--dark-gold);
    text-align: center;
    margin-top: 2px;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s;
    position: relative;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s;
}

nav ul li a:hover::after {
    width: 100%;
}

nav ul li a:hover {
    color: var(--gold);
}

.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

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

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    background-attachment: fixed;
}

.slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(45, 70, 40, 0.8) 0%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    width: 90%;
    padding: 80px 40px 60px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    margin-top: 100px;
}

.hero-logo {
    margin-bottom: 20px;
    animation: fadeInDown 1s ease-out;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-logo-img {
    height: 180px;
    width: 180px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 15px;
}

.hero-logo .logo-text h1 {
    color: white;
    font-size: 2rem;
    letter-spacing: 4px;
}

.hero-logo .logo-text span {
    color: var(--gold);
    font-size: 0.8rem;
    letter-spacing: 6px;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    display: block;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 5px;
    font-size: 0.9rem;
    margin-bottom: 20px;
    color: var(--gold);
    font-weight: 600;
}

.hero-content h2 {
    font-size: 4.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.3);
    line-height: 1.1;
}

.hero-divider {
    width: 80px;
    height: 3px;
    background: var(--gold);
    margin: 20px auto;
}

.tagline {
    font-size: 1.4rem;
    margin-bottom: 40px;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: #f0f0f0;
}

.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.cta-button {
    display: inline-block;
    padding: 18px 45px;
    background: var(--gold);
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid var(--gold);
}

.cta-button:hover {
    background: transparent;
    color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.secondary-button {
    display: inline-block;
    padding: 18px 45px;
    background: transparent;
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 50px;
    transition: all 0.4s;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid white;
}

.secondary-button:hover {
    background: white;
    color: var(--deep-green);
    transform: translateY(-5px);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.mouse {
    width: 25px;
    height: 45px;
    border: 2px solid white;
    border-radius: 20px;
    position: relative;
}

.mouse::before {
    content: '';
    width: 4px;
    height: 8px;
    background: white;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 8px;
    border-radius: 2px;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% { transform: translate(-50%, 0); opacity: 1; }
    100% { transform: translate(-50%, 20px); opacity: 0; }
}

section {
    padding: 100px 0;
}

.about {
    background: white;
    position: relative;
    z-index: 1;
    overflow: hidden;
    background: linear-gradient(to right, #ffffff 70%, var(--bg-light) 70%);
}

.about-flex {
    display: flex;
    align-items: center;
    gap: 50px;
    position: relative;
    z-index: 2;
}

.about-text {
    flex: 1;
    z-index: 2;
}

.about-text h3 {
    text-align: left;
    margin-bottom: 20px;
}

.about-text h3::after {
    margin: 15px 0;
    display: none;
}

.about-text h3::before {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: var(--gold);
    margin-bottom: 15px;
}

.sub-title {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: var(--dark-gold);
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.about-image {
    flex: 1;
    z-index: 2;
}

.about-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 20px 20px 0px var(--gold);
}

@media (max-width: 768px) {
    .about {
        background: white;
    }
    .about-flex {
        flex-direction: column;
        gap: 30px;
    }
    
    .about-text {
        text-align: center;
    }
    
    .about-text h3 {
        text-align: center;
    }
    
    .about-text h3::before {
        margin: 0 auto 15px;
    }
    
    .about-text h3::after {
        display: none;
    }

    .about-image img {
        box-shadow: 10px 10px 0px var(--gold);
    }
}

.why-choose {
    background-color: var(--soft-white);
    padding: 80px 0;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
    justify-items: center;
}

.why-item {
    text-align: center;
    padding: 20px;
    transition: transform 0.3s ease;
}

.why-item:hover {
    transform: translateY(-5px);
}

.why-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
}

.why-item p {
    font-weight: 600;
    color: var(--deep-green);
    font-size: 1rem;
    font-family: 'Cinzel', serif;
}

.pricing {
    background: var(--deep-green);
    color: white;
}

.pricing h3 {
    color: white;
}

h3 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--deep-green);
    position: relative;
}

h3::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background: var(--gold);
    margin: 15px auto;
}

.services {
    background-color: var(--bg-light);
    background-image: radial-gradient(rgba(212, 175, 55, 0.1) 1px, transparent 1px);
    background-size: 30px 30px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.service-item {
    background: white;
    padding: 30px;
    text-align: center;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

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

.service-item .icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 15px;
}

.service-item h4 {
    font-size: 1.1rem;
    color: var(--deep-green);
}

.special-features {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    border-top: 1px solid #ddd;
    padding-top: 40px;
}

.feature {
    font-weight: 600;
    color: var(--dark-gold);
    margin: 10px;
}

.promo {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 40px;
    color: var(--gold);
}

.pricing-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    align-items: center;
}

.card {
    background: white;
    color: var(--text-color);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    width: 320px;
    position: relative;
    transition: all 0.4s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.card.featured {
    transform: scale(1.05);
    border: 2px solid var(--gold);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.card.featured:hover {
    transform: scale(1.1) translateY(-10px);
}

.badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: white;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card h4 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--deep-green);
}

.card .desc {
    font-size: 0.8rem;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.old-price {
    text-decoration: line-through;
    color: #888;
    margin-bottom: 5px;
}

.new-price {
    font-size: 2rem;
    font-weight: bold;
    color: var(--dark-gold);
}

/* FAQ Section */
.faq {
    background-color: var(--bg-light);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    margin-bottom: 15px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--gold);
}

.faq-question {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: white;
    transition: background 0.3s;
}

.faq-question h4 {
    font-size: 1.1rem;
    color: var(--deep-green);
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.faq-question i {
    color: var(--gold);
    transition: transform 0.3s;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease;
    background: #fffdf9;
}

.faq-answer p {
    padding: 0 25px 20px;
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

.faq-item.active .faq-question {
    background: #fffdf9;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-item.active .faq-answer {
    max-height: 200px; /* Adjust based on content */
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.contact {
    text-align: center;
}

.contact p {
    font-weight: bold;
    margin-bottom: 40px;
    color: var(--dark-gold);
}

#contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

#contact-form input, #contact-form textarea {
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-family: inherit;
    background: #fdfbf7;
    transition: border-color 0.3s;
}

#contact-form input:focus, #contact-form textarea:focus {
    outline: none;
    border-color: var(--gold);
}

.contact-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    text-align: left;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-item {
    background: white;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.footer-content .disclaimer {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 800px;
    margin: 20px auto;
    line-height: 1.4;
    font-style: italic;
}

.info-item:hover {
    transform: translateY(-5px);
}

.info-item i {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.info-item .fa-whatsapp { color: #25D366; }
.info-item .fa-instagram { color: #E1306C; }
.info-item .fa-envelope { color: var(--gold); }

.info-item h4 {
    color: var(--deep-green);
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.info-item p {
    font-size: 0.9rem;
    margin-bottom: 15px;
    color: #666;
    font-weight: normal;
}

.info-link {
    display: inline-block;
    padding: 8px 20px;
    background: #25D366;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 0.8rem;
    transition: all 0.3s;
}

.info-link.insta { background: #E1306C; }
.info-link.email { background: var(--deep-green); }

.info-link:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.submit-btn {
    padding: 18px;
    background: var(--deep-green);
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
}

.submit-btn:hover {
    background: var(--dark-gold);
    transform: translateY(-3px);
}

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
    z-index: 1000;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(10deg);
    background-color: #128c7e;
}

footer {
    padding: 60px 0 40px;
    background: var(--deep-green);
    color: white;
    text-align: center;
}

.footer-content {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-logo {
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.footer-logo-img {
    height: 100px;
    width: 100px;
    object-fit: cover;
    border-radius: 50%;
}

.footer-logo span {
    font-family: 'Cinzel', serif;
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
}

.footer-links a {
    color: white;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--gold);
    transform: scale(1.2);
}

footer p {
    font-size: 0.8rem;
    opacity: 0.7;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    margin-top: 20px;
    font-weight: normal;
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    header {
        background: rgba(255, 255, 255, 0.98);
        position: static;
    }
    nav {
        flex-direction: column;
        padding: 15px;
        width: 100%;
    }
    nav ul {
        margin-top: 15px;
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
    }
    nav ul li {
        margin: 5px 10px;
    }
    .hero {
        padding-top: 20px;
        height: auto;
        min-height: 100vh;
    }
    .hero-content {
        padding: 60px 20px 40px;
        width: 95%;
        margin: 80px auto 40px;
        backdrop-filter: blur(5px);
    }
    .slide {
        background-attachment: scroll;
    }
    .tagline {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    .hero-btns {
        flex-direction: column;
        gap: 12px;
    }
    .cta-button, .secondary-button {
        width: 100%;
        padding: 15px 30px;
    }
    .card.featured {
        transform: scale(1);
    }
    .card.featured:hover {
        transform: translateY(-10px);
    }
    section {
        padding: 60px 0;
    }
    h3 {
        font-size: 2rem;
    }
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 25px;
    }
}

@media (max-width: 480px) {
    .logo h1 {
        font-size: 1rem;
    }
    .logo-icon {
        font-size: 1.4rem;
    }
    .hero-content {
        width: 90%;
        padding: 30px 15px 20px;
    }
    .hero-logo .logo-icon {
        font-size: 2.5rem;
    }
    .hero-logo .logo-text h1 {
        font-size: 1.4rem;
    }
    .hero-logo .logo-text span {
        font-size: 0.6rem;
    }
    .hero-content h2 {
        font-size: 2rem;
    }
    .hero-subtitle {
        font-size: 0.7rem;
        letter-spacing: 3px;
    }
    .tagline {
        font-size: 0.9rem;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
    .pricing-cards {
        gap: 20px;
    }
    .card {
        width: 100%;
        padding: 30px 20px;
    }
}
