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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fefefe;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    color: #2c5530;
}

h3 {
    font-size: 1.5rem;
    color: #4a6741;
}

.hero h3 {
    font-size: 2.2rem;
    color: #2c5530;
    line-height: 1.1;
    margin-bottom: 1rem;
    white-space: nowrap;
}

h2 {
    font-size: 2rem;
    color: #2c5530;
}

h3 {
    font-size: 1.5rem;
    color: #4a6741;
}

p {
    margin-bottom: 1rem;
    color: #666;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, #4a6741, #6b8e4a);
    color: white;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #3d5536, #5a7a3f);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(74, 103, 65, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #4a6741;
    border: 2px solid #4a6741;
}

.btn-secondary:hover {
    background: #4a6741;
    color: white;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: #4a6741;
    border: 2px solid #4a6741;
}

.btn-outline:hover {
    background: #4a6741;
    color: white;
}

/* Navigation */
.navbar {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo h2 {
    color: #4a6741;
    margin: 0;
    font-size: 1.8rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #4a6741;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #4a6741;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #4a6741;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Header */
.hero-header {
    background: linear-gradient(135deg, #4a6741, #6b8e4a);
    color: white;
    padding: 100px 0 40px;
    text-align: center;
}

.hero-header h3 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1rem;
    font-weight: 600;
}

.hero-header .hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
    font-weight: 500;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f8f9f5, #e8f5e8);
    padding: 60px 0 80px;
    display: flex;
    align-items: center;
    min-height: 60vh;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    justify-content: center;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #2c5530;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #6b8e4a;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.hero-description {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 0;
    line-height: 1.8;
    text-align: justify;
    max-width: 100%;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin: 0;
    justify-content: flex-start;
    align-items: center;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(74, 103, 65, 0.2);
}

.hero-main-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(74, 103, 65, 0.8), rgba(107, 142, 74, 0.8));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    transition: opacity 0.3s ease;
}

.image-overlay:hover {
    opacity: 0.9;
}

.image-overlay i {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.image-overlay p {
    font-size: 1.2rem;
    font-weight: 500;
    color: white;
    margin: 0;
}

/* Fallback for when image doesn't load */
.hero-image-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #4a6741, #6b8e4a);
    z-index: -1;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #4a6741, #6b8e4a);
    color: white;
    padding: 120px 0 60px;
    text-align: center;
}

.page-header h1 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.page-header p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}

/* Services Overview */
.services-overview {
    padding: 80px 0;
    background: white;
}

.services-overview h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

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

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

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4a6741, #6b8e4a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

.service-card h3 {
    margin-bottom: 1rem;
    color: #2c5530;
}

/* About Preview */
.about-preview {
    padding: 80px 0;
    background: #f8f9f5;
}

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

.about-features {
    list-style: none;
    margin: 2rem 0;
}

.about-features li {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
    color: #666;
}

.about-features i {
    color: #4a6741;
    margin-right: 0.8rem;
    font-size: 1.1rem;
}

.about-image {
    display: flex;
    justify-content: center;
}

.about-image-container {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.about-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-image .image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(74, 103, 65, 0.8), rgba(107, 142, 74, 0.8));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.about-image-container:hover .image-overlay {
    opacity: 1;
}

.about-image .image-overlay i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.about-image .image-overlay p {
    font-size: 1.1rem;
    font-weight: 500;
    color: white;
    margin: 0;
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background: white;
}

.testimonials h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.testimonial-card {
    background: #f8f9f5;
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid #4a6741;
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: #555;
    line-height: 1.7;
}

.testimonial-author h4 {
    color: #2c5530;
    margin-bottom: 0.3rem;
}

.testimonial-author span {
    color: #6b8e4a;
    font-size: 0.9rem;
}

/* Contact CTA */
.contact-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #4a6741, #6b8e4a);
    color: white;
    text-align: center;
}

.cta-content h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn-primary {
    background: white;
    color: #4a6741;
}

.cta-buttons .btn-primary:hover {
    background: #f8f9f5;
    transform: translateY(-2px);
}

.cta-buttons .btn-secondary {
    border-color: white;
    color: white;
}

.cta-buttons .btn-secondary:hover {
    background: white;
    color: #4a6741;
}

/* Footer */
.footer {
    background: #f8f9f5;
    color: #333;
    padding: 40px 0 15px;
}

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

.footer-section h3,
.footer-section h4 {
    color: #4a6741;
    margin-bottom: 1rem;
}

.footer-section p {
    color: #666;
    margin-bottom: 1rem;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

.social-links a {
    width: 40px;
    height: 40px;
    background: #4a6741;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: background 0.3s ease;
}

.social-links a:hover {
    background: #6b8e4a;
}

.contact-info p {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
    color: #333;
}

.contact-info i {
    margin-right: 0.8rem;
    color: #6b8e4a;
    width: 16px;
    text-align: center;
}

.contact-info a {
    color: #4a6741;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #6b8e4a;
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid #ddd;
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: #999;
    margin: 0;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.whatsapp-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-link:hover {
    background: #128C7E;
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

.whatsapp-link i {
    font-size: 30px;
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.8);
    }
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
}

/* About Page Styles */
.our-story {
    padding: 80px 0;
    background: white;
}

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

.story-image {
    display: flex;
    justify-content: center;
}

.story-image-container {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.story-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.mission-vision {
    padding: 80px 0;
    background: #f8f9f5;
}

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

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

.mission-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4a6741, #6b8e4a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.mission-icon i {
    font-size: 2rem;
    color: white;
}

.our-team {
    padding: 80px 0;
    background: white;
}

.our-team h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.team-member {
    background: #f8f9f5;
    padding: 2rem;
    border-radius: 15px;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.team-member.featured {
    background: linear-gradient(135deg, #f8f9f5, #e8f5e8);
    border: 2px solid #4a6741;
    box-shadow: 0 5px 20px rgba(74, 103, 65, 0.1);
}

.member-image {
    flex-shrink: 0;
}

.member-placeholder {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4a6741, #6b8e4a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

.member-info h3 {
    color: #2c5530;
    margin-bottom: 0.5rem;
}

.member-title {
    color: #6b8e4a;
    font-weight: 500;
    margin-bottom: 0.3rem;
}

.member-qualification {
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.why-choose-us {
    padding: 80px 0;
    background: #f8f9f5;
}

.why-choose-us h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.feature-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4a6741, #6b8e4a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.feature-icon i {
    font-size: 1.5rem;
    color: white;
}

.certifications {
    padding: 80px 0;
    background: white;
}

.certifications h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.cert-item {
    background: #f8f9f5;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 2px solid #e8f5e8;
}

.cert-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4a6741, #6b8e4a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.cert-icon i {
    font-size: 1.5rem;
    color: white;
}

/* Services Page Styles */
.services-detailed {
    padding: 80px 0;
    background: white;
}

.service-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
    padding: 3rem 0;
    border-bottom: 1px solid #e8f5e8;
}

.service-detail:last-child {
    border-bottom: none;
}

.service-detail.reverse {
    direction: rtl;
}

.service-detail.reverse > * {
    direction: ltr;
}

.service-content .service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4a6741, #6b8e4a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-content .service-icon i {
    font-size: 1.5rem;
    color: white;
}

.service-description {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.service-features h3 {
    color: #2c5530;
    margin-bottom: 1rem;
}

.service-features ul {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
    color: #666;
}

.service-features li::before {
    content: '✓';
    color: #4a6741;
    font-weight: bold;
    margin-right: 0.8rem;
}

.service-pricing {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.price {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c5530;
}

.duration {
    color: #888;
    font-size: 0.9rem;
}

.service-image {
    display: flex;
    justify-content: center;
}

.service-placeholder {
    background: linear-gradient(135deg, #4a6741, #6b8e4a);
    color: white;
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(74, 103, 65, 0.2);
}

.service-placeholder i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-placeholder p {
    font-size: 1.1rem;
    font-weight: 500;
    color: white;
}

.additional-services {
    padding: 80px 0;
    background: #f8f9f5;
}

.additional-services h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

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

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

.additional-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4a6741, #6b8e4a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.additional-icon i {
    font-size: 1.5rem;
    color: white;
}

.additional-card h3 {
    color: #2c5530;
    margin-bottom: 1rem;
}

.additional-card p {
    color: #666;
    margin-bottom: 1.5rem;
}

.additional-card .price {
    font-size: 1.2rem;
    font-weight: 600;
    color: #4a6741;
}

.booking-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #4a6741, #6b8e4a);
    color: white;
    text-align: center;
}

/* Products Page Styles */
.product-categories {
    padding: 40px 0;
    background: #f8f9f5;
}

.category-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 10px 20px;
    background: white;
    border: 2px solid #e8f5e8;
    border-radius: 25px;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.tab-btn.active,
.tab-btn:hover {
    background: #4a6741;
    color: white;
    border-color: #4a6741;
}

.products-grid {
    padding: 80px 0;
    background: white;
}

.products-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.product-image {
    position: relative;
    height: 200px;
    background: #f8f9f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-placeholder {
    text-align: center;
    color: #4a6741;
}

.product-placeholder i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.product-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #4a6741;
    color: white;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.product-info {
    padding: 1.5rem;
}

.product-info h3 {
    color: #2c5530;
    margin-bottom: 0.8rem;
}

.product-description {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.product-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.benefit-tag {
    background: #e8f5e8;
    color: #4a6741;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
}

.product-price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.product-price .price {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c5530;
}

.product-price .unit {
    color: #888;
    font-size: 0.9rem;
}

.product-btn {
    width: 100%;
}

.product-quality {
    padding: 80px 0;
    background: #f8f9f5;
}

.product-quality h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.quality-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.quality-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.quality-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4a6741, #6b8e4a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.quality-icon i {
    font-size: 1.5rem;
    color: white;
}

.ordering-info {
    padding: 80px 0;
    background: white;
}

.ordering-info h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.step {
    text-align: center;
    padding: 2rem;
    background: #f8f9f5;
    border-radius: 15px;
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #4a6741, #6b8e4a);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0 auto 1.5rem;
}

.step h3 {
    color: #2c5530;
    margin-bottom: 1rem;
}

.step p {
    color: #666;
    line-height: 1.6;
}

.ordering-cta {
    text-align: center;
}

.ordering-cta .btn {
    margin: 0 0.5rem;
}

/* Contact Page Styles */
.contact-info {
    padding: 10px;
    background: #f8f9f5;
}

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

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

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

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4a6741, #6b8e4a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.contact-icon i {
    font-size: 1.5rem;
    color: white;
}

.contact-card h3 {
    color: #2c5530;
    margin-bottom: 1rem;
}

.contact-card p {
    color: #666;
    margin-bottom: 0.5rem;
}

.contact-card small {
    color: #888;
    font-size: 0.9rem;
}

.contact-form-section {
    padding: 80px 0;
    background: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-form-container h2 {
    margin-bottom: 2rem;
    color: #2c5530;
}

.contact-form {
    background: #f8f9f5;
    padding: 2rem;
    border-radius: 15px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #2c5530;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e8f5e8;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4a6741;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.2rem;
}

.checkbox-group label {
    margin-bottom: 0;
    font-size: 0.9rem;
    line-height: 1.4;
}

.map-container h2 {
    margin-bottom: 2rem;
    color: #2c5530;
}

.map-placeholder {
    background: linear-gradient(135deg, #4a6741, #6b8e4a);
    color: white;
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
    margin-bottom: 2rem;
}

.map-placeholder i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.map-placeholder p {
    font-size: 1.2rem;
    font-weight: 500;
    color: white;
    margin-bottom: 0.5rem;
}

.map-placeholder small {
    color: rgba(255, 255, 255, 0.8);
}

.map-info h3 {
    color: #2c5530;
    margin-bottom: 1rem;
}

.map-info ul {
    list-style: none;
}

.map-info li {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
    color: #666;
}

.map-info i {
    color: #4a6741;
    margin-right: 0.8rem;
    width: 20px;
}

/* Map layout styles */

.map-iframe {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.map-iframe iframe {
    border-radius: 10px;
}

.map-info {
    text-align: left;
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.map-info h3 {
    color: #4a6741;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.map-info ul {
    list-style: none;
    padding: 0;
}

.map-info li {
    padding: 0.8rem 0;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.map-info li:last-child {
    border-bottom: none;
}

.map-info i {
    color: #4a6741;
    width: 20px;
    text-align: center;
}

.business-hours {
    padding: 80px 0;
    background: #f8f9f5;
}

.business-hours h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.hours-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.hours-card h3 {
    color: #2c5530;
    margin-bottom: 1.5rem;
    text-align: center;
}

.hours-list {
    space-y: 1rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
    border-bottom: 1px solid #e8f5e8;
}

.hours-item:last-child {
    border-bottom: none;
}

.day {
    font-weight: 500;
    color: #2c5530;
}

.time {
    color: #4a6741;
    font-weight: 500;
}

.emergency-info {
    text-align: center;
}

.emergency-info p {
    color: #2c5530;
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.emergency-info small {
    color: #888;
}

.faq-section {
    padding: 80px 0;
    background: white;
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.faq-item {
    background: #f8f9f5;
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #e8f5e8;
}

.faq-question h3 {
    color: #2c5530;
    margin: 0;
    font-size: 1.1rem;
}

.faq-question i {
    color: #4a6741;
    transition: transform 0.3s ease;
}

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

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 200px;
}

.faq-answer p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mb-0 {
    margin-bottom: 0;
}

.mt-2 {
    margin-top: 2rem;
}

.hidden {
    display: none;
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.6s ease;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}
