/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

:root {
    --primary: #1a5a38;
    --primary-dark: #0e3d24;
    --primary-light: #2d7a4e;
    --secondary: #c97c01;
    --secondary-dark: #985e01;
    --accent: #e74c3c;
    --light: #f4f9f4;
    --dark: #2d3748;
    --gray: #718096;
    --white: #ffffff;
}

/* Fix for anchor links being hidden under sticky header */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px; /* Adjust based on your header height */
}

/* Alternative: Target specific sections */
section {
    scroll-margin-top: 100px; /* Adds offset when scrolling to section */
}

/* For the specific products page sections */
.section {
    scroll-margin-top: 100px;
}

body {
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header Styles - Merged (taking enhanced version) */
header {
    background: linear-gradient(135deg, var(--primary) 10%, var(--primary-dark) 80%);
    color: white;
    padding: 0.8rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}

header.scrolled {
    padding: 0.5rem 0;
    background: var(--primary-dark);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

/* Logo Styles with Image */
.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
    color: white;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.02);
}

.logo-image {
    width: 50px;
    height: 50px;
    object-fit: contain;
    border-radius: 50%;
    background: white;
    padding: 5px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.logo:hover .logo-image {
    transform: rotate(5deg);
    box-shadow: 0 6px 15px rgba(0,0,0,0.25);
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-text .main {
    font-size: 1.2rem;
    letter-spacing: 0.5px;
    font-weight: bold;
}

.logo-text .main span {
    color: var(--secondary);
    font-weight: bold;
}

.logo-text .tagline {
    font-size: 0.7rem;
    opacity: 0.85;
    letter-spacing: 0.3px;
}

/* Navigation Styles */
nav {
    flex: 1;
}

nav ul {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    list-style: none;
    gap: 0.5rem;
}

nav ul li {
    position: relative;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

nav ul li a:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--secondary);
    transition: width 0.3s ease;
}

nav ul li a:hover:before {
    width: 70%;
}

nav ul li a:hover {
    color: var(--secondary);
    background: rgba(255,255,255,0.1);
}

/* Active page indicator */
nav ul li a.active {
    background: rgba(245, 166, 35, 0.2);
    color: var(--secondary);
}

nav ul li a.active:before {
    width: 70%;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    background: rgba(255,255,255,0.1);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.mobile-menu-btn:hover {
    background: rgba(255,255,255,0.2);
    transform: rotate(90deg);
}

/* Overlay when mobile menu is open */
.menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 998;
}

.menu-overlay.active {
    display: block;
}

/* Main Content */
main {
    flex: 1;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    text-align: center;
    padding: 5rem 1rem 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 90vh;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="10" cy="10" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="30" cy="40" r="3" fill="rgba(255,255,255,0.08)"/><circle cx="70" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="85" cy="60" r="3" fill="rgba(255,255,255,0.08)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    max-width: 800px;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

/* Section Styles */
.section {
    padding: 3rem 0;
    position: relative;
    animation: fadeInUp 0.8s ease-out;
}

.section-alt {
    background-color: var(--light);
}

.section-heading {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary);
    position: relative;
    padding-bottom: 0.8rem;
}

.section-heading:after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background-color: var(--secondary);
    bottom: 0;
    left: 0;
}

.text-center .section-heading:after,
.section-heading.text-center:after {
    left: 50%;
    transform: translateX(-50%);
}

.text-center {
    text-align: center;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.product-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.product-image {
    height: 180px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image i {
    font-size: 3.5rem;
    color: white;
}

.product-info {
    padding: 1.2rem;
}

.product-info h3 {
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.product-info p {
    color: var(--gray);
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
}

.product-info .price {
    color: var(--secondary);
    font-weight: bold;
    font-size: 1.1rem;
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s;
}

.gallery-item:hover {
    transform: scale(1.02);
}

.gallery-image {
    height: 220px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
}

.gallery-image i {
    font-size: 2.5rem;
    color: white;
}

.gallery-overlay {
    position: absolute;
    bottom: -100%;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(44,122,75,0.9), transparent);
    color: white;
    padding: 0.8rem;
    transition: bottom 0.3s;
}

.gallery-item:hover .gallery-overlay {
    bottom: 0;
}

/* Services List */
.services-list, .reasons-list, .clientele-list {
    list-style: none;
}

.services-list li, .reasons-list li, .clientele-list li {
    margin-bottom: 0.8rem;
    padding-left: 1.8rem;
    position: relative;
    font-size: 0.95rem;
}

.services-list li:before, 
.reasons-list li:before, 
.clientele-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: bold;
    font-size: 1rem;
}

/* Button Styles */
.cta-button, .btn {
    display: inline-block;
    background-color: var(--secondary);
    color: var(--primary);
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    max-width: fit-content;
    font-weight: bold;
    font-size: 0.9rem;
    margin-top: 1rem;
    transition: all 0.3s ease;
    border: 2px solid var(--secondary);
    cursor: pointer;
    text-align: center;
}

.cta-button:hover, .btn:hover {
    background-color: transparent;
    color: var(--secondary);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(245, 166, 35, 0.3);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--secondary);
    color: var(--secondary);
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.4s ease;
}

.btn-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(245, 166, 35, 0.2), transparent);
    transition: left 0.5s ease;
    z-index: -1;
}

.btn-outline:hover {
    background-color: var(--secondary);
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(245, 166, 35, 0.4);
}

.btn-outline:hover::before {
    left: 100%;
}

.btn-outline-light {
    background-color: transparent;
    border: 2px solid white;
    color: white;
}

.btn-outline-light:hover {
    background-color: white;
    color: var(--primary);
}

.btn-outline-dark {
    background-color: transparent;
    border: 2px solid var(--dark);
    color: var(--dark);
}

.btn-outline-dark:hover {
    background-color: var(--dark);
    color: white;
}

.btn-outline-primary {
    background-color: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline-primary:hover {
    background-color: var(--primary);
    color: white;
}

.btn-sm {
    padding: 0.4rem 1rem;
    font-size: 0.8rem;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-rounded {
    border-radius: 8px;
}

.btn-pill {
    border-radius: 50px;
}

.btn-outline-animated {
    background-color: transparent;
    border: 2px solid var(--secondary);
    color: var(--secondary);
    position: relative;
    transition: all 0.4s ease;
}

.btn-outline-animated:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary);
    transition: width 0.3s ease;
}

.btn-outline-animated:hover:after {
    width: 100%;
}

.btn-outline-animated:hover {
    letter-spacing: 1px;
}

.btn-outline-pulse {
    background-color: transparent;
    border: 2px solid var(--secondary);
    color: var(--secondary);
    animation: pulse 2s infinite;
}

.btn-outline-pulse:hover {
    animation: none;
    background-color: var(--secondary);
    color: var(--primary);
}

.btn-outline-gradient {
    background-color: transparent;
    border: 2px solid transparent;
    background-image: linear-gradient(white, white), 
                      linear-gradient(135deg, var(--secondary), var(--secondary-dark));
    background-origin: border-box;
    background-clip: padding-box, border-box;
    color: var(--secondary);
    position: relative;
}

.btn-outline-gradient:hover {
    background-image: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
    color: white;
}

.btn-outline-icon {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-outline-icon i {
    transition: transform 0.3s ease;
}

.btn-outline-icon:hover i {
    transform: translateX(5px);
}

/* Contact Form */
.contact-form {
    max-width: 500px;
    margin: 0 auto;
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.4rem;
    font-weight: bold;
    color: var(--primary);
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.7rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 0.9rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(44, 122, 75, 0.1);
}

.form-group textarea {
    min-height: 100px;
    resize: vertical;
}

/* Contact Info Cards */
.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.info-card {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

.info-card:hover {
    transform: translateY(-5px);
}

.info-card i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 0.8rem;
}

.info-card h3 {
    color: var(--primary);
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

.info-card p {
    font-size: 0.85rem;
}

/* Map Container */
.map-container {
    height: 250px;
    background: #e0e0e0;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1rem;
    background: linear-gradient(135deg, #f5f5f5, #e0e0e0);
}

/* Values Section */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.value-card {
    background: white;
    padding: 1.2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

.value-card i {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 0.8rem;
}

.value-card h4 {
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.value-card p {
    font-size: 0.85rem;
}

/* Footer Styles */
footer {
    background-color: var(--dark);
    color: white;
    padding: 2.5rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.footer-section h3 {
    color: var(--secondary);
    margin-bottom: 1rem;
    font-size: 1.1rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-section h3:after {
    content: '';
    position: absolute;
    width: 35px;
    height: 2px;
    background-color: var(--secondary);
    bottom: 0;
    left: 0;
}

.footer-section p, .footer-section ul li {
    font-size: 0.85rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.6rem;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: var(--secondary);
}

.social-icons {
    display: flex;
    gap: 0.8rem;
    margin-top: 1rem;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: white;
    transition: all 0.3s;
}

.social-icons a:hover {
    background-color: var(--secondary);
    color: var(--dark);
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 1.5rem;
    color: #aaa;
    font-size: 0.8rem;
}

.copyright a {
    color: var(--secondary);
    text-decoration: none;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(245, 166, 35, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(245, 166, 35, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(245, 166, 35, 0);
    }
}

/* Modal for Gallery */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    justify-content: center;
    align-items: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    max-width: 90%;
    max-height: 90%;
}

.modal-content img {
    width: 100%;
    height: auto;
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    color: white;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
}

.close-modal:hover {
    color: var(--secondary);
}

/* Flex Layout for Content Sections */
.flex-row {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center;
}

.flex-row .flex-item {
    flex: 1;
    min-width: 250px;
}

/* Responsive Design - Consolidated */
@media (max-width: 992px) {
    .logo-image {
        width: 42px;
        height: 42px;
    }
    
    .logo-text .main {
        font-size: 1rem;
    }
    
    .logo-text .tagline {
        font-size: 0.65rem;
    }
    
    nav ul li a {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .section-heading {
        font-size: 1.6rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }
    
    nav {
        position: fixed;
        top: 60px;
        left: -100%;
        width: 80%;
        max-width: 320px;
        height: calc(100vh);
        background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 50%);
        transition: left 0.3s ease;
        z-index: 999;
        /* box-shadow: 5px 0 30px rgba(0,0,0,0.3); */
    }
    
    nav.active {
        left: 0;
    }
    
    nav ul {
        flex-direction: column;
        align-items: stretch;
        padding: 1.5rem;
        gap: 0.3rem;
    }
    
    nav ul li {
        width: 100%;
    }
    
    nav ul li a {
        display: block;
        text-align: left;
        padding: 0.8rem 1.2rem;
        font-size: 1rem;
    }
    
    nav ul li a:before {
        display: none;
    }
    
    nav ul li a:hover {
        background: rgba(255,255,255,0.15);
        padding-left: 1.5rem;
    }
    
    .header-container {
        gap: 1rem;
    }
    
    .hero {
        padding: 4rem 1rem 3rem;
        min-height: 60vh;
    }
    
    .hero h1 {
        font-size: 1.5rem;
    }
    
    .hero p {
        font-size: 0.95rem;
    }
    
    .section {
        padding: 2rem 0;
    }
    
    .section-heading {
        font-size: 1.4rem;
    }
    
    .products-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .product-image {
        height: 150px;
    }
    
    .product-image i {
        font-size: 2.5rem;
    }
    
    .product-info {
        padding: 1rem;
    }
    
    .product-info h3 {
        font-size: 1.1rem;
    }
    
    .gallery-image {
        height: 180px;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .contact-form {
        padding: 1.2rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.2rem;
        text-align: left;
    }
    
    .footer-section h3:after {
        left: 0;
        transform: none;
    }
    
    .footer-section h3 {
        text-align: left;
    }
    
    .social-icons {
        justify-content: flex-start;
    }
    
    .services-list li, 
    .reasons-list li, 
    .clientele-list li {
        font-size: 0.9rem;
        margin-bottom: 0.6rem;
    }
    
    .info-card {
        padding: 1rem;
    }
    
    .info-card i {
        font-size: 1.8rem;
    }
    
    .info-card h3 {
        font-size: 1rem;
    }
    
    .map-container {
        height: 200px;
    }
    
    .flex-row {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .flex-row.reverse-mobile {
        flex-direction: column-reverse;
    }
    
    .cta-button, .btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }
    
    .btn-lg {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .btn-sm {
        padding: 0.35rem 0.8rem;
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .logo-image {
        width: 35px;
        height: 35px;
        padding: 3px;
    }
    
    .logo-text .main {
        font-size: 0.85rem;
    }
    
    .logo-text .tagline {
        font-size: 0.55rem;
    }
    
    .logo {
        gap: 0.5rem;
    }
    
    .container {
        width: 95%;
    }
    
    .hero h1 {
        font-size: 1.3rem;
    }
    
    .hero p {
        font-size: 0.85rem;
    }
    
    .section-heading {
        font-size: 1.2rem;
    }
    
    .product-card {
        margin: 0;
    }
    
    .contact-form {
        padding: 1rem;
    }
    
    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 0.6rem;
    }
    
    .copyright {
        font-size: 0.7rem;
    }
    
    .cta-button, .btn {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
        margin-top: 0.8rem;
    }
    
    .btn-outline {
        border-width: 1.5px;
    }
}


/* Footer Logo Styles */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.footer-logo-image {
    width: 45px;
    height: 45px;
    object-fit: contain;
    border-radius: 50%;
    background: white;
    padding: 5px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.footer-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.footer-logo-main {
    font-size: 1rem;
    letter-spacing: 0.5px;
    font-weight: bold;
    color: var(--secondary);
}

.footer-logo-main span {
    color: white;
    font-weight: bold;
}

.footer-logo-tagline {
    font-size: 0.65rem;
    opacity: 0.8;
    letter-spacing: 0.3px;
    color: #ccc;
}

.footer-description {
    margin-top: 0.5rem;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    line-height: 1.5;
    color: #ccc;
}

/* Mobile Responsive for Footer Logo */
@media (max-width: 768px) {
    .footer-logo {
        justify-content: flex-start;
    }
    
    .footer-logo-image {
        width: 40px;
        height: 40px;
    }
    
    .footer-logo-main {
        font-size: 0.9rem;
    }
    
    .footer-logo-tagline {
        font-size: 0.6rem;
    }
}

@media (max-width: 480px) {
    .footer-logo-image {
        width: 35px;
        height: 35px;
    }
    
    .footer-logo-main {
        font-size: 0.85rem;
    }
}

/* WhatsApp Modal Styles */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.whatsapp-float i {
    font-size: 2.5rem;
    color: white;
}

.notification-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: #ff4757;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

/* Modal */
.whatsapp-modal {
    display: none;
    position: fixed;
    z-index: 1001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.whatsapp-modal-content {
    position: fixed;
    bottom: 100px;
    right: 30px;
    background-color: white;
    width: 380px;
    max-width: 90%;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    animation: slideUp 0.3s ease;
    overflow: hidden;
}

@keyframes slideUp {
    from {
        transform: translateY(100px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.whatsapp-modal-header {
    background: linear-gradient(135deg, #075E54, #128C7E);
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.whatsapp-modal-logo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    background: white;
    padding: 5px;
}

.whatsapp-close {
    font-size: 1.5rem;
    cursor: pointer;
    color: white;
    transition: all 0.3s;
}

.whatsapp-close:hover {
    color: #ddd;
    transform: rotate(90deg);
}

.whatsapp-modal-body {
    padding: 1rem;
    max-height: 500px;
    overflow-y: auto;
}

.whatsapp-profile {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
}

.whatsapp-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.whatsapp-info h4 {
    margin: 0;
    font-size: 1rem;
    color: #075E54;
}

.whatsapp-info p {
    margin: 0;
    font-size: 0.7rem;
    color: #25D366;
}

.whatsapp-welcome {
    background: #dcf8c5;
    padding: 1rem;
    border-radius: 15px;
    margin-bottom: 1rem;
    text-align: center;
}

.whatsapp-welcome i {
    font-size: 2rem;
    color: #25D366;
    margin-bottom: 0.5rem;
}

.whatsapp-welcome p {
    margin: 0;
    font-size: 0.9rem;
    color: #075E54;
}

.whatsapp-options {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.whatsapp-option {
    background: #f0f2f5;
    padding: 0.8rem;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.9rem;
    color: #075E54;
}

.whatsapp-option:hover {
    background: #e4e6ea;
    transform: translateX(5px);
}

.whatsapp-option i {
    width: 20px;
    color: #25D366;
}

.whatsapp-custom-message {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.whatsapp-custom-message input {
    flex: 1;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 25px;
    font-size: 0.9rem;
    outline: none;
}

.whatsapp-custom-message input:focus {
    border-color: #25D366;
}

.whatsapp-custom-message button {
    background: #25D366;
    color: white;
    border: none;
    padding: 0.8rem 1.2rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s;
}

.whatsapp-custom-message button:hover {
    background: #128C7E;
}

.whatsapp-modal-footer {
    background: #f0f2f5;
    padding: 0.8rem;
    text-align: center;
    font-size: 0.7rem;
    color: #666;
    border-top: 1px solid #ddd;
}

/* Responsive */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
    
    .whatsapp-float i {
        font-size: 2rem;
    }
    
    .whatsapp-modal-content {
        bottom: 80px;
        right: 20px;
        left: 20px;
        width: auto;
    }
}


