/* style.css - COMPLETE FULLY RESPONSIVE FILE */
/* SINGLE PAGE WEBSITE WITH SMOOTH SCROLL */

/* RESET & BASE STYLES STARTS */
html {
    scroll-behavior: smooth;
}

* {
    margin: 0px;
    padding: 0px;
    border: none;
    outline: none;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    color: #444;
    line-height: 1.8em;
    font-weight: 400;
    background: #ffffff;
    -webkit-font-smoothing: antialiased;
    padding-top: 0;
}

:root {
    --primary-color-1: #2e7d32;
    --primary-color-2: #151515;
    --secondary-color: #f8f8f8;
}

.fluid-container {
    position: static;
    max-width: 1200px;
    padding: 0px 15px;
    margin: 0 auto;
}

.clearfix::after,
.clearfix::before {
    display: table;
    content: '';
    clear: both;
}

ul, li {
    list-style: none;
    padding: 0px;
    margin: 0px;
}

a {
    text-decoration: none;
    cursor: pointer;
    color: #3563a9;
    transition: all 0.3s ease;
}

a:hover,
a:focus,
a:visited {
    text-decoration: none;
    outline: none;
}

/* HEADER STYLES STARTS */
.main-header {
    position: relative;
    left: 0px;
    top: 0px;
    z-index: 999;
    width: 100%;
    transition: all 500ms ease;
}

.main-header .top_header {
    position: relative;
    font-size: 13px;
    padding: 9px 0px 7px;
    background: #151515;
    color: #ffffff;
    z-index: 1;
    display: block;
}

.main-header .top_header::after {
    width: 60%;
    background: var(--primary-color-1);
    content: '';
    height: 100%;
    position: absolute;
    top: 0;
    display: block;
    z-index: -1;
    transform: skewX(30deg);
    left: 3%;
    max-width: 800px;
}

.main-header .top_header a {
    color: #ffffff;
    transition: all 300ms ease;
}

.main-header .top_header a:hover {
    color: var(--primary-color-1);
}

.top_infowrp.top-right {
    float: right;
}

.main-header .top_infoitem li {
    position: relative;
    float: left;
    margin-right: 25px;
}

.main-header .top-right .top_infoitem li {
    margin-right: 0px;
    margin-left: 25px;
}

.main-header .top_infoitem li a {
    position: relative;
    line-height: 26px;
    font-size: 14px;
    text-transform: capitalize;
}

.main-header .top_infoitem li .fa {
    padding-right: 8px;
    font-size: 16px;
    color: var(--primary-color-1);
}

.main-header .top_socialinfo li {
    display: inline-block;
}

.main-header .top_socialinfo li a {
    display: block;
    width: 25px;
    height: 25px;
    text-align: center;
}

.main-header .middle_header {
    position: relative;
    padding: 20px 0px;
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.mdlheader-wrp {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    min-height: 90px;
}

.main-header .main-logo {
    flex: 0 0 auto;
    width: auto;
    max-width: 200px;
}

.main-header .main-logo img {
    max-height: 70px;
    width: auto;
    display: block;
}

.main-header .middle_header .middle-right {
    flex: 1 1 auto;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-left: 20px;
}

.desktop-menu-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
    gap: 20px;
}

.call-now-btn {
    background: var(--primary-color-1);
    color: white;
    padding: 12px 25px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 4px;
    display: inline-block;
    transition: all 0.3s ease;
    text-decoration: none;
    white-space: nowrap;
    flex: 0 0 auto;
    margin-left: 10px;
    border: 2px solid var(--primary-color-1);
}

.call-now-btn:hover {
    background: transparent;
    color: var(--primary-color-1);
    border-color: var(--primary-color-1);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.main-menu {
    position: relative;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    flex: 1 1 auto;
}

.main-menu .navigation {
    position: relative;
    margin: 0px;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    list-style: none;
    align-items: center;
}

.main-menu .navigation > li > a {
    position: relative;
    display: block;
    padding: 12px 18px;
    font-size: 16px;
    color: #222;
    line-height: 30px;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 500ms ease;
    white-space: nowrap;
}

.main-menu .navigation > li:hover > a,
.main-menu .navigation > li.current > a {
    color: var(--primary-color-1) !important;
}

/* STICKY HEADER STARTS */
.sticky-navbar {
    position: fixed;
    top: -100px;
    left: 0px;
    width: 100%;
    padding: 10px 0;
    background: #ffffff;
    z-index: 1000;
    border-bottom: 1px solid #cccccc;
    transition: all 300ms ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
}

.sticky-navbar.active {
    top: 0;
    opacity: 1;
    visibility: visible;
}

.sticky-navbar .fluid-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    min-height: 60px;
}

.sticky-navbar .logo img {
    max-height: 50px;
    width: auto;
    display: block;
}

.sticky-navbar .sticky-menu .navigation {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

.sticky-navbar .sticky-menu .navigation > li > a {
    color: #181818;
    padding: 10px 15px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.sticky-navbar .sticky-menu .navigation > li > a:hover {
    color: var(--primary-color-1);
}

.sticky-navbar .sticky-call-btn {
    flex: 0 0 auto;
    background: var(--primary-color-1);
    color: white;
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
    margin-left: 15px;
    border: 2px solid var(--primary-color-1);
}

.sticky-navbar .sticky-call-btn:hover {
    background: transparent;
    color: var(--primary-color-1);
    border-color: var(--primary-color-1);
    transform: translateY(-2px);
}

/* MOBILE HEADER STARTS */
.mobile-header {
    display: none;
    padding: 15px 0;
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
}

.mobile-header .fluid-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-logo img {
    max-height: 50px;
    width: auto;
    display: block;
}

.mobile-contact {
    display: flex;
    align-items: center;
    gap: 15px;
}

.mobile-phone {
    background: var(--primary-color-1);
    color: white;
    padding: 8px 15px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    white-space: nowrap;
    border-radius: 4px;
}

.mobile-menu-btn {
    background: var(--primary-color-1);
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 20px;
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    max-width: 300px;
    height: 100%;
    background: white;
    z-index: 1001;
    transition: all 0.3s ease;
    box-shadow: 5px 0 15px rgba(0,0,0,0.1);
    overflow-y: auto;
    padding: 20px;
}

.mobile-menu.active {
    left: 0;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-nav {
    margin-top: 30px;
}

.mobile-menu-nav li {
    margin-bottom: 5px;
}

.mobile-menu-nav li a {
    display: block;
    padding: 12px 15px;
    color: #333;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.mobile-menu-nav li a:hover {
    background: var(--primary-color-1);
    color: white;
}

.mobile-menu-close {
    background: var(--primary-color-1);
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 18px;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.mobile-menu-logo img {
    max-height: 40px;
}

/* HERO SLIDER STYLES */
.hero-slider {
    position: relative;
    width: 100%;
    height: 700px;
    overflow: hidden;
    margin-top: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('img/Green-cardamom.png');
    background-size: cover;
    background-position: center;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slider-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.slider-slide.active {
    opacity: 1;
    z-index: 1;
}

.slider-content {
    max-width: 800px;
    padding: 0 20px;
    z-index: 2;
}

.slider-subtitle {
    font-size: 18px;
    color: var(--primary-color-1);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.slider-title {
    font-size: 60px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 20px;
}

.slider-description {
    font-size: 18px;
    color: #fff;
    margin-bottom: 30px;
}

.slider-btn {
    display: inline-block;
    background: var(--primary-color-1);
    color: #fff;
    padding: 15px 35px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.slider-btn:hover {
    background: #151515;
    transform: translateY(-3px);
}

/* ABOUT SECTION STYLES */
.about-section {
    padding: 100px 0;
    background: #fff;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--primary-color-1);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.section-main-title {
    font-size: 42px;
    font-weight: 700;
    color: #151515;
    line-height: 1.2;
}

.text-white {
    color: #fff !important;
}

.about-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 50px;
}

.about-image {
    flex: 1;
    min-width: 300px;
    position: relative;
}

.about-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 10px;
}

.about-experience {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--primary-color-1);
    color: white;
    padding: 30px;
    text-align: center;
    border-radius: 10px;
}

.experience-years {
    font-size: 36px;
    font-weight: 700;
}

.about-content {
    flex: 1;
    min-width: 300px;
}

.about-description p {
    margin-bottom: 15px;
}

.about-features {
    margin: 30px 0;
}

.feature-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
}

.feature-content h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

.about-btn {
    display: inline-block;
    background: var(--primary-color-1);
    color: #fff;
    padding: 15px 35px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.about-btn:hover {
    background: #1b5e20;
    transform: translateY(-2px);
}

/* PRODUCT SPECIFICATIONS SECTION */
.product-spec-section {
    padding: 80px 0;
    background: #f9f9f9;
}

.spec-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.spec-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    background: #ffffff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.spec-image-col {
    flex: 1;
    min-width: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.spec-product-img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.spec-product-img:hover {
    transform: scale(1.02);
}

.spec-table-col {
    flex: 1;
    min-width: 280px;
}

.spec-product-name {
    font-size: 28px;
    color: #2c3e2f;
    font-weight: 700;
    margin-bottom: 20px;
    border-left: 5px solid #e67e22;
    padding-left: 15px;
}

.spec-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 25px;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
}

.spec-table tr {
    border-bottom: 1px solid #eee;
}

.spec-table tr:last-child {
    border-bottom: none;
}

.spec-label {
    padding: 14px 12px;
    font-weight: 600;
    color: #2c3e2f;
    background: #f8f5f0;
    width: 40%;
    font-size: 15px;
}

.spec-value {
    padding: 14px 12px;
    color: #555;
    font-size: 15px;
    background: #ffffff;
}

.bulk-order-box {
    background: #fef5e8;
    border-left: 4px solid #e67e22;
    padding: 20px;
    border-radius: 12px;
    margin-top: 10px;
}

.bulk-order-box h4 {
    font-size: 18px;
    color: #2c3e2f;
    margin-bottom: 12px;
    font-weight: 700;
}

.bulk-order-box h4 i {
    color: #e67e22;
    margin-right: 8px;
}

.bulk-order-box p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 18px;
}

.bulk-contact {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.bulk-call-btn,
.bulk-email-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 40px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.bulk-call-btn {
    background: #2c3e2f;
    color: #fff;
}

.bulk-call-btn:hover {
    background: #1e2a20;
    transform: translateY(-2px);
}

.bulk-email-btn {
    background: #e67e22;
    color: #fff;
}

.bulk-email-btn:hover {
    background: #d35400;
    transform: translateY(-2px);
}

/* GALLERY SECTION */
.gallery-section {
    padding: 100px 0;
    background: white;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 50px;
}

.gallery-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 300px;
    cursor: pointer;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(46, 125, 50, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-title {
    color: white;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
}

/* CONTACT SECTION */
.contact-info-section {
    padding: 80px 0;
    background: linear-gradient(rgba(21, 21, 21, 0.95), rgba(21, 21, 21, 0.95)), url('img/Black-pepper.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    z-index: 1;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 30px;
}

.company-info {
    background: rgba(0, 0, 0, 0.75);
    padding: 35px;
    border-radius: 10px;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(46, 125, 50, 0.4);
    transition: all 0.3s ease;
}

.company-info:hover {
    border-color: var(--primary-color-1);
    background: rgba(0, 0, 0, 0.85);
}

.company-info-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color-1);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--primary-color-1);
}

.info-item {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.info-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.info-item h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--primary-color-1);
}

.info-content p {
    margin-bottom: 8px;
    font-size: 15px;
    line-height: 1.6;
    color: #e0e0e0;
}

.info-content strong {
    color: var(--primary-color-1);
    font-weight: 600;
    min-width: 140px;
    display: inline-block;
}

.info-content a {
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.info-content a:hover {
    color: var(--primary-color-1);
}

.export-countries {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.country-tag {
    background: var(--primary-color-1);
    color: white;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    display: inline-block;
}

.contact-form {
    background: rgba(0, 0, 0, 0.75);
    padding: 35px;
    border-radius: 10px;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(46, 125, 50, 0.4);
    transition: all 0.3s ease;
}

.contact-form:hover {
    border-color: var(--primary-color-1);
    background: rgba(0, 0, 0, 0.85);
}

.contact-form-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color-1);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--primary-color-1);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #ffffff;
    font-size: 14px;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 5px;
    font-size: 15px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-control:focus {
    border-color: var(--primary-color-1);
    box-shadow: 0 0 0 2px rgba(46, 125, 50, 0.3);
    background: rgba(255, 255, 255, 0.15);
}

select.form-control option {
    background: #151515;
    color: white;
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.submit-btn {
    background: var(--primary-color-1);
    color: white;
    border: none;
    padding: 14px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    width: 100%;
    margin-top: 10px;
}

.submit-btn:hover {
    background: #1b5e20;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.submit-btn i {
    margin-right: 8px;
}

/* FOOTER SECTION */
.footer-section {
    background: #0a0a0a;
    color: #fff;
    padding: 70px 0 20px;
    position: relative;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-about p {
    color: #aaaaaa;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 14px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    max-height: 55px;
    width: auto;
    display: block;
}

.footer-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 25px;
    color: #ffffff;
    position: relative;
    padding-bottom: 12px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--primary-color-1);
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: #aaaaaa;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    font-size: 14px;
    text-decoration: none;
}

.footer-links ul li a:hover {
    color: var(--primary-color-1);
    transform: translateX(5px);
}

.footer-links ul li a i {
    margin-right: 10px;
    color: var(--primary-color-1);
    font-size: 12px;
}

.footer-contact .contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-color-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.contact-icon i {
    color: white;
    font-size: 18px;
}

.contact-info h4 {
    font-size: 15px;
    margin-bottom: 5px;
    color: #ffffff;
    font-weight: 600;
}

.contact-info p {
    color: #aaaaaa;
    word-break: break-word;
    font-size: 13px;
    line-height: 1.5;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-social a:hover {
    background: var(--primary-color-1);
    transform: translateY(-5px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 25px;
    text-align: center;
    color: #888888;
}

.footer-bottom p {
    font-size: 13px;
    line-height: 1.6;
}

/* RESPONSIVE MEDIA QUERIES */
@media (max-width: 768px) {
    .main-header, .sticky-navbar {
        display: none !important;
    }
    
    .mobile-header {
        display: block !important;
    }
    
    .hero-slider {
        height: 500px;
    }
    
    .slider-title {
        font-size: 32px;
    }
    
    .slider-subtitle {
        font-size: 14px;
    }
    
    .slider-description {
        font-size: 14px;
    }
    
    .slider-btn {
        padding: 12px 25px;
        font-size: 14px;
    }
    
    .about-section, .products-section, .gallery-section, .contact-info-section {
        padding: 60px 0;
    }
    
    .section-main-title {
        font-size: 28px;
    }
    
    .section-subtitle {
        font-size: 14px;
    }
    
    .about-container {
        flex-direction: column;
    }
    
    .about-img {
        height: 350px;
    }
    
    .about-experience {
        bottom: -20px;
        right: -10px;
        padding: 15px 20px;
    }
    
    .experience-years {
        font-size: 24px;
    }
    
    .spec-wrapper {
        padding: 25px;
    }
    
    .spec-product-name {
        font-size: 24px;
    }
    
    .spec-label, .spec-value {
        padding: 10px 8px;
        font-size: 13px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-item {
        height: 250px;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .company-info, .contact-form {
        padding: 25px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-logo img {
        margin: 0 auto;
    }
    
    .footer-about {
        text-align: center;
    }
    
    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-links ul li a {
        justify-content: center;
    }
    
    .footer-contact .contact-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .contact-icon {
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .footer-social {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-slider {
        height: 450px;
    }
    
    .slider-title {
        font-size: 26px;
    }
    
    .section-main-title {
        font-size: 24px;
    }
    
    .about-img {
        height: 280px;
    }
    
    .spec-wrapper {
        padding: 18px;
    }
    
    .bulk-contact {
        flex-direction: column;
    }
    
    .bulk-call-btn, .bulk-email-btn {
        justify-content: center;
        width: 100%;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .products-grid, .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}