/* styles.css */

/* Base Styles and Variables */
:root {
    --primary-color: #8a1538;
    /* Deep red from the business card */
    --secondary-color: #2c5e2e;
    /* Forest green */
    --accent-color: #ffb6c1;
    /* Light pink */
    --text-color: #333333;
    --light-text: #ffffff;
    --background-color: #ffffff;
    --light-bg: #f9f9f9;
    --dark-bg: #1a1a1a;
    --border-radius: 8px;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--primary-color);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--secondary-color);
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--light-text);
}

.btn-primary:hover {
    background-color: #6a102b;
    transform: translateY(-3px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--light-text);
    transform: translateY(-3px);
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.whatsapp-float:hover {
    background-color: #128C7E;
    transform: scale(1.1);
}

/* Enhanced Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.95) 100%);
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 2rem;
    position: relative;
}

.nav-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    display: flex;
    align-items: center;
}

.nav-logo i {
    margin-right: 10px;
    font-size: 1.5rem;
}

.nav-contact-info {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    margin-right: 2rem;
}

.call-to-order {
    display: flex;
    align-items: center;
    background: linear-gradient(45deg, var(--primary-color), #6a102b);
    color: white;
    padding: 8px 15px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(138, 21, 56, 0.3);
    transition: var(--transition);
    text-decoration: none;
}

.call-to-order:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(138, 21, 56, 0.4);
}

.call-to-order i {
    margin-right: 8px;
    font-size: 1rem;
}

.mobile-contact {
    display: none;
    padding: 15px 20px;
    border-top: 1px solid #eee;
    margin-top: 10px;
}

.working-hours {
    font-size: 0.8rem;
    margin-top: 5px;
    color: var(--secondary-color);
    font-weight: 500;
}



.nav-menu {
    display: flex;
    list-style: none;
}

.nav-item {
    margin-left: 1.5rem;
    position: relative;
}

.nav-link {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    padding: 8px 0;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
}

.bar {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--text-color);
    transition: var(--transition);
    border-radius: 3px;
}

/* Floating Petals in Header */
.header-petals {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.header-petal {
    position: absolute;
    width: 15px;
    height: 15px;
    background: var(--accent-color);
    border-radius: 50% 0 50% 50%;
    opacity: 0.7;
    animation: header-fall linear infinite;
}

@keyframes header-fall {
    to {
        transform: translateY(100px) rotate(360deg);
    }
}

/* Art Gallery Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--light-text);
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d1b1b 100%);
    margin-top: 80px;
    height: 40vh;
}

.gallery-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 10% 20%, rgba(138, 21, 56, 0.1) 0%, transparent 20%),
        radial-gradient(circle at 90% 30%, rgba(44, 94, 46, 0.1) 0%, transparent 20%),
        radial-gradient(circle at 50% 80%, rgba(212, 175, 55, 0.1) 0%, transparent 20%);
    z-index: 1;
}


.hero-content {
    z-index: 10;
    max-width: 800px;
    padding: 0 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-title {
    font-size: 4.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    background: linear-gradient(to right, #d4af37, #f7ef8a);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: titleGlow 3s ease-in-out infinite alternate;
}

@keyframes titleGlow {
    0% {
        text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
    }

    100% {
        text-shadow: 0 0 20px rgba(212, 175, 55, 0.8), 0 0 30px rgba(212, 175, 55, 0.6);
    }
}

.changing-text {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    min-height: 2.5rem;
    position: relative;
    color: var(--accent-color);
}

.changing-text span {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.changing-text span:first-child {
    opacity: 1;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.hero-btn {
    padding: 15px 35px;
    font-size: 1.1rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.hero-btn-primary {
    background: linear-gradient(45deg, var(--primary-color), #6a102b);
    color: white;
    border: none;
    box-shadow: 0 5px 15px rgba(138, 21, 56, 0.4);
}

.hero-btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(138, 21, 56, 0.6);
}

.hero-btn-secondary {
    background: transparent;
    color: var(--gold-color);
    border: 2px solid var(--gold-color);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.hero-btn-secondary:hover {
    background: var(--gold-color);
    color: var(--dark-bg);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.5);
}

.floating-petals {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.petal {
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--accent-color);
    border-radius: 50% 0 50% 50%;
    opacity: 0.7;
    animation: fall linear infinite;
}

@keyframes fall {
    to {
        transform: translateY(100vh) rotate(360deg);
    }
}

/* Loading and Error States */
.loading {
    text-align: center;
    padding: 40px;
    color: #667eea;
    font-size: 1.1rem;
}

.loading i {
    margin-right: 10px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.error-message {
    text-align: center;
    padding: 20px;
    background: #ffe6e6;
    border: 1px solid #ffcccc;
    border-radius: 8px;
    color: #d63031;
    margin: 20px 0;
}

.error-message i {
    margin-right: 10px;
}

.no-flowers-message {
    text-align: center;
    padding: 60px 20px;
    color: #666;
    grid-column: 1 / -1;
}

.no-flowers-message i {
    font-size: 3rem;
    color: #667eea;
    margin-bottom: 20px;
}

.no-flowers-message h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #333;
}

/* Product Card Enhancements */
.product-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.product-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover img {
    transform: scale(1.05);
}

.product-details {
    padding: 20px;
}

.product-details h2 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #333;
    font-weight: 600;
}

.product-details p {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.5;
}

.product-details h2:last-of-type {
    color: #667eea;
    font-weight: 700;
    margin-bottom: 15px;
}

/* Responsive Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
    }

    .product-card img {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}


/* Loading and Error States */
.loading {
    text-align: center;
    padding: 40px;
    color: #667eea;
    font-size: 1.1rem;
    display: none;
}

.loading i {
    margin-right: 10px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.error-message {
    text-align: center;
    padding: 20px;
    background: #ffe6e6;
    border: 1px solid #ffcccc;
    border-radius: 8px;
    color: #d63031;
    margin: 20px 0;
    display: none;
}

.error-message i {
    margin-right: 10px;
}

.no-flowers-message {
    text-align: center;
    padding: 60px 20px;
    color: #666;
    grid-column: 1 / -1;
}

.no-flowers-message i {
    font-size: 3rem;
    color: #667eea;
    margin-bottom: 20px;
}

.no-flowers-message h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #333;
}




/* About Section */
.about {
    background-color: var(--light-bg);
}

.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-text {
    flex: 1;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.contact-info p {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
}

.contact-info i {
    margin-right: 10px;
    color: var(--primary-color);
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--background-color);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-card h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    height: 300px;
    overflow: hidden;

}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: var(--light-text);
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* Pricing Section */
.pricing {
    background-color: var(--light-bg);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.pricing-category {
    background-color: var(--background-color);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
}

.pricing-category h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.pricing-category p {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.pricing-category ul {
    list-style: none;
    text-align: left;
}

.pricing-category li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.pricing-note {
    text-align: center;
    margin-top: 30px;
    font-style: italic;
}

/* Testimonials Section */
.testimonials {
    background-color: var(--primary-color);
    color: var(--light-text);
}

.testimonials .section-title {
    color: var(--light-text);
}

.testimonials-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    min-height: 200px;
}

.testimonial {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transition: var(--transition);
    text-align: center;
}

.testimonial.active {
    opacity: 1;
}

.testimonial-text {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    font-weight: 600;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    margin: 0 5px;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background-color: var(--light-text);
}

/* Contact Section */
.contact-content {
    display: flex;
    gap: 50px;
}

.contact-info,
.contact-form {
    flex: 1;
}

.contact-info h3,
.contact-form h3 {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.contact-info p {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.contact-info i {
    margin-right: 10px;
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: var(--light-text);
    transition: var(--transition);
}

.social-links a:hover {
    transform: translateY(-3px);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-family: inherit;
    font-size: 1rem;
}

.form-group textarea {
    resize: vertical;
}

/* Map Section */
#map {
    height: 400px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

/* Footer */
footer {
    background-color: var(--dark-bg);
    color: var(--light-text);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    margin-bottom: 1.5rem;
    color: var(--accent-color);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: var(--light-text);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/*marker*/
.flower-marker {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    padding: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #8a1538;
}

.flower-marker::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid #8a1538;
}

/* Video Showcase Section */
.video-showcase {
    padding: 100px 0;
    background: linear-gradient(135deg, #fef7ff 0%, #f0fff0 100%);
    position: relative;
    overflow: hidden;
}

.video-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 10% 20%, rgba(138, 21, 56, 0.05) 0%, transparent 20%),
        radial-gradient(circle at 90% 30%, rgba(44, 94, 46, 0.05) 0%, transparent 20%);
    z-index: 1;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-element {
    position: absolute;
    opacity: 0.7;
    animation: float 15s infinite ease-in-out;
}

.floating-element:nth-child(1) {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
    font-size: 2rem;
    color: var(--primary-color);
}

.floating-element:nth-child(2) {
    top: 15%;
    right: 8%;
    animation-delay: 2s;
    font-size: 1.5rem;
    color: var(--secondary-color);
}

.floating-element:nth-child(3) {
    bottom: 20%;
    left: 7%;
    animation-delay: 4s;
    font-size: 2.2rem;
    color: var(--accent-color);
}

.floating-element:nth-child(4) {
    bottom: 15%;
    right: 5%;
    animation-delay: 6s;
    font-size: 1.8rem;
    color: var(--gold-color);
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    33% {
        transform: translateY(-20px) rotate(5deg);
    }

    66% {
        transform: translateY(10px) rotate(-5deg);
    }
}

.video-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    position: relative;
    z-index: 2;
}

.video-intro h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.video-intro p {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.8;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 2;
}

.video-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    position: relative;
}

.video-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.video-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 125%;
    /* 4:5 aspect ratio for TikTok style */
    background: #000;
}

.video-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.video-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    transition: var(--transition);
}

.video-card:hover .video-placeholder::before {
    background: rgba(0, 0, 0, 0.1);
}

.play-button {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.8rem;
    transition: var(--transition);
    z-index: 2;
}

.video-card:hover .play-button {
    transform: scale(1.1);
    background: white;
}

.video-info {
    padding: 20px;
}

.video-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-color);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.video-stats {
    display: flex;
    justify-content: space-between;
    color: #666;
    font-size: 0.9rem;
}

.video-stat {
    display: flex;
    align-items: center;
}

.video-stat i {
    margin-right: 5px;
    color: var(--primary-color);
}

.video-platform {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    z-index: 3;
    display: flex;
    align-items: center;
}

.video-platform i {
    margin-right: 5px;
}

.tiktok-badge {
    background: linear-gradient(45deg, #000000, #ff0050);
}

.instagram-badge {
    background: linear-gradient(45deg, #405DE6, #E1306C, #F77737);
}

.youtube-badge {
    background: linear-gradient(45deg, #FF0000, #CC0000);
}

.video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.modal-content {
    position: relative;
    width: 90%;
    max-width: 800px;
    background: #000;
    border-radius: 10px;
    overflow: hidden;
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    z-index: 10;
    background: rgba(0, 0, 0, 0.5);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-video-container {
    width: 100%;
    padding-bottom: 56.25%;
    /* 16:9 aspect ratio */
    position: relative;
}

.modal-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-cta {
    text-align: center;
    margin-top: 50px;
    position: relative;
    z-index: 2;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(45deg, var(--primary-color), #6a102b);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(138, 21, 56, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(138, 21, 56, 0.4);
}

.cta-button i {
    margin-right: 10px;
    font-size: 1.2rem;
}

/* Responsive Design */
@media (max-width: 992px) {

    .nav-contact-info {
        display: none;
    }

    .nav-container {
        padding: 0.8rem 1rem;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .about-content {
        flex-direction: column;
    }

    .contact-content {
        flex-direction: column;
    }

    .video-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }

    .video-intro h2 {
        font-size: 2.3rem;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        gap: 0;
        flex-direction: column;
        background-color: var(--background-color);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
        padding: 20px 0;
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        margin: 16px 0;
    }

    .nav-link {
        padding: 10px 0;
        font-size: 1.1rem;
    }

    .mobile-contact {
        display: block;
        padding: 15px 20px;
        border-top: 1px solid #eee;
        margin-top: 10px;
    }

    .mobile-contact p {
        margin-bottom: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .tagline {
        font-size: 50px;
        font-weight: bold;
    }

    .mobile-contact i {
        margin-right: 10px;
        color: var(--primary-color);
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .changing-text {
        font-size: 1.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }


    .section-title {
        font-size: 2rem;
    }

    .video-showcase {
        padding: 70px 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .video-intro h2 {
        font-size: 2rem;
    }

    .video-intro p {
        font-size: 1.1rem;
    }

    .video-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .floating-element {
        display: none;
    }

    .product-card {
        max-width: 100%;
        margin: 12px 0;
    }

    .product-card img {
        height: 200px;
    }

    .product-details {
        padding: 16px;
    }

    .product-details h2 {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .nav-logo {
        font-size: 1.5rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .changing-text {
        font-size: 1.2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 24px;
    }

    .video-showcase {
        padding: 50px 0;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .video-intro h2 {
        font-size: 1.7rem;
    }

    .video-intro p {
        font-size: 1rem;
    }

    .play-button {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}