/* ========================================
   CSS Reset & Base Styles
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Green Theme Colors */
    --primary-green: #6B7D5C;
    --dark-green: #4A5940;
    --light-green: #8B9D7C;
    --sage-green: #9CAF88;
    --cream: #F5F3EF;
    --white: #FFFFFF;
    --text-dark: #2C3E2C;
    --accent-gold: #D4AF37;
    
    /* Fonts */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--cream);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ========================================
   Decorative Background
   ======================================== */
.flower-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    background: 
        radial-gradient(circle at 20% 80%, rgba(139, 157, 124, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(107, 125, 92, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(156, 175, 136, 0.06) 0%, transparent 50%);
}

/* ========================================
   Header & Navigation
   ======================================== */
.header {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
     min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, var(--sage-green) 0%, var(--primary-green) 100%);
    overflow: hidden;
     padding-top: 80px; /* matches header height */
}

.hero-content {
    text-align: center;
    z-index: 10;
    max-width: 800px;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.logo-container {
    margin-bottom: 2rem;
    animation: fadeIn 1.5s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.logo {
    width: 280px;
    height: 280px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    border: 5px solid var(--white);
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05) rotate(2deg);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
    text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 400;
    color: var(--cream);
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.tagline {
    font-size: 1.2rem;
    color: var(--cream);
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary {
    background: var(--white);
    color: var(--primary-green);
}

.btn-primary:hover {
    background: var(--cream);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-green);
    transform: translateY(-3px);
}

/* Floating Flowers Animation */
.hero-flowers {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    pointer-events: none;
}

.floating-flower {
    position: absolute;
    font-size: 3rem;
    opacity: 0.3;
    animation: float 20s infinite ease-in-out;
}

.flower-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.flower-2 {
    top: 20%;
    right: 15%;
    animation-delay: 2s;
}

.flower-3 {
    bottom: 20%;
    left: 15%;
    animation-delay: 4s;
}

.flower-4 {
    bottom: 30%;
    right: 10%;
    animation-delay: 6s;
}

.flower-5 {
    top: 50%;
    left: 5%;
    animation-delay: 8s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-20px) rotate(5deg);
    }
    50% {
        transform: translateY(-40px) rotate(-5deg);
    }
    75% {
        transform: translateY(-20px) rotate(3deg);
    }
}

/* ========================================
   About Section
   ======================================== */
.about {
    padding: 6rem 0;
    background: var(--white);
    margin-top: 4rem;
    position: relative;
    z-index: 2
}

.section-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--primary-green);
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '🌿';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
}

.about-text {
    max-width: 900px;
    margin: 0 auto;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    text-align: center;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, var(--cream) 0%, var(--white) 100%);
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(107, 125, 92, 0.2);
    border-color: var(--sage-green);
}

.feature-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.feature h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--primary-green);
    margin-bottom: 0.5rem;
}

.feature p {
    color: var(--text-dark);
    font-size: 1rem;
}

/* ========================================
   Contact Section
   ======================================== */
.contact {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--sage-green) 0%, var(--light-green) 100%);
}

.contact .section-title {
    color: var(--white);
}

.contact-content {
    max-width: 800px;
    margin: 0 auto;
}

.contact-info {
    background: var(--white);
    padding: 3rem;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.contact-description {
    font-size: 1.1rem;
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--cream);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.contact-method:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(107, 125, 92, 0.2);
}

.contact-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.contact-details h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--primary-green);
    margin-bottom: 0.25rem;
}

.contact-details p {
    color: var(--text-dark);
    font-size: 1rem;
}

.social-links {
    margin-top: 3rem;
    text-align: center;
}

.social-links h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--primary-green);
    margin-bottom: 1.5rem;
}

.social-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1.2rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.instagram-btn {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: var(--white);
}

.instagram-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(188, 24, 136, 0.4);
}

.whatsapp-btn {
    background: #25D366;
    color: var(--white);
}

.whatsapp-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.social-btn svg {
    width: 24px;
    height: 24px;
}

/* ========================================
   Footer
   ======================================== */
.footer {
    background: var(--dark-green);
    color: var(--cream);
    padding: 3rem 0 2rem;
    text-align: center;
}

.footer-content {
    max-width: 800px;
    margin: 0 auto;
}

.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-logo-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 0.5rem;
    border: 3px solid var(--white);
}

.footer-logo p {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--white);
}

.footer-text {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.footer-tagline {
    font-size: 1.1rem;
    font-style: italic;
    opacity: 0.8;
    margin-bottom: 1rem;
}

.footer-credit {
    font-size: 0.9rem;
    opacity: 0.7;
    margin-bottom: 0;
}

.footer-link {
    color: var(--cream);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.footer-link:hover {
    opacity: 1;
    text-decoration: underline;
}

/* ========================================
   Testimonials Section
   ======================================== */
.testimonials {
    padding: 6rem 0;
    background: var(--cream);
}

.testimonials .section-title {
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.testimonials-description {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 3rem;
    font-weight: 300;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(107, 125, 92, 0.1);
    transition: all 0.3s ease;
    border-left: 5px solid var(--primary-green);
    overflow: hidden;
}

.testimonial-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.testimonial-card:hover .testimonial-image {
    transform: scale(1.05);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(107, 125, 92, 0.2);
}

.testimonial-stars {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 1rem;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary-green);
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

.testimonial-occasion {
    font-size: 0.9rem;
    color: var(--light-green);
    font-weight: 500;
}

/* ========================================
   Gallery Section
   ======================================== */
.gallery {
    padding: 6rem 0;
    background: var(--cream);
}

.gallery .section-title {
    color: var(--primary-green);
}

.gallery-description {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 3rem;
    font-weight: 300;
}

.slideshow-container {
    max-width: 900px;
    position: relative;
    margin: 0 auto;
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(107, 125, 92, 0.2);
    
}

.slide {
    display: none;
    width: 100%;
    position: relative;
}

.slide.active {
    display: block;
}

.slide img {
   width: 100%;
    aspect-ratio: 4 / 5; /* PERFECT for flowers */
    object-fit: cover;
    display: block;
}

.slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: var(--white);
    padding: 2rem;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    text-align: center;
}

.slide-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background:transparent;
    color: var(--white);
    border: none;
    font-size: 2rem;
    padding: 1rem 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 5px;
    z-index: 10;
}

.slide-btn:hover {
    background: transparent;
    transform: translateY(-50%) scale(1.1);
}

.slide-btn.prev {
    left: 1rem;
}

.slide-btn.next {
    right: 1rem;
}

.slide-dots {
    text-align: center;
    padding: 2rem 0;
}

.dot {
    height: 15px;
    width: 15px;
    margin: 0 5px;
    background-color: var(--light-green);
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot:hover,
.dot.active {
    background-color: var(--primary-green);
    transform: scale(1.2);
}

.fade {
    animation-name: fade;
    animation-duration: 1s;
}

@keyframes fade {
    from {
        opacity: 0.4;
    }
    to {
        opacity: 1;
    }
}

.gallery-note {
    background: linear-gradient(135deg, var(--sage-green), var(--light-green));
    padding: 1.5rem;
    border-radius: 15px;
    margin-top: 3rem;
    text-align: center;
}

.gallery-note p {
    color: var(--white);
    margin: 0;
    font-size: 1.1rem;
}

.gallery-note code {
    background: rgba(255, 255, 255, 0.3);
    padding: 0.3rem 0.6rem;
    border-radius: 5px;
    font-family: 'Courier New', monospace;
    font-weight: bold;
}

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 768px) {
    .slide img {
        aspect-ratio: 3 / 4;
    }
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .tagline {
        font-size: 1rem;
    }
    
    .logo {
        width: 200px;
        height: 200px;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .nav-links {
        gap: 1rem;
    }
    
    .nav-link {
        padding: 0.4rem 0.8rem;
        font-size: 0.9rem;
    }
    
    .contact-info {
        padding: 2rem 1.5rem;
    }
    
    .floating-flower {
        font-size: 2rem;
    }
    
    .features {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   Floating Social Buttons
   ======================================== */
.floating-social {
    position: fixed;
    bottom: 30px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    animation: popIn 0.5s ease-out;
}

.floating-btn:hover {
    transform: scale(1.15) translateX(-10px);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.3);
}

.whatsapp-floating {
    background: #25D366;
    color: var(--white);
}

.instagram-floating {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: var(--white);
}

.floating-btn svg {
    width: 28px;
    height: 28px;
}

@keyframes popIn {
    from {
        opacity: 0;
        transform: scale(0);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@media (max-width: 480px) {
    .floating-social {
        bottom: 20px;
        right: 15px;
    }

    .floating-btn {
        width: 50px;
        height: 50px;
    }

    .floating-btn svg {
        width: 24px;
        height: 24px;
    }
}

@media (max-width: 480px) {
    .slide img {
        aspect-ratio: 1 / 1;
    }
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .logo {
        width: 160px;
        height: 160px;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .about, .contact {
        padding: 4rem 0;
    }
    
    .form-group {
        margin-bottom: 1rem;
    }
}

/* ========================================
   Enquiry Form Styles
   ======================================== */
.enquiry-form-container {
    background: linear-gradient(135deg, var(--cream) 0%, var(--sage-green) 100%);
    padding: 2.5rem;
    border-radius: 25px;
    margin-bottom: 3rem;
    box-shadow: 0 10px 40px rgba(107, 125, 92, 0.15);
    border: 2px solid rgba(107, 125, 92, 0.1);
}

.form-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--dark-green);
    text-align: center;
    margin-bottom: 2rem;
}

.enquiry-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--dark-green);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid rgba(107, 125, 92, 0.2);
    border-radius: 15px;
    font-family: var(--font-body);
    font-size: 1rem;
    background: var(--white);
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 4px rgba(107, 125, 92, 0.1);
    transform: translateY(-2px);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(44, 62, 44, 0.5);
}

.btn-submit {
    width: 100%;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
    color: var(--white);
    border: none;
    padding: 1.2rem 2rem;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(107, 125, 92, 0.3);
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(107, 125, 92, 0.4);
}

.btn-submit:active {
    transform: translateY(-1px);
}

.btn-icon {
    font-size: 1.5rem;
}

.divider {
    position: relative;
    text-align: center;
    margin: 3rem 0;
}

.divider::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--light-green), transparent);
}

.divider-text {
    position: relative;
    display: inline-block;
    background: var(--white);
    padding: 0 1.5rem;
    color: var(--primary-green);
    font-weight: 600;
    font-size: 1rem;
}

/* ========================================
   Success Modal Styles
   ======================================== */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background-color: var(--white);
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 500px;
    width: 90%;
    animation: slideUp 0.4s ease;
}

.modal-body {
    padding: 3rem 2rem;
    text-align: center;
}

.success-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    animation: bounce 0.6s ease;
    display: block;
}

.modal-body h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.modal-body p {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.success-message {
    font-size: 1rem;
    color: var(--light-green);
    font-weight: 500;
    margin-bottom: 2rem;
}

.modal-body .btn {
    min-width: 150px;
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes bounce {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}
