/* style.css - Ensaf Law Firm Theme */
/*====================================================
TABLE OF CONTENTS:
1. RESET & BASE STYLES
2. HEADER TOP STYLES
3. MENU AREA & NAVIGATION
4. HERO SLIDER STYLES
5. ABOUT SECTION STYLES
6. CLIENTS SECTION STYLES
7. FOOTER STYLES
8. RESPONSIVE STYLES
====================================================*/

/*AAAAAAAAAAAAAAAAAAAAAAA!!! RESET & BASE STYLES STARTS !!!AAAAAAAAAAAAAAAAAAA*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: #ffffff;
    color: #1a1f2c;
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/*AAAAAAAAAAAAAAAAAAAAAAA!!! RESET & BASE STYLES ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/

/*AAAAAAAAAAAAAAAAAAAAAAA!!! HEADER TOP STYLES STARTS !!!AAAAAAAAAAAAAAAAAAA*/

.header-top {
    background-color: #11131e;
    padding: 0;
}

.header-top .row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 54px;
    margin: 0;
}

.header-links ul {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    margin: 0;
    padding: 0;
    list-style: none;
    align-items: center;
}

.header-links ul li {
    display: flex;
    align-items: center;
    line-height: 1;
}

.header-links ul li i {
    margin-right: 8px;
    color: #c19a6b;
    font-size: 14px;
}

.header-links ul li a {
    color: #c0c5d0;
    text-decoration: none;
    font-size: 14px;
}

.social-links {
    display: flex;
    gap: 20px;
    align-items: center;
}

.social-links a {
    color: #c0c5d0;
    font-size: 15px;
    transition: 0.3s;
    display: flex;
    align-items: center;
}

.social-links a:hover {
    color: #c19a6b;
}

/*AAAAAAAAAAAAAAAAAAAAAAA!!! HEADER TOP STYLES ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/

/*AAAAAAAAAAAAAAAAAAAAAAA!!! MENU AREA & NAVIGATION STARTS !!!AAAAAAAAAAAAAAAAAAA*/

.menu-area {
    background: #fff;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.05);
    padding: 0;
    position: relative;
    z-index: 1050;
}

.menu-area .row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 86px;
    margin: 0;
}

.header-layout1 {
    position: relative;
    width: 100%;
}

.header-layout1 .container.header-1-container {
    padding-left: 0 !important;
    padding-right: 24px;
    max-width: 100%;
}

@media (min-width: 1200px) {
    .header-layout1 .container.header-1-container {
        padding-right: 60px;
    }
}

.header-layout1 .row {
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.header-layout1 .col-auto {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.header-logo-block {
    background-color: #f5f2ed;
    display: flex;
    align-items: center;
    align-self: stretch;
}

.header-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 40px;
    background-color: #f5f2ed;
    min-height: 140px;
}

.header-logo a {
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-logo img {
    max-height: 52px;
    width: auto;
}

.main-menu {
    display: flex;
    align-items: center;
    height: 100%;
}

.main-menu ul {
    display: flex;
    gap: 35px;
    margin: 0;
    padding: 0;
    list-style: none;
    align-items: center;
}

.main-menu ul li {
    display: flex;
    align-items: center;
}

.main-menu ul li a {
    font-weight: 600;
    color: #1a1f2c;
    font-size: 16px;
    text-decoration: none;
    display: flex;
    align-items: center;
    line-height: 1;
    padding: 10px 0;
}

.main-menu ul li a:hover {
    color: #c19a6b;
}

.header-button {
    display: flex;
    gap: 15px;
    align-items: center;
}

.icon-btn {
    background: #f5f2ed;
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.icon-btn:hover {
    background: #c19a6b;
    color: white;
}

.th-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background-color: #c19a6b;
    color: #fff;
    font-weight: 700;
    padding: 14px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 16px;
    transition: 0.3s;
    line-height: 1;
}

.th-btn:hover {
    background-color: #9e7b55;
    color: #fff;
}

.th-btn:hover i {
    transform: translateX(6px);
}

.th-btn i {
    transition: transform 0.3s;
}

.th-menu-toggle {
    background: #f5f2ed;
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

/*AAAAAAAAAAAAAAAAAAAAAAA!!! MENU AREA & NAVIGATION ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/

/*AAAAAAAAAAAAAAAAAAAAAAA!!! HERO SLIDER STYLES STARTS !!!AAAAAAAAAAAAAAAAAAA*/

.th-hero-wrapper {
    position: relative;
    overflow: hidden;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('img/hero_bg_1_1.jpg');
    background-size: cover;
    background-position: center;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #081f1d;
    opacity: 0.85;
    z-index: -1;
}

.hero-inner {
    padding: 100px 0 120px;
    position: relative;
    z-index: 2;
}

.sub-title {
    font-size: 18px;
    letter-spacing: 2px;
    color: #c19a6b;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 18px;
    text-transform: uppercase;
}

.hero-title {
    font-size: 58px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #ffffff;
}

.client-group-wrap {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.client-group-wrap .thumb img {
    width: 65px;
    border-radius: 50%;
    border: 2px solid #c19a6b;
    padding: 3px;
    background: #fff;
}

.client-group-wrap__box-title {
    font-weight: 800;
    font-size: 18px;
    color: #ffffff;
}

.client-group-wrap__box-title span {
    color: #c19a6b;
}

.client-group-wrap__box-review {
    color: #e0e0e0;
}

.client-group-wrap__box-review i {
    color: #ffb800;
}

.hero-img img {
    border-radius: 30px;
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.3);
    width: 100%;
}

.swiper-pagination-bullet {
    background: #c19a6b !important;
    opacity: 0.6;
}

.swiper-pagination-bullet-active {
    background: #c19a6b !important;
    opacity: 1;
}

/*AAAAAAAAAAAAAAAAAAAAAAA!!! HERO SLIDER STYLES ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/

/*AAAAAAAAAAAAAAAAAAAAAAA!!! ABOUT SECTION STYLES STARTS !!!AAAAAAAAAAAAAAAAAAA*/

.about-section {
    padding: 100px 0;
    background: #ffffff;
}

.img-box1 {
    display: flex;
    gap: 24px;
    align-items: stretch;
}

.img1 {
    flex: 1;
}

.img1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
}

.img2 {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.img2-top img, .img2-bottom img {
    width: 100%;
    border-radius: 24px;
}

.sec-title {
    font-size: 44px;
    font-weight: 800;
    margin: 15px 0 18px;
    color: #081f1d;
}

.sec-text {
    color: #4b5568;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 28px;
}

.checklist ul {
    list-style: none;
    padding: 0;
}

.checklist ul li {
    margin-bottom: 18px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 14px;
}

.checklist ul li i {
    color: #c19a6b;
    font-size: 24px;
}

/*AAAAAAAAAAAAAAAAAAAAAAA!!! ABOUT SECTION STYLES ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/



/*AAAAAAAAAAAAAAAAAAAAAAA!!! FOOTER STYLES STARTS !!!AAAAAAAAAAAAAAAAAAA*/

footer {
    background-color: #0c0e16;
}

.footer-wrapper {
    background: #0c0e16;
    padding-top: 70px;
}

.footer-widget h3 {
    color: white;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 28px;
}

.footer-widget ul {
    list-style: none;
    padding: 0;
}

.footer-widget ul li {
    margin-bottom: 14px;
}

.footer-widget ul li a {
    color: #b0b6cc;
    text-decoration: none;
    transition: 0.2s;
}

.footer-widget ul li a:hover {
    color: #c19a6b;
    padding-left: 5px;
}

.th-widget-about .about-text {
    margin: 24px 0 20px;
    line-height: 1.6;
    color: #b0b6cc;
}

.th-social {
    display: flex;
    gap: 18px;
    margin-top: 10px;
}

.th-social a {
    background: #1f2230;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    color: white;
    text-decoration: none;
}

.th-social a:hover {
    background: #c19a6b;
    transform: translateY(-3px);
}

.info-box {
    display: flex;
    gap: 16px;
    margin-bottom: 28px;
    align-items: flex-start;
}

.info-box_icon i {
    font-size: 24px;
    color: #c19a6b;
}

.info-contnt h4 {
    font-size: 18px;
    color: white;
    margin-bottom: 6px;
}

.info-contnt p, .info-contnt a {
    color: #b0b6cc;
    text-decoration: none;
}

.copyright-wrap {
    border-top: 1px solid #202330;
    padding: 28px 0;
    margin-top: 55px;
    text-align: center;
}

/*AAAAAAAAAAAAAAAAAAAAAAA!!! FOOTER STYLES ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/

/*AAAAAAAAAAAAAAAAAAAAAAA!!! RESPONSIVE STYLES STARTS !!!AAAAAAAAAAAAAAAAAAA*/

@media (max-width: 1200px) {
    .hero-title { font-size: 48px; }
    .header-logo { padding: 0 30px; min-height: 130px; }
    .main-menu ul { gap: 25px; }
}

@media (max-width: 992px) {
    .hero-title { font-size: 40px; }
    .main-menu { display: none; }
    .sec-title { font-size: 34px; }
    .img-box1 { flex-direction: column; }
    .header-logo { padding: 0 25px; min-height: 120px; }
    .header-logo img { max-height: 45px; }
}

@media (max-width: 768px) {
    .hero-title { font-size: 32px; }
    .hero-inner { padding: 60px 0 70px; }
    .header-logo { padding: 0 18px; min-height: 100px; }
    .header-logo img { max-height: 40px; }
    .header-layout1 .container.header-1-container { padding-right: 15px; }
    .clients-section .row .col-6 img { max-width: 100px !important; }
}

/*AAAAAAAAAAAAAAAAAAAAAAA!!! RESPONSIVE STYLES ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/


/* ===== CENTERING FIXES - WORKING VERSION ===== */

/* Top Header - Center karne ke liye */
.header-top .row {
    text-align: center;
}

.header-top .header-links ul {
    justify-content: center;
}

.header-top .social-links {
    justify-content: center;
}

/* Header Top ke columns ko center mein laana */
@media (min-width: 992px) {
    .header-top .col-auto {
        flex: 1;
    }
    .header-top .col-auto:first-child {
        text-align: center;
    }
    .header-top .col-auto:last-child {
        text-align: center;
    }
}

/* Menu Wrapper - Center karne ke liye */
.menu-wrapper {
    flex: 1 !important;
    text-align: center;
}

/* Menu items ko center mein laana */
.main-menu ul {
    justify-content: center !important;
}

/* Logo block - Bilkul same rahega, koi change nahi */
.header-logo-block {
    flex: 0 0 auto;
}

/* Header buttons - Right side pe rahenge */
.header-button {
    flex: 0 0 auto;
}

/* Responsive - Tablet aur mobile mein kuch nahi badlega */
@media (max-width: 991px) {
    .menu-wrapper {
        flex: 0 0 auto !important;
    }
    .main-menu {
        display: none;
    }
}



/* ===== PRODUCTS SECTION ===== */
.products-section {
    padding: 80px 0;
    background: #ffffff;
}

.section-header {
    margin-bottom: 50px;
}

.products-section .sub-title {
    font-size: 16px;
    letter-spacing: 2px;
    color: #c19a6b;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 15px;
}

.products-section .sec-title {
    font-size: 42px;
    font-weight: 800;
    color: #081f1d;
    margin-bottom: 15px;
}

.products-section .sec-text {
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.product-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.product-img {
    height: 280px;
    overflow: hidden;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.product-card:hover .product-img img {
    transform: scale(1.05);
}

.product-info {
    padding: 24px 20px;
    text-align: center;
}

.product-info h3 {
    font-size: 20px;
    font-weight: 700;
    color: #081f1d;
    margin-bottom: 20px;
}

.product-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.btn-read, .btn-enquiry {
    padding: 10px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: 0.3s;
}

.btn-read {
    background: transparent;
    border: 2px solid #c19a6b;
    color: #c19a6b;
}

.btn-read:hover {
    background: #c19a6b;
    color: #fff;
}

.btn-enquiry {
    background: #c19a6b;
    border: 2px solid #c19a6b;
    color: #fff;
}

.btn-enquiry:hover {
    background: #9e7b55;
    border-color: #9e7b55;
}


/* ===== GALLERY SECTION ===== */
.gallery-section {
    padding: 80px 0;
    background: #f9f9fc;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 1 / 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.gallery-overlay i {
    color: white;
    font-size: 40px;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

/* Modal Popup */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.95);
    overflow: auto;
}

.modal-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 85%;
    object-fit: contain;
    border-radius: 12px;
    animation: zoom 0.3s;
}

@keyframes zoom {
    from {transform: scale(0.7); opacity: 0;}
    to {transform: scale(1); opacity: 1;}
}

.close-modal {
    position: absolute;
    top: 25px;
    right: 40px;
    color: #fff;
    font-size: 45px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.close-modal:hover {
    color: #c19a6b;
}

@media (max-width: 768px) {
    .modal-content {
        max-width: 95%;
        max-height: 80%;
    }
    .close-modal {
        font-size: 35px;
        top: 15px;
        right: 25px;
    }
}

/* ===== GET IN TOUCH SECTION ===== */
.contact-section {
    padding: 80px 0;
    background: #ffffff;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 40px;
}

/* Left Column - Info Cards */
.contact-info {
    background: #f8f7f4;
    border-radius: 24px;
    padding: 40px 30px;
}

.info-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 35px;
}

.info-card:last-child {
    margin-bottom: 0;
}

.info-icon {
    width: 55px;
    height: 55px;
    background: #c19a6b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon i {
    font-size: 24px;
    color: white;
}

.info-details h4 {
    font-size: 20px;
    font-weight: 700;
    color: #081f1d;
    margin-bottom: 8px;
}

.info-details p, .info-details a {
    color: #555;
    text-decoration: none;
    font-size: 16px;
    transition: 0.3s;
}

.info-details a:hover {
    color: #c19a6b;
}

/* Right Column - Form */
.contact-form {
    background: #ffffff;
    border-radius: 24px;
    padding: 40px 35px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    border: 1px solid #eee;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 22px;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    font-family: inherit;
    font-size: 15px;
    transition: 0.3s;
    background: #fafafa;
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: #c19a6b;
    background: white;
    box-shadow: 0 0 0 3px rgba(193,154,107,0.1);
}

.submit-btn {
    background: #c19a6b;
    color: white;
    border: none;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.submit-btn:hover {
    background: #9e7b55;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 992px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-info {
        order: 2;
    }
    
    .contact-form {
        order: 1;
    }
}

@media (max-width: 576px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .contact-info, .contact-form {
        padding: 30px 20px;
    }
    
    .info-card {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
}


/* ========== START: HERO BANNER STYLES (WHITE TEXT FOR EXISTING THEME) ========== */

.hero-banner {
    padding: 100px 0;
    background: linear-gradient(135deg, #081f1d 0%, #0a2a27 100%);
    text-align: center;
    min-height: 400px;
    display: flex;
    align-items: center;
}

.hero-banner-wrapper {
    width: 100%;
}

.hero-banner-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    background: rgba(193, 154, 107, 0.15);
    color: #c19a6b;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 20px;
    border-radius: 40px;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 52px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
}

.hero-title span {
    color: #c19a6b;
}

.hero-divider {
    width: 80px;
    height: 3px;
    background: #c19a6b;
    margin: 0 auto;
    border-radius: 3px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-banner {
        padding: 60px 0;
        min-height: 300px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-badge {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }
}

/* ========== END: HERO BANNER STYLES ========== */


/* ========== START: PRODUCT SPECIFICATIONS SECTION STYLES ========== */

.product-specs-section {
    padding: 80px 0;
    background: #f8f9fc;
}

.specs-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

/* Left Column - Image */
.specs-image {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.specs-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s;
}

.specs-image:hover img {
    transform: scale(1.03);
}

/* Right Column */
.specs-badge {
    display: inline-block;
    background: rgba(193, 154, 107, 0.12);
    color: #c19a6b;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 40px;
    margin-bottom: 15px;
}

.specs-title {
    font-size: 36px;
    font-weight: 800;
    color: #081f1d;
    margin-bottom: 15px;
}

.specs-title span {
    color: #c19a6b;
}

.specs-divider {
    width: 70px;
    height: 3px;
    background: #c19a6b;
    margin-bottom: 28px;
    border-radius: 3px;
}

/* Table Styles */
.specs-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 25px;
}

.specs-table tr {
    border-bottom: 1px solid #e8e8e8;
}

.specs-table tr:last-child {
    border-bottom: none;
}

.specs-table td {
    padding: 14px 0;
    font-size: 15px;
}

.specs-table td:first-child {
    font-weight: 700;
    color: #081f1d;
    width: 40%;
}

.specs-table td:first-child i {
    color: #c19a6b;
    width: 28px;
    margin-right: 8px;
    font-size: 16px;
}

.specs-table td:last-child {
    color: #4b5568;
}

/* Bulk Info Box */
.specs-bulk-info {
    background: #eef2f5;
    padding: 18px 22px;
    border-radius: 16px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin: 20px 0 30px;
}

.specs-bulk-info i {
    font-size: 32px;
    color: #c19a6b;
    flex-shrink: 0;
}

.specs-bulk-info p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    color: #2c3e40;
}

.specs-bulk-info p strong {
    color: #081f1d;
}

/* Buttons */
.specs-buttons {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.specs-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #c19a6b;
    color: #fff;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.specs-btn-primary:hover {
    background: #9e7b55;
    transform: translateY(-2px);
    color: #fff;
}

.specs-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: #c19a6b;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    font-size: 14px;
    border: 2px solid #c19a6b;
    transition: all 0.3s ease;
}

.specs-btn-outline:hover {
    background: #c19a6b;
    color: #fff;
    transform: translateY(-2px);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 992px) {
    .specs-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .specs-image {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .specs-title {
        font-size: 30px;
    }
}

@media (max-width: 768px) {
    .product-specs-section {
        padding: 60px 0;
    }
    
    .specs-title {
        font-size: 28px;
    }
    
    .specs-table td {
        padding: 10px 0;
        font-size: 13px;
    }
    
    .specs-table td:first-child {
        width: 45%;
    }
    
    .specs-bulk-info {
        padding: 15px;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .specs-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .specs-btn-primary, .specs-btn-outline {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .specs-title {
        font-size: 24px;
    }
    
    .specs-table td:first-child {
        width: 50%;
    }
    
    .specs-table td {
        font-size: 12px;
    }
}

/* ========== END: PRODUCT SPECIFICATIONS SECTION STYLES ========== */