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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header and Navigation */
header {
    background: linear-gradient(135deg, #1a7f37 0%, #0d5c29 100%);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 1.2rem 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
    font-size: 1.6rem;
    font-weight: bold;
}

.logo i {
    font-size: 2rem;
    color: #ffd700;
}

.logo-image {
    height: 50px;
    width: auto;
    object-fit: contain;
    border-radius: 8px;
}

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

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s;
    position: relative;
}

.nav-links a:hover {
    color: #ffd700;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ffd700;
    transition: width 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    position: relative;
    background: linear-gradient(rgba(26, 127, 55, 0.5), rgba(13, 92, 41, 0.6)), url('alphanso.jpeg') center/cover;
    min-height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 30px 20px;
}

.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 0.8rem;
    font-weight: bold;
    color: white;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #ffd700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    animation: fadeInUp 1.2s ease;
}

.hero-tagline {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
    animation: fadeInUp 1.4s ease;
}

.hero-location {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffd700;
    margin-bottom: 1.2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    animation: fadeInUp 1.6s ease;
    background: rgba(255, 215, 0, 0.1);
    padding: 8px 20px;
    border-radius: 25px;
    display: inline-block;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #1a7f37;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1rem;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.4);
    animation: fadeInUp 1.6s ease;
}

.cta-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.6);
}

.cta-button i {
    margin-right: 10px;
}

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

/* Stats Banner */
.stats-banner {
    background: linear-gradient(135deg, #1a7f37 0%, #0d5c29 100%);
    padding: 50px 20px;
    color: white;
}

.stats-banner .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    text-align: center;
}

.stat-item {
    animation: fadeIn 1s ease;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: #ffd700;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Story Section */
.story-section {
    padding: 100px 20px;
    background: white;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-text h2 {
    font-size: 2.8rem;
    color: #1a7f37;
    margin-bottom: 10px;
}

.underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #ffd700, #1a7f37);
    margin-bottom: 2rem;
}

.lead {
    font-size: 1.3rem;
    color: #1a7f37;
    font-weight: 600;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.story-text p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.story-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.story-feature {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #1a7f37;
}

.story-feature i {
    font-size: 1.8rem;
    color: #1a7f37;
}

.story-feature span {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
}

.story-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.story-image:hover img {
    transform: scale(1.05);
}

.story-image-placeholder {
    background: linear-gradient(135deg, #1a7f37 0%, #0d5c29 100%);
    border-radius: 20px;
    padding: 4rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 400px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.story-image-placeholder i {
    font-size: 6rem;
    color: #ffd700;
    margin-bottom: 1.5rem;
}

.story-image-placeholder p {
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}

.story-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.highlight-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.highlight-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.highlight-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1a7f37 0%, #0d5c29 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.highlight-icon i {
    font-size: 2.5rem;
    color: #ffd700;
}

.highlight-card h4 {
    font-size: 1.3rem;
    color: #1a7f37;
    margin-bottom: 0.8rem;
}

.highlight-card p {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

/* Gallery Section */
.gallery-section {
    padding: 60px 20px;
    background: white;
}

.gallery-section h2 {
    text-align: center;
    font-size: 2.8rem;
    color: #1a7f37;
    margin-bottom: 10px;
}

.gallery-section .underline {
    margin: 0 auto 1rem;
}

.gallery-slider {
    position: relative;
    max-width: 100%;
    margin: 3rem auto 0;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

.gallery-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.gallery-slide {
    min-width: 100%;
    position: relative;
}

.gallery-slide img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
    padding: 30px 20px 20px;
    font-size: 1.3rem;
    font-weight: 600;
}

.gallery-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    color: #1a7f37;
    transition: all 0.3s;
    z-index: 10;
}

.gallery-btn:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.prev-btn {
    left: 20px;
}

.next-btn {
    right: 20px;
}

.gallery-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.5);
}

.gallery-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s;
}

.gallery-dot.active {
    background: #ffd700;
    transform: scale(1.3);
}

/* Varieties Section */
.varieties-section {
    padding: 60px 20px;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.varieties-section h2 {
    text-align: center;
    font-size: 2.8rem;
    color: #1a7f37;
    margin-bottom: 10px;
}

.varieties-section .underline {
    margin: 0 auto 1rem;
}

.section-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 1rem;
}

.delivery-notice {
    text-align: center;
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a7f37;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    padding: 12px 30px;
    border-radius: 25px;
    display: inline-block;
    margin: 0 auto 3rem;
    box-shadow: 0 3px 10px rgba(255, 215, 0, 0.3);
}

.order-section .delivery-notice {
    display: block;
    margin-bottom: 2rem;
}

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

.variety-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}

.variety-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.variety-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #1a7f37;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: bold;
    font-size: 0.9rem;
    z-index: 10;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.variety-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.variety-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.variety-card:hover .variety-image img {
    transform: scale(1.15);
}

.variety-icon-placeholder {
    width: 100%;
    height: 280px;
    background: linear-gradient(135deg, #1a7f37 0%, #0d5c29 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.variety-icon-placeholder i {
    font-size: 6rem;
    color: #ffd700;
    transition: transform 0.3s;
}

.variety-card:hover .variety-icon-placeholder i {
    transform: scale(1.2) rotate(10deg);
}

.variety-content {
    padding: 1.5rem;
}

.variety-content h3 {
    font-size: 1.5rem;
    color: #1a7f37;
    margin-bottom: 0.8rem;
}

.variety-desc {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    min-height: 60px;
}

.variety-details {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.detail-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 0.8rem;
    color: #555;
}

.detail-row:last-child {
    margin-bottom: 0;
}

.detail-row i {
    color: #1a7f37;
    font-size: 1.1rem;
}

.variety-price {
    font-size: 1.5rem;
    font-weight: bold;
    color: #1a7f37;
    margin-bottom: 1rem;
    text-align: center;
}

.order-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.order-btn {
    display: block;
    color: white;
    text-align: center;
    padding: 12px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    transition: background 0.3s, transform 0.3s;
}

.whatsapp-btn {
    background: #25d366;
}

.whatsapp-btn:hover {
    background: #20ba5a;
    transform: scale(1.03);
}

.instagram-btn {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.instagram-btn:hover {
    background: linear-gradient(45deg, #e08323 0%, #d6582c 25%, #cc1733 50%, #bc1356 75%, #ac0878 100%);
    transform: scale(1.03);
}

.order-btn i {
    margin-right: 10px;
    font-size: 1.3rem;
}

/* Why Us Section */
.why-us-section {
    padding: 60px 20px;
    background: white;
}

.why-us-section h2 {
    text-align: center;
    font-size: 2.8rem;
    color: #1a7f37;
    margin-bottom: 10px;
}

.why-us-section .underline {
    margin: 0 auto 1.5rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.benefit-card {
    text-align: center;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 12px;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1a7f37 0%, #0d5c29 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.benefit-icon i {
    font-size: 2rem;
    color: #ffd700;
}

.benefit-card h3 {
    font-size: 1.2rem;
    color: #1a7f37;
    margin-bottom: 0.6rem;
}

.benefit-card p {
    color: #666;
    line-height: 1.5;
    font-size: 0.95rem;
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 20px;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.testimonials-section h2 {
    text-align: center;
    font-size: 2.8rem;
    color: #1a7f37;
    margin-bottom: 10px;
}

.testimonials-section .underline {
    margin: 0 auto 3rem;
}

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

.testimonial-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: transform 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.quote-icon {
    font-size: 4rem;
    color: #1a7f37;
    opacity: 0.2;
    position: absolute;
    top: 10px;
    left: 20px;
}

.testimonial-text {
    color: #555;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.customer-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 1rem;
}

.customer-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #1a7f37 0%, #0d5c29 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.customer-info h4 {
    color: #1a7f37;
    margin-bottom: 0.2rem;
}

.customer-info p {
    color: #999;
    font-size: 0.9rem;
}

.rating {
    color: #ffd700;
    font-size: 1.3rem;
}

/* Order Section */
.order-section {
    padding: 60px 20px;
    background: white;
}

.order-section h2 {
    text-align: center;
    font-size: 2.8rem;
    color: #1a7f37;
    margin-bottom: 10px;
}

.order-section .underline {
    margin: 0 auto 3rem;
}

.order-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.order-info h3 {
    font-size: 2rem;
    color: #1a7f37;
    margin-bottom: 2rem;
}

.order-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.order-step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #1a7f37 0%, #0d5c29 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
}

.step-content h4 {
    color: #1a7f37;
    margin-bottom: 0.5rem;
}

.step-content p {
    color: #666;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: #f8f9fa;
    border-radius: 10px;
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s;
}

.contact-method:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-method i {
    font-size: 2rem;
}

.contact-method.whatsapp i {
    color: #25d366;
}

.contact-method.phone i {
    color: #1a7f37;
}

.contact-method.email i {
    color: #0066cc;
}

.contact-method.instagram i {
    color: #e1306c;
}

.contact-method strong {
    display: block;
    color: #333;
    font-size: 1.1rem;
}

.contact-method span {
    display: block;
    color: #666;
    font-size: 0.95rem;
}

.inquiry-form {
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 15px;
}

.inquiry-form h3 {
    font-size: 2rem;
    color: #1a7f37;
    margin-bottom: 2rem;
}

.inquiry-form form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
    padding: 15px;
    border: 2px solid #ddd;
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.inquiry-form input:focus,
.inquiry-form select:focus,
.inquiry-form textarea:focus {
    outline: none;
    border-color: #1a7f37;
}

.submit-btn {
    background: linear-gradient(135deg, #1a7f37 0%, #0d5c29 100%);
    color: white;
    border: none;
    padding: 18px;
    border-radius: 10px;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(26, 127, 55, 0.4);
}

.submit-btn i {
    margin-right: 10px;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #1a7f37 0%, #0d5c29 100%);
    color: white;
    padding: 60px 20px 20px;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 1rem;
}

.footer-logo-image {
    height: 60px;
    width: auto;
    object-fit: contain;
    border-radius: 8px;
}

.footer-section h3 {
    font-size: 1.5rem;
    margin-bottom: 0;
    color: #ffd700;
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #ffd700;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #ffd700;
}

.footer-section ul li i {
    margin-right: 10px;
    color: #ffd700;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    transition: background 0.3s, transform 0.3s;
}

.social-links a:hover {
    background: #ffd700;
    color: #1a7f37;
    transform: translateY(-5px);
}

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

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25d366;
    color: white;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.5);
    z-index: 1000;
    transition: transform 0.3s, box-shadow 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.15);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.7);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 110px;
    right: 30px;
    background: linear-gradient(135deg, #1a7f37 0%, #0d5c29 100%);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 5px 20px rgba(26, 127, 55, 0.5);
    z-index: 1000;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(26, 127, 55, 0.7);
}

/* Responsive Design */

/* Tablet and below (968px) */
@media (max-width: 968px) {
    .story-content,
    .order-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .story-image {
        order: -1;
    }

    .varieties-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
    }

    .benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .gallery-slide img {
        height: 350px;
    }
}

/* Mobile landscape and below (768px) */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    /* Navigation */
    .navbar {
        padding: 0.8rem 0;
    }

    .navbar .container {
        flex-wrap: wrap;
        gap: 0.8rem;
    }

    .logo {
        font-size: 1.3rem;
        flex: 0 0 auto;
    }

    .logo-image {
        height: 35px;
    }

    .nav-links {
        flex: 1 1 100%;
        justify-content: center;
        gap: 0.8rem;
        font-size: 0.8rem;
        padding-top: 0.5rem;
    }

    /* Hero Section */
    .hero {
        min-height: 200px;
        padding: 25px 15px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-tagline {
        font-size: 0.95rem;
    }

    .hero-location {
        font-size: 1rem;
        padding: 6px 15px;
    }

    .cta-button {
        padding: 10px 25px;
        font-size: 0.95rem;
    }

    /* Section Headings */
    .gallery-section h2,
    .varieties-section h2,
    .why-us-section h2,
    .order-section h2 {
        font-size: 2rem;
    }

    .section-intro {
        font-size: 1rem;
    }

    /* Gallery */
    .gallery-slider {
        border-radius: 15px;
    }

    .gallery-slide img {
        height: 300px;
    }

    .gallery-caption {
        font-size: 1.1rem;
        padding: 20px 15px 15px;
    }

    .gallery-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .prev-btn {
        left: 10px;
    }

    .next-btn {
        right: 10px;
    }

    /* Varieties */
    .varieties-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .variety-card {
        max-width: 500px;
        margin: 0 auto;
    }

    .delivery-notice {
        font-size: 1rem;
        padding: 10px 20px;
    }

    /* Benefits */
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    /* Order Section */
    .order-content {
        gap: 2rem;
    }

    .order-info h3,
    .inquiry-form h3 {
        font-size: 1.6rem;
    }

    .order-steps {
        gap: 1.2rem;
    }

    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .inquiry-form {
        padding: 2rem;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-logo-image {
        height: 50px;
    }
}

/* Mobile portrait (480px) */
@media (max-width: 480px) {
    /* Navigation */
    .navbar {
        padding: 0.5rem 0;
    }

    .navbar .container {
        padding: 0 10px;
    }

    .logo {
        font-size: 0.95rem;
        gap: 8px;
    }

    .logo-image {
        height: 28px;
    }

    .nav-links {
        gap: 0.4rem;
        font-size: 0.7rem;
        padding-top: 0.3rem;
    }

    /* Hero */
    .hero {
        min-height: 180px;
        padding: 20px 10px;
    }

    .hero-content h1 {
        font-size: 1.6rem;
        margin-bottom: 0.6rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 0.4rem;
    }

    .hero-tagline {
        font-size: 0.85rem;
        margin-bottom: 0.4rem;
    }

    .hero-location {
        font-size: 0.9rem;
        padding: 5px 12px;
        margin-bottom: 1rem;
    }

    .cta-button {
        padding: 8px 20px;
        font-size: 0.9rem;
    }

    /* Sections */
    .gallery-section,
    .varieties-section,
    .why-us-section,
    .order-section {
        padding: 40px 15px;
    }

    .gallery-section h2,
    .varieties-section h2,
    .why-us-section h2,
    .order-section h2 {
        font-size: 1.6rem;
    }

    .section-intro {
        font-size: 0.95rem;
    }

    /* Gallery */
    .gallery-slider {
        border-radius: 12px;
        margin: 2rem auto 0;
    }

    .gallery-slide img {
        height: 250px;
    }

    .gallery-caption {
        font-size: 1rem;
        padding: 15px 10px 10px;
    }

    .gallery-btn {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }

    .prev-btn {
        left: 5px;
    }

    .next-btn {
        right: 5px;
    }

    .gallery-dots {
        padding: 15px;
        gap: 8px;
    }

    .gallery-dot {
        width: 10px;
        height: 10px;
    }

    /* Varieties */
    .varieties-grid {
        gap: 1.5rem;
    }

    .variety-badge {
        font-size: 0.8rem;
        padding: 6px 15px;
        top: 15px;
        right: 15px;
    }

    .variety-image {
        height: 180px;
    }

    .variety-content {
        padding: 1.2rem;
    }

    .variety-content h3 {
        font-size: 1.3rem;
    }

    .variety-desc {
        font-size: 0.95rem;
        min-height: auto;
    }

    .variety-price {
        font-size: 1.3rem;
    }

    .order-btn {
        padding: 10px;
        font-size: 0.95rem;
    }

    .delivery-notice {
        font-size: 0.95rem;
        padding: 8px 15px;
    }

    /* Benefits */
    .benefit-card {
        padding: 1.2rem;
    }

    .benefit-icon {
        width: 50px;
        height: 50px;
    }

    .benefit-icon i {
        font-size: 1.6rem;
    }

    .benefit-card h3 {
        font-size: 1.1rem;
    }

    .benefit-card p {
        font-size: 0.9rem;
    }

    /* Order Section */
    .order-info h3,
    .inquiry-form h3 {
        font-size: 1.4rem;
        margin-bottom: 1.5rem;
    }

    .step-number {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .step-content h4 {
        font-size: 1rem;
    }

    .step-content p {
        font-size: 0.9rem;
    }

    .contact-method {
        padding: 12px 15px;
    }

    .contact-method i {
        font-size: 1.6rem;
    }

    .contact-method strong {
        font-size: 1rem;
    }

    .contact-method span {
        font-size: 0.85rem;
    }

    .inquiry-form {
        padding: 1.5rem;
    }

    .inquiry-form input,
    .inquiry-form select,
    .inquiry-form textarea {
        padding: 12px;
        font-size: 0.95rem;
    }

    .submit-btn {
        padding: 14px;
        font-size: 1rem;
    }

    /* Footer */
    .footer-section h3 {
        font-size: 1.3rem;
    }

    .footer-section h4 {
        font-size: 1.1rem;
    }

    .footer-section p,
    .footer-section ul li {
        font-size: 0.9rem;
    }

    /* Float Buttons */
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 1.8rem;
        bottom: 15px;
        right: 15px;
    }

    .back-to-top {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
        bottom: 75px;
        right: 15px;
    }
}

/* Extra small devices (375px - iPhone SE) */
@media (max-width: 375px) {
    .navbar .container {
        padding: 0 8px;
    }

    .logo {
        font-size: 0.85rem;
        gap: 6px;
    }

    .logo-image {
        height: 26px;
    }

    .nav-links {
        gap: 0.3rem;
        font-size: 0.65rem;
    }
}

/* Extra small devices (360px - Samsung Galaxy S8+) */
@media (max-width: 360px) {
    .navbar {
        padding: 0.5rem 0;
    }

    .navbar .container {
        padding: 0 10px;
        justify-content: space-between;
        gap: 0.6rem;
    }

    .logo {
        font-size: 0.75rem;
        gap: 6px;
        flex: 0 0 auto;
    }

    .logo-image {
        height: 24px;
    }

    .nav-links {
        flex: 1 1 100%;
        justify-content: space-between;
        gap: 0.3rem;
        font-size: 0.7rem;
        padding-top: 0.4rem;
    }

    .nav-links a {
        padding: 4px 6px;
    }

    .hero-content h1 {
        font-size: 1.4rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .gallery-slide img {
        height: 220px;
    }

    .gallery-section h2,
    .varieties-section h2,
    .why-us-section h2,
    .order-section h2 {
        font-size: 1.4rem;
    }
}
