/* ============================================
   GLOBAL STYLES & RESET
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 14px;
    line-height: 1.71429;
    color: #9b9b9b;
    background-color: #ffffff;
    overflow-x: hidden;
    width: 100%;
}

a {
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

a:hover {
    color: #fc6c1e;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-weight: 700;
    color: #151515;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/*AAAAAAAAAAAAAAAAAAAAAAA!!! HEADER STYLES STARTS !!!AAAAAAAAAAAAAAAAAAA*/

.header-container {
    width: 100%;
    background: #ffffff;
    box-shadow: 0px 3px 4px 0px rgba(0, 0, 0, 0.09);
    position: relative;
    z-index: 100;
    transition: transform 0.4s ease, opacity 0.3s ease;
}

.header-container.hide-header {
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    position: absolute;
}

@media (max-width: 992px) {
    .header-container {
        display: none !important;
    }
}

.header-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.header-left {
    flex: 1;
    display: flex;
    justify-content: flex-start;
}

.nav-menu-left {
    display: flex;
    list-style: none;
    gap: 30px;
}

.header-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 30px;
}

.nav-menu-right {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-item {
    position: relative;
}

.nav-item > a {
    font-size: 14px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #151515;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
}

.nav-item > a:hover {
    color: #fc6c1e;
}

.nav-item.active > a {
    color: #fc6c1e;
}

.call-button {
    background-color: #fc6c1e;
    color: #ffffff;
    padding: 8px 18px;
    border-radius: 40px;
    font-weight: 700;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    border: 2px solid #fc6c1e;
}

.call-button:hover {
    background-color: transparent;
    color: #fc6c1e;
    transform: scale(1.02);
}

.header-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    z-index: 20;
}

.logo-connected-shape {
    position: relative;
    background: #ffffff;
    width: 220px;
    padding: 15px 15px 30px 15px;
    text-align: center;
    clip-path: polygon(0% 0%, 100% 0%, 100% 85%, 85% 100%, 15% 100%, 0% 85%);
}

.logo-connected-shape h1 {
    font-size: 18px;
    font-weight: 800;
    color: #fc6c1e;
    letter-spacing: 1px;
    margin: 0;
    text-transform: uppercase;
}

.logo-connected-shape span {
    font-size: 11px;
    color: #151515;
    display: block;
    letter-spacing: 0.5px;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #151515;
    z-index: 30;
}

/* STICKY HEADER */
.sticky-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: transform 0.4s ease;
    transform: translateY(-100%);
}

.sticky-header.visible {
    transform: translateY(0);
}

@media (max-width: 992px) {
    .sticky-header {
        transform: translateY(0) !important;
        position: fixed;
        top: 0;
    }
}

.sticky-header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 12px 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sticky-logo h2 {
    font-size: 20px;
    font-weight: 800;
    color: #fc6c1e;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

.sticky-nav-left, .sticky-nav-right {
    display: flex;
    list-style: none;
    gap: 25px;
    margin: 0;
    padding: 0;
}

.sticky-nav-left li a, .sticky-nav-right li a {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    color: #151515;
    letter-spacing: 0.05em;
}

.sticky-nav-left li a:hover, .sticky-nav-right li a:hover {
    color: #fc6c1e;
}

.sticky-call {
    background-color: #fc6c1e;
    color: #ffffff;
    padding: 8px 18px;
    border-radius: 40px;
    font-weight: 700;
    font-size: 13px;
    transition: 0.3s;
    margin-left: 15px;
}

.sticky-call:hover {
    background-color: transparent;
    color: #fc6c1e;
    border: 1px solid #fc6c1e;
}

.sticky-mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 26px;
    cursor: pointer;
    color: #151515;
}

.sticky-nav-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
}

@media (max-width: 992px) {
    .sticky-nav-left, .sticky-nav-right {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 80%;
        max-width: 320px;
        height: calc(100vh - 70px);
        background: #ffffff;
        flex-direction: column;
        gap: 0;
        padding: 20px;
        box-shadow: 5px 0 25px rgba(0,0,0,0.1);
        transition: left 0.3s ease;
        z-index: 1000;
        overflow-y: auto;
    }
    .sticky-nav-left.active, .sticky-nav-right.active {
        left: 0;
    }
    .sticky-nav-left li, .sticky-nav-right li {
        border-bottom: 1px solid #f0f0f0;
        width: 100%;
    }
    .sticky-nav-left li a, .sticky-nav-right li a {
        display: block;
        padding: 14px 0;
        width: 100%;
    }
    .sticky-mobile-toggle {
        display: block;
    }
    .sticky-header-inner {
        padding: 12px 15px;
    }
    .sticky-call {
        display: none;
    }
    .sticky-nav-wrapper {
        display: none;
    }
    body {
        padding-top: 70px;
    }
}

@media (max-width: 480px) {
    .sticky-nav-left, .sticky-nav-right {
        top: 60px;
        height: calc(100vh - 60px);
    }
    body {
        padding-top: 60px;
    }
}

/*AAAAAAAAAAAAAAAAAAAAAAA!!! HEADER STYLES ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/

/*AAAAAAAAAAAAAAAAAAAAAAA!!! SLIDER STYLES STARTS !!!AAAAAAAAAAAAAAAAAAA*/

.swiper-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    z-index: 1;
}

.swiper-slider-default {
    min-height: 500px;
    width: 100%;
}

.swiper-wrapper {
    display: flex;
    width: 100%;
    height: 100%;
}

.swiper-slide {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    flex-shrink: 0;
    background-size: cover;
    background-position: center;
    min-height: 500px;
    background-repeat: no-repeat;
}

.swiper-slide-1 {
    background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('images/bb1.jpg');
}

.swiper-slide-2 {
    background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('images/bb1.jpg');
}

.swiper-slide-caption {
    text-align: center;
    color: #ffffff;
    padding: 20px;
    width: 100%;
}

.swiper-slide-caption h1 {
    font-size: 98px;
    line-height: 1.2;
    letter-spacing: 0.065em;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 10px;
}

.swiper-slide-caption h4 {
    font-size: 24px;
    font-weight: 400;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 20px;
}

.button {
    display: inline-block;
    padding: 13px 50px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border: 2px solid;
    transition: 250ms all ease-in-out;
    cursor: pointer;
}

.button-primary-light {
    color: #ffffff;
    background-color: #fb8957;
    border-color: #fb8957;
}

.button-primary-light:hover {
    color: #151515;
    background-color: #ffdf61;
    border-color: #ffdf61;
}

.button-secondary {
    color: #151515;
    background-color: #ffd632;
    border-color: #ffd632;
}

.button-secondary:hover {
    color: #ffffff;
    background-color: #fb8957;
    border-color: #fb8957;
}

.swiper-pagination {
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
    text-align: center;
    z-index: 10;
}

.swiper-pagination-bullet {
    display: inline-block;
    width: 48px;
    height: 4px;
    background: rgba(255,255,255,0.6);
    margin: 0 8px;
    cursor: pointer;
}

.swiper-pagination-bullet-active {
    background: #ffffff;
}

.swiper-button-prev, .swiper-button-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(0,0,0,0.5);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    font-size: 24px;
    border-radius: 4px;
}

.swiper-button-prev { left: 30px; }
.swiper-button-next { right: 30px; }

@media (max-width: 768px) {
    .swiper-slider-default, .swiper-slide { min-height: 400px; }
    .swiper-slide-caption h1 { font-size: 36px; letter-spacing: 0.03em; }
    .swiper-slide-caption h4 { font-size: 16px; }
    .button { padding: 10px 25px; font-size: 12px; }
    .swiper-button-prev, .swiper-button-next { width: 32px; height: 32px; font-size: 18px; }
    .swiper-button-prev { left: 10px; }
    .swiper-button-next { right: 10px; }
    .swiper-pagination-bullet { width: 30px; margin: 0 5px; }
}

@media (max-width: 480px) {
    .swiper-slide-caption h1 { font-size: 28px; }
    .swiper-slide-caption h4 { font-size: 14px; }
}

/*AAAAAAAAAAAAAAAAAAAAAAA!!! SLIDER STYLES ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/

/*AAAAAAAAAAAAAAAAAAAAAAA!!! DAIRY SERVICES STYLES STARTS !!!AAAAAAAAAAAAAAAAAAA*/

.section { 
    padding: 80px 0; 
    position: relative;
    z-index: 2;
    background: #ffffff;
}
.bg-default { background-color: #ffffff; }

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.col-md-6, .col-lg-4 {
    padding: 0 15px;
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
}

.box-services-simple {
    position: relative;
    max-width: 335px;
    margin: 37px auto 0;
    text-align: center;
}

.box-services-simple-inner {
    padding: 50px 18px 30px;
    border: 6px solid #e5e7e9;
}

.box-services-simple-icon {
    position: absolute;
    top: -37px;
    left: 50%;
    width: 168px;
    height: 92px;
    background-color: #ffffff;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.box-services-simple-icon img { 
    max-width: 74px;
    height: auto;
}
.box-services-simple-title { font-size: 24px; text-transform: uppercase; margin-bottom: 15px; }
.box-services-simple-title a { color: #151515; }
.box-services-simple-title a:hover { color: #fc6c1e; }

@media (max-width: 992px) {
    .col-md-6 { flex: 0 0 50%; max-width: 50%; }
    .section { padding: 60px 0; }
}
@media (max-width: 768px) {
    .col-md-6, .col-lg-4 { flex: 0 0 100%; max-width: 100%; }
    .box-services-simple { margin: 45px auto 0; }
}

/*AAAAAAAAAAAAAAAAAAAAAAA!!! DAIRY SERVICES STYLES ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/

/*AAAAAAAAAAAAAAAAAAAAAAA!!! ABOUT US STYLES STARTS !!!AAAAAAAAAAAAAAAAAAA*/

.about-section {
    padding: 80px 0;
    background: #f9f9f9;
    position: relative;
}
.about-container {
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}
.about-image {
    flex: 1;
    min-width: 280px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}
.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}
.about-image:hover img {
    transform: scale(1.02);
}
.about-content {
    flex: 1;
    min-width: 280px;
}
.about-subtitle {
    color: #fc6c1e;
    font-size: 16px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
    font-weight: 600;
}
.about-content h2 {
    font-size: 38px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #151515;
}
.about-description {
    color: #6c6c6c;
    margin-bottom: 20px;
    font-size: 15px;
    line-height: 1.7;
}
.about-features {
    list-style: none;
    margin: 25px 0;
    padding: 0;
}
.about-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 15px;
    color: #4a4a4a;
}
.about-features li span:first-child {
    color: #fc6c1e;
    font-size: 20px;
    font-weight: bold;
}
.about-btn {
    display: inline-block;
    background-color: #fc6c1e;
    color: #fff;
    padding: 12px 32px;
    border-radius: 40px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 13px;
    margin-top: 10px;
    border: 2px solid #fc6c1e;
    transition: 0.3s;
}
.about-btn:hover {
    background-color: transparent;
    color: #fc6c1e;
    border-color: #fc6c1e;
}

/*AAAAAAAAAAAAAAAAAAAAAAA!!! ABOUT US STYLES ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/

/*AAAAAAAAAAAAAAAAAAAAAAA!!! PREMIUM PRODUCT CARD STYLES STARTS !!!AAAAAAAAAAAAAAAAAAA*/

.products-section {
    padding: 80px 0;
    background: #ffffff;
    position: relative;
}
.section-header {
    text-align: center;
    margin-bottom: 60px;
}
.section-header .section-subtitle {
    color: #fc6c1e;
    font-size: 16px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
    font-weight: 600;
}
.section-header h2 {
    font-size: 42px;
    color: #151515;
    margin-bottom: 15px;
}
.section-header p {
    max-width: 600px;
    margin: 0 auto;
    color: #6c6c6c;
    font-size: 16px;
}
.products-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}
.product-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}
.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}
.product-image {
    position: relative;
    overflow: hidden;
    background: #f8f5f0;
    padding: 30px;
}
.product-image img {
    width: 100%;
    max-width: 220px;
    height: auto;
    display: block;
    margin: 0 auto;
    transition: transform 0.4s ease;
}
.product-card:hover .product-image img {
    transform: scale(1.05);
}
.product-info {
    padding: 25px 20px 30px;
}
.product-info h3 {
    font-size: 28px;
    color: #151515;
    margin-bottom: 12px;
    font-weight: 700;
}
.product-description {
    color: #7a7a7a;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}
.product-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}
.btn-view {
    background-color: transparent;
    border: 2px solid #fc6c1e;
    color: #fc6c1e;
    padding: 10px 24px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: 0.3s;
    display: inline-block;
    text-decoration: none;
}
.btn-view:hover {
    background-color: #fc6c1e;
    color: #ffffff;
}
.btn-enquiry {
    background-color: #fc6c1e;
    border: 2px solid #fc6c1e;
    color: #ffffff;
    padding: 10px 24px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: 0.3s;
    display: inline-block;
    text-decoration: none;
}
.btn-enquiry:hover {
    background-color: transparent;
    color: #fc6c1e;
}

/*AAAAAAAAAAAAAAAAAAAAAAA!!! PREMIUM PRODUCT CARD STYLES ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/

/*AAAAAAAAAAAAAAAAAAAAAAA!!! GALLERY STYLES STARTS !!!AAAAAAAAAAAAAAAAAAA*/

.gallery-section {
    padding: 80px 0;
    background: #f9f9f9;
    position: relative;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}
.gallery-item {
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    cursor: pointer;
}
.gallery-item:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}
.gallery-item img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}
.gallery-item:hover img {
    transform: scale(1.08);
}

/*AAAAAAAAAAAAAAAAAAAAAAA!!! GALLERY STYLES ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/

/*AAAAAAAAAAAAAAAAAAAAAAA!!! CONTACT STYLES STARTS !!!AAAAAAAAAAAAAAAAAAA*/

.contact-section {
    padding: 80px 0;
    background: #ffffff;
}
.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}
.contact-left {
    flex: 1;
    min-width: 280px;
}
.contact-right {
    flex: 1;
    min-width: 280px;
    background: #f9f9f9;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.contact-left h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #151515;
}
.contact-left p {
    color: #6c6c6c;
    margin-bottom: 30px;
    font-size: 16px;
    line-height: 1.7;
}
.contact-details {
    list-style: none;
    padding: 0;
}
.contact-details li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    font-size: 16px;
    color: #4a4a4a;
}
.contact-details li .contact-icon {
    width: 48px;
    height: 48px;
    background: #fc6c1e20;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #fc6c1e;
}
.contact-details li a {
    color: #4a4a4a;
}
.contact-details li a:hover {
    color: #fc6c1e;
}
.form-group {
    margin-bottom: 20px;
}
.form-group input, .form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    font-size: 14px;
    font-family: inherit;
    transition: 0.3s;
    background: #ffffff;
}
.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: #fc6c1e;
    box-shadow: 0 0 0 3px #fc6c1e20;
}
.form-group textarea {
    resize: vertical;
    min-height: 120px;
}
.submit-btn {
    background-color: #fc6c1e;
    color: white;
    border: none;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    cursor: pointer;
    transition: 0.3s;
    width: 100%;
}
.submit-btn:hover {
    background-color: #e55a0e;
    transform: translateY(-2px);
}
@media (max-width: 992px) {
    .contact-left h2 { font-size: 30px; }
}

/*AAAAAAAAAAAAAAAAAAAAAAA!!! CONTACT STYLES ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/

/*AAAAAAAAAAAAAAAAAAAAAAA!!! FOOTER STYLES STARTS !!!AAAAAAAAAAAAAAAAAAA*/

.footer-classic {
    position: relative;
    background-color: #1a1a1a;
}
.parallax-container {
    position: relative;
    overflow: hidden;
}
.material-parallax {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}
.material-parallax img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15;
}
.parallax-content {
    position: relative;
    z-index: 1;
}
.section-sm { padding: 60px 0 40px 0; }
.footer-classic h4 {
    color: #ffffff;
    text-transform: uppercase;
    margin-bottom: 25px;
    font-size: 18px;
    letter-spacing: 1px;
    font-weight: 600;
}
.footer-grid {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -20px;
}
.footer-col {
    flex: 1;
    padding: 0 20px;
    min-width: 200px;
}
.footer-classic p { color: #c0c0c0; line-height: 1.6; margin-bottom: 20px; }
.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    list-style: none;
    padding-left: 0;
    flex-wrap: wrap;
}
.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    font-size: 20px;
    color: #ffffff;
    border: 2px solid #ffd632;
    border-radius: 50%;
    transition: all 0.3s;
    background: transparent;
    text-decoration: none;
}
.social-icon:hover {
    color: #1a1a1a;
    background-color: #ffd632;
    border-color: #ffd632;
    transform: translateY(-3px);
}
.working-hours { list-style: none; padding-left: 0; }
.working-hours li { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.1); color: #c0c0c0; flex-wrap: wrap; }
.working-hours li span:first-child { color: #ffffff; font-weight: 500; }
.quick-links { list-style: none; padding-left: 0; }
.quick-links li { margin-bottom: 12px; }
.quick-links a { color: #c0c0c0; transition: 0.2s; font-size: 14px; display: inline-block; }
.quick-links a:hover { color: #ffd632; transform: translateX(5px); }
.contact-info { list-style: none; padding-left: 0; }
.contact-info li { display: flex; align-items: flex-start; margin-bottom: 18px; gap: 12px; color: #c0c0c0; word-break: break-word; }
.contact-info .contact-icon { min-width: 24px; font-size: 18px; color: #ffd632; }
.contact-info a { color: #c0c0c0; }
.contact-info a:hover { color: #ffd632; }
.contact-phone { font-size: 18px; font-weight: 600; }
.footer-bottom { padding: 20px 0; background-color: rgba(0, 0, 0, 0.5); border-top: 1px solid rgba(255,255,255,0.1); text-align: center; }
.copyright { color: #9b9b9b; font-size: 14px; }
.copyright a { color: #9b9b9b; text-decoration: underline; }
.copyright a:hover { color: #ffd632; }
@media (max-width: 992px) {
    .footer-grid { flex-wrap: wrap; }
    .footer-col { flex: 0 0 50%; margin-bottom: 40px; }
}
@media (max-width: 768px) {
    .footer-col { flex: 0 0 100%; text-align: center; }
    .social-icons { justify-content: center; }
    .working-hours li { justify-content: center; gap: 12px; flex-direction: column; align-items: center; }
    .contact-info li { justify-content: center; flex-direction: column; align-items: center; text-align: center; }
    .quick-links { text-align: center; }
}

/*AAAAAAAAAAAAAAAAAAAAAAA!!! FOOTER STYLES ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/

/* ========== PRODUCT SPECIFICATIONS SECTION CSS - START ========== */

.product-specs-section {
    padding: 80px 0;
    background: #FEFAF5;
    font-family: 'Poppins', 'Lato', sans-serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.specs-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 50px;
    background: #FFFFFF;
    border-radius: 28px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    padding: 40px 35px;
    transition: all 0.3s ease;
    border: 1px solid rgba(201, 160, 61, 0.2);
}

/* Left Column: Image */
.specs-image {
    flex: 1;
    min-width: 280px;
    text-align: center;
}

.specs-image img {
    max-width: 100%;
    border-radius: 24px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.specs-image img:hover {
    transform: scale(1.02);
}

/* Right Column: Content */
.specs-content {
    flex: 1;
    min-width: 300px;
}

.specs-subtitle {
    color: #C9A03D;
    font-size: 14px;
    letter-spacing: 2px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.specs-content h2 {
    color: #4A3520;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
}

.specs-description {
    color: #5a4a38;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
    font-family: 'Lato', sans-serif;
}

/* Table Styles */
.specs-table-wrapper {
    overflow-x: auto;
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
    background: #FFFFFF;
    border-radius: 16px;
    overflow: hidden;
}

.specs-table tbody tr {
    border-bottom: 1px solid #f0e6d8;
}

.specs-table tbody tr:last-child {
    border-bottom: none;
}

.spec-label {
    padding: 14px 16px;
    font-weight: 700;
    color: #4A3520;
    background-color: #FDF8F0;
    width: 38%;
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
    border-right: 1px solid #f0e6d8;
}

.spec-value {
    padding: 14px 16px;
    color: #6b5a48;
    font-size: 15px;
    font-family: 'Lato', sans-serif;
    background-color: #FFFFFF;
}

/* Responsive Design */
@media (max-width: 768px) {
    .product-specs-section {
        padding: 50px 0;
    }
    
    .specs-container {
        flex-direction: column;
        padding: 30px 20px;
        gap: 30px;
    }
    
    .specs-content h2 {
        font-size: 26px;
    }
    
    .spec-label {
        padding: 10px 12px;
        font-size: 13px;
    }
    
    .spec-value {
        padding: 10px 12px;
        font-size: 13px;
    }
    
    .specs-description {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .specs-container {
        padding: 20px 15px;
    }
    
    .spec-label, .spec-value {
        padding: 8px 10px;
        font-size: 12px;
    }
}

/* ========== PRODUCT SPECIFICATIONS SECTION CSS - END ========== */