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

body, html {
    font-family: 'Arial', 'Helvetica', sans-serif;
    line-height: 1.6;
    color: #333;
    height: 100%;
    width: 100%;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* Preloader */
body.loading {
    overflow: hidden;
}

#preloader {
    position: fixed;
    inset: 0;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    opacity: 1;
    visibility: visible;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

#preloader .preloader-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.preloader-logo {
    height: 64px;
    width: auto;
}

.preloader-spinner {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 3px solid rgba(0,0,0,0.1);
    border-top-color: #76c043;
    animation: spinner 0.9s linear infinite;
}

@keyframes spinner {
    to { transform: rotate(360deg); }
}

/* Fullscreen Image Modal */
.image-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(5px);
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-modal.show {
    display: flex;
    opacity: 1;
}

.modal-content {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transform: scale(0.8);
    transition: transform 0.3s ease;
    cursor: zoom-in;
}

.image-modal.show .modal-content {
    transform: scale(1);
}

.modal-content.zoomed {
    cursor: zoom-out;
    transform: scale(1.5);
}

.close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 2001;
    transition: color 0.3s ease;
    user-select: none;
}

.close:hover,
.close:focus {
    color: #76c043;
    text-decoration: none;
}

.modal-caption {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 16px;
    text-align: center;
    background: rgba(0, 0, 0, 0.7);
    padding: 10px 20px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

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

/* Make product images clickable */
.clickable-image,
.product-item img,
.swiper-slide img {
    cursor: pointer;
    transition: transform 0.3s ease;
    border-radius: 8px;
}

.clickable-image:hover,
.product-item img:hover,
.swiper-slide img:hover {
    transform: scale(1.02);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Mobile responsiveness for modal */
@media (max-width: 768px) {
    .close {
        top: 15px;
        right: 20px;
        font-size: 30px;
    }
    
    .modal-content {
        max-width: 95%;
        max-height: 80%;
    }
    
    .modal-caption {
        bottom: 10px;
        font-size: 14px;
        padding: 8px 16px;
    }
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Header Styles */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
    width: 100%;
    min-height: 70px;
    transition: transform 0.3s ease;
}

header.hide {
    transform: translateY(-100%);
}

.logo img {
    height: 50px;
    width: auto;
    max-width: 200px;
}

nav ul {
    display: flex;
    gap: 1.5rem;
}

nav ul li {
    margin-left: 0;
}

nav ul li a {
    font-weight: bold;
    font-size: 1rem;
    padding: 0.5rem 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

nav ul li a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: #76c043;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

nav ul li a:hover {
    color: #76c043;
    transform: translateY(-2px);
}

nav ul li a:hover::before {
    width: 80%;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 101;
    padding: 0.5rem;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.mobile-menu-btn:hover {
    background-color: rgba(118, 192, 67, 0.1);
    transform: scale(1.05);
}

.menu-open {
    overflow: hidden;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 2px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Hero Section with Swiper */
.hero-section {
    height: calc(100vh - 70px);
    min-height: 400px;
    max-height: 800px;
    overflow: hidden;
    position: relative;
}

.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    background-size: cover;
    background-position: center;
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.swiper-button-next,
.swiper-button-prev {
    color: #fff;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    margin-top: -25px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background-color: rgba(118, 192, 67, 0.8);
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(118, 192, 67, 0.3);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 20px;
}

.swiper-pagination-bullet {
    background-color: rgba(255, 255, 255, 0.5);
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background-color: #76c043;
}



section h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2.5rem;
    color: #333;
    position: relative;
}

section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #76c043;
}

/* About Section */
.about-section {
    background-color: #f9f9f9;
    padding: 4rem 5%;
    padding-top: 5rem;
}

.about-section h2 {
    text-align: center;
    margin-bottom: 1rem;
    font-size: 2rem;
    color: #333;
    position: relative;
    font-weight: bold;
}

.about-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #333;
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.about-text {
    flex: 1 1 60%;
    min-width: 300px;
}

.about-text p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: #333;
    text-align: justify;
    font-size: 1rem;
}

.about-image {
    flex: 1 1 35%;
    min-width: 300px;
    height: 400px;
}

.about-image video {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

@media (max-width: 768px) {
    .about-content {
        flex-direction: column;
    }
    
    .about-text, .about-image {
        flex: 1 1 100%;
    }
    
    .about-image {
        order: -1;
        margin-bottom: 1.5rem;
    }
}

/* Product Section */
.product-section {
    padding: 4rem 5%;
}

.product-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2rem;
    color: #333;
    position: relative;
    font-weight: bold;
}

.product-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #76c043;
}

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

.product-item {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.product-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.product-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-item:hover img {
    transform: scale(1.05);
}

.product-item h3 {
    padding: 1rem;
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.product-item p {
    padding: 0 1rem 1rem;
    color: #666;
    line-height: 1.6;
}

/* Contact Section */
.contact-section {
    background-color: #f9f9f9;
    padding: 4rem 5%;
    padding-top: 5rem;
}

.contact-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2rem;
    color: #333;
    position: relative;
    font-weight: bold;
}

.contact-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #76c043;
}

.contact-grid {
    display: grid;
    /* grid-template-columns: 1.2fr 1fr; */
    gap: 2rem;
    max-width: 600px;
    margin: 0 auto;
    align-items: start;
}

.contact-form {
    background-color: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-right .map-embed {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 1rem;
}

.contact-details {
    text-align: center;
    background: #fff;
    border-radius: 8px;
    padding: 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    min-height: 44px;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #76c043;
    box-shadow: 0 0 0 2px rgba(118, 192, 67, 0.2);
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

.submit-btn {
    background-color: #000;
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    font-size: 1rem;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
    width: 100%;
    font-weight: bold;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    min-height: 44px;
    position: relative;
    overflow: hidden;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.submit-btn:hover {
    background-color: #111;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.submit-btn:hover::before {
    left: 100%;
}

.submit-btn:active {
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.contact-submit { max-width: 220px; }

/* Footer Styles */
footer {
    background-color: #333;
    color: #fff;
    padding: 3rem 5% 1rem;
}

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

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-logo img {
    height: 60px;
    margin-bottom: 1rem;
    width: auto;
}

.footer-links h3,
.footer-contact h3 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
    position: relative;
    text-align: center;
}

.footer-links h3::after,
.footer-contact h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background-color: #76c043;
}

.footer-links ul {
    text-align: center;
}

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

.footer-links ul li a {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: inline-block;
}

.footer-links ul li a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #76c043;
    transition: width 0.3s ease;
}

.footer-links ul li a:hover {
    color: #76c043;
    transform: translateY(-2px);
}

.footer-links ul li a:hover::before {
    width: 100%;
}

.footer-contact {
    text-align: center;
}

.footer-contact p {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    justify-content: center;
}

.social-icons a {
    display: inline-block;
    width: 36px;
    height: 36px;
    background-color: #76c043;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
    color: white;
    text-decoration: none;
}

.social-icons a:hover {
    background-color: #5fa032;
}

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

/* ===== RESPONSIVE DESIGN ===== */

/* Large Desktop (1200px and up) */
@media (min-width: 1200px) {
    .hero-section {
        height: calc(100vh - 70px);
        max-height: 900px;
    }
    
    .about-content {
        gap: 3rem;
    }
    
    .product-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Desktop (992px to 1199px) */
@media (max-width: 1199px) and (min-width: 992px) {
    .hero-section {
        height: calc(100vh - 70px);
        max-height: 700px;
    }
    
    .about-content {
        gap: 2rem;
    }
    
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .swiper-button-next,
    .swiper-button-prev {
        width: 45px;
        height: 45px;
        margin-top: -22px;
    }
    
    .swiper-button-next:after,
    .swiper-button-prev:after {
        font-size: 18px;
    }
}

/* Tablet Landscape (768px to 991px) */
@media (max-width: 991px) and (min-width: 768px) {
    header {
        padding: 1rem 4%;
    }
    
    .hero-section {
        height: 60vh;
        min-height: 400px;
    }
    
    .about-section,
    .product-section,
    .contact-section {
        padding: 3rem 4%;
    }
    
    .about-content {
        gap: 1.5rem;
    }
    
    .about-text {
        flex: 1 1 55%;
    }
    
    .about-image {
        flex: 1 1 40%;
        height: 350px;
    }
    
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .swiper-button-next,
    .swiper-button-prev {
        width: 40px;
        height: 40px;
        margin-top: -20px;
    }
    
    .swiper-button-next:after,
    .swiper-button-prev:after {
        font-size: 16px;
    }
}

/* Tablet Portrait (576px to 767px) */
@media (max-width: 767px) and (min-width: 576px) {
    .contact-grid { grid-template-columns: 1fr; }
    .mobile-menu-btn {
        display: flex;
    }

    nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        clip-path: circle(0% at top right);
        transition: clip-path 0.5s ease-in-out;
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 99;
    }

    nav.active {
        clip-path: circle(150% at top right);
    }

    nav ul {
        flex-direction: column;
        padding: 1rem 0;
        text-align: center;
        gap: 0;
    }

    nav ul li {
        margin: 0;
        text-align: center;
        padding: 1rem 0;
    }
    
    nav ul li a {
        font-size: 1.2rem;
        padding: 0.8rem 1.5rem;
    }

    header {
        padding: 0.8rem 4%;
    }
    
    .logo img {
        height: 45px;
    }

    .hero-section {
        height: 50vh;
        min-height: 350px;
    }

    .about-section,
    .product-section,
    .contact-section {
        padding: 2.5rem 4%;
    }
    
    .about-section h2,
    .product-section h2,
    .contact-section h2 {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
    
    .about-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .about-text, .about-image {
        flex: 1 1 100%;
    }
    
    .about-image {
        order: -1;
        margin-bottom: 1.5rem;
        height: 300px;
    }
    
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .swiper-button-next,
    .swiper-button-prev {
        display: none;
    }
}

/* Mobile Landscape (480px to 575px) */
@media (max-width: 575px) and (min-width: 480px) {
    .contact-grid { grid-template-columns: 1fr; }
    header {
        padding: 0.8rem 3%;
    }

    .logo img {
        height: 40px;
    }

    .hero-section {
        height: 45vh;
        min-height: 300px;
    }

    .about-section,
    .product-section,
    .contact-section {
        padding: 2rem 3%;
    }

    .about-section h2,
    .product-section h2,
    .contact-section h2 {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
    }
    
    .about-image {
        height: 250px;
    }

    .product-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-form {
        padding: 1rem;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 0.7rem;
        font-size: 0.9rem;
    }
    
    .submit-btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
    }
    
    .footer-logo img {
        height: 50px;
    }
}

/* Mobile (up to 575px) - enable hamburger and overlay nav */
@media (max-width: 575px) {
    .mobile-menu-btn {
        display: flex;
    }

    nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        clip-path: circle(0% at top right);
        transition: clip-path 0.5s ease-in-out;
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 99;
    }

    nav.active {
        clip-path: circle(150% at top right);
    }

    nav ul {
        flex-direction: column;
        padding: 1rem 0;
        text-align: center;
        gap: 0;
    }

    nav ul li {
        margin: 0;
        text-align: center;
        padding: 1rem 0;
    }

    nav ul li a {
        font-size: 1.1rem;
        padding: 0.8rem 1.2rem;
    }
}

/* Mobile Portrait (up to 479px) */
@media (max-width: 479px) {
    .contact-grid { grid-template-columns: 1fr; }
    header {
        padding: 0.6rem 3%;
        min-height: 60px;
    }

    .logo img {
        height: 35px;
    }

    .hero-section {
        height: 40vh;
        min-height: 250px;
    }

    .about-section,
    .product-section,
    .contact-section {
        padding: 1.5rem 3%;
    }

    .about-section h2,
    .product-section h2,
    .contact-section h2 {
        font-size: 1.4rem;
        margin-bottom: 1.2rem;
    }
    
    .about-text p {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .about-image {
        height: 200px;
    }

    .product-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .product-item img {
        height: 180px;
    }
    
    .product-item h3 {
        font-size: 1.1rem;
        padding: 0.8rem;
    }
    
    .product-item p {
        font-size: 0.9rem;
        padding: 0 0.8rem 0.8rem;
    }
    
    .contact-form {
        padding: 1rem;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 0.6rem;
        font-size: 0.9rem;
    }
    
    .form-group textarea {
        height: 120px;
    }
    
    .submit-btn {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
    
    footer {
        padding: 2rem 3% 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
    }
    
    .footer-logo img {
        height: 45px;
    }
    
    .footer-links h3,
    .footer-contact h3 {
        font-size: 1.1rem;
    }
    
    .footer-contact p {
        font-size: 0.9rem;
    }
    
    .social-icons a {
        width: 32px;
        height: 32px;
    }
}

/* Extra Small Mobile (up to 320px) */
@media (max-width: 320px) {
    header {
        padding: 0.5rem 2%;
    }

    .logo img {
        height: 30px;
    }

    .hero-section {
        height: 35vh;
        min-height: 200px;
    }

    .about-section,
    .product-section,
    .contact-section {
        padding: 1rem 2%;
    }

    .about-section h2,
    .product-section h2,
    .contact-section h2 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
        margin-top: 1rem;
    }
    
    .about-text p {
        font-size: 0.85rem;
    }
    
    .about-image {
        height: 180px;
    }

    .product-item img {
        height: 160px;
    }
    
    .product-item h3 {
        font-size: 1rem;
        padding: 0.6rem;
    }
    
    .product-item p {
        font-size: 0.85rem;
        padding: 0 0.6rem 0.6rem;
    }
    
    .contact-form {
        padding: 0.8rem;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 0.5rem;
        font-size: 0.85rem;
    }
    
    .form-group textarea {
        height: 100px;
    }
    
    .submit-btn {
        padding: 0.5rem 0.8rem;
        font-size: 0.85rem;
    }
    
    footer {
        padding: 1.5rem 2% 1rem;
    }
    
    .footer-logo img {
        height: 40px;
    }
    
    .footer-links h3,
    .footer-contact h3 {
        font-size: 1rem;
    }
    
    .footer-contact p {
        font-size: 0.85rem;
    }
    
    .social-icons a {
        width: 28px;
        height: 28px;
    }
}
