/* ================================================
   MASTER CSS FILE FOR MOVERSCO
   All styles are organized with clear section markers
   ================================================ */

/*AAAAAAAAAAAAAAAAAAAAAAA!!! RESET & BASE STYLES STARTS !!!AAAAAAAAAAAAAAAAAAA*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Nunito Sans', 'Segoe UI', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #777777;
    background-color: #ffffff;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

[class*="col-"] {
    padding: 0 15px;
}

.col-12 { width: 100%; }
.col-6 { width: 50%; }
.col-4 { width: 33.33%; }
.col-3 { width: 25%; }

@media (max-width: 992px) {
    .col-md-12 { width: 100%; }
    .col-md-6 { width: 50%; }
    .col-md-4 { width: 33.33%; }
    .col-md-3 { width: 25%; }
}

@media (max-width: 768px) {
    .col-sm-12 { width: 100%; }
    .col-sm-6 { width: 50%; }
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}
/*AAAAAAAAAAAAAAAAAAAAAAA!!! RESET & BASE STYLES ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/

/*AAAAAAAAAAAAAAAAAAAAAAA!!! COLOR VARIABLES STARTS !!!AAAAAAAAAAAAAAAAAAA*/
:root {
    --ts-skincolor: #e32222;
    --ts-skincolor-dark: #313437;
    --ts-skincolor-light: #f3f3f3;
}
/*AAAAAAAAAAAAAAAAAAAAAAA!!! COLOR VARIABLES ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/

/*AAAAAAAAAAAAAAAAAAAAAAA!!! BUTTON STYLES STARTS !!!AAAAAAAAAAAAAAAAAAA*/
.ts-btn {
    display: inline-block;
    background: var(--ts-skincolor);
    color: #fff;
    padding: 14px 35px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.ts-btn:hover {
    background: var(--ts-skincolor-dark);
    color: #fff;
}

.ts-btn-white {
    background: #fff;
    color: var(--ts-skincolor-dark);
}

.ts-btn-white:hover {
    background: var(--ts-skincolor-dark);
    color: #fff;
}

.ts-btn-outline {
    background: transparent;
    border: 2px solid var(--ts-skincolor);
    color: var(--ts-skincolor);
}

.ts-btn-outline:hover {
    background: var(--ts-skincolor);
    color: #fff;
}
/*AAAAAAAAAAAAAAAAAAAAAAA!!! BUTTON STYLES ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/

/*AAAAAAAAAAAAAAAAAAAAAAA!!! HEADER & TOPBAR STYLES STARTS !!!AAAAAAAAAAAAAAAAAAA*/
.ts-topbar {
    background: #1a1c1e;
    color: #aaa;
    font-size: 13px;
    padding: 8px 0;
}

.ts-topbar .container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
}

.ts-topbar-contact span {
    margin-right: 20px;
}

.ts-topbar-contact i {
    margin-right: 5px;
    color: var(--ts-skincolor);
}

.ts-main-header {
    background: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    position: relative;
    z-index: 100;
}

.ts-main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    min-height: 100px;
}

.ts-logo img {
    max-height: 45px;
    width: auto;
}

.ts-header-info {
    display: flex;
    gap: 30px;
    align-items: center;
}

.ts-info-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ts-info-icon {
    width: 45px;
    height: 45px;
    background: var(--ts-skincolor);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ts-info-icon i {
    color: #fff;
    font-size: 20px;
}

.ts-info-content h6 {
    font-size: 12px;
    color: #999;
    margin-bottom: 3px;
}

.ts-info-content h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--ts-skincolor-dark);
    margin: 0;
}
/*AAAAAAAAAAAAAAAAAAAAAAA!!! HEADER & TOPBAR STYLES ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/

/*AAAAAAAAAAAAAAAAAAAAAAA!!! NAVIGATION MENU STYLES STARTS !!!AAAAAAAAAAAAAAAAAAA*/
.ts-nav-wrapper {
    background: var(--ts-skincolor);
}

.ts-nav-wrapper .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ts-nav-menu ul {
    display: flex;
    margin: 0;
    padding: 0;
}

.ts-nav-menu ul li {
    position: relative;
}

.ts-nav-menu ul li a {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 25px 18px;
    display: block;
    letter-spacing: 0.5px;
}

.ts-nav-menu ul li a:hover,
.ts-nav-menu ul li.active a {
    background: rgba(0,0,0,0.1);
}

.ts-nav-menu ul li ul {
    position: absolute;
    top: 100%;
    left: 0;
    width: 220px;
    background: var(--ts-skincolor-dark);
    flex-direction: column;
    visibility: hidden;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s;
    z-index: 99;
}

.ts-nav-menu ul li:hover ul {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.ts-nav-menu ul li ul li a {
    padding: 12px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.ts-header-right {
    display: none;
}

.ts-mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.ts-mobile-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: #fff;
    margin: 5px 0;
    border-radius: 2px;
}
/*AAAAAAAAAAAAAAAAAAAAAAA!!! NAVIGATION MENU STYLES ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/

/*AAAAAAAAAAAAAAAAAAAAAAA!!! STICKY HEADER STYLES STARTS !!!AAAAAAAAAAAAAAAAAAA*/
.ts-sticky-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--ts-skincolor);
    z-index: 1000;
    transform: translateY(-100%);
    transition: transform 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.ts-sticky-header.active {
    transform: translateY(0);
}

.ts-sticky-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 70px;
}

.ts-sticky-header .ts-logo img {
    max-height: 35px;
}

.ts-sticky-header .ts-nav-menu ul li a {
    padding: 22px 15px;
}

.ts-sticky-header .ts-header-right {
    display: none;
}
/*AAAAAAAAAAAAAAAAAAAAAAA!!! STICKY HEADER STYLES ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/

/*AAAAAAAAAAAAAAAAAAAAAAA!!! SLIDER SECTION STYLES STARTS !!!AAAAAAAAAAAAAAAAAAA*/
.ts-slider {
    position: relative;
    height: 750px;
    overflow: hidden;
}

.ts-slider-slides {
    position: relative;
    height: 100%;
}

.ts-slider-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.ts-slider-slide.active {
    opacity: 1;
    z-index: 1;
}

.ts-slider-slide-1 { background-image: url('img/webanne.jpg'); }
.ts-slider-slide-2 { background-image: url('https://moversco-demo.pbminfotech.com/elementor-demo2/wp-content/uploads/sites/17/2018/12/banner-04.jpg'); }

.ts-slider-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);
    z-index: 2;
}

.ts-slider-content {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: center;
}

.ts-slider-box {
    background: var(--ts-skincolor);
    padding: 50px 45px;
    max-width: 500px;
}

.ts-slider-box h1 {
    color: #fff;
    font-size: 48px;
    line-height: 1.2;
    font-weight: 800;
    margin-bottom: 20px;
}

.ts-slider-box p {
    color: rgba(255,255,255,0.85);
    margin-bottom: 30px;
    font-size: 18px;
    line-height: 1.5;
}

.ts-slider-dots {
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 10;
}

.ts-slider-dots .dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    margin: 0 5px;
    cursor: pointer;
    transition: all 0.3s;
}

.ts-slider-dots .dot.active {
    background: var(--ts-skincolor);
    transform: scale(1.2);
}
/*AAAAAAAAAAAAAAAAAAAAAAA!!! SLIDER SECTION STYLES ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/

/*AAAAAAAAAAAAAAAAAAAAAAA!!! ABOUT SECTION STYLES STARTS !!!AAAAAAAAAAAAAAAAAAA*/
.ts-section {
    padding: 90px 0;
}

.ts-section-gray {
    background: var(--ts-skincolor-light);
}

.ts-section-dark {
    background: var(--ts-skincolor-dark);
    color: rgba(255,255,255,0.8);
}

.ts-section-subtitle {
    color: var(--ts-skincolor);
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 15px;
    font-weight: 700;
}

.ts-section-title {
    font-size: 40px;
    line-height: 1.2;
    color: var(--ts-skincolor-dark);
    margin-bottom: 25px;
    font-weight: 800;
}

.ts-about-text {
    padding-right: 30px;
}

.ts-about-image {
    position: relative;
    margin-left: 30px;
}

.ts-about-image img {
    position: relative;
    z-index: 2;
    width: 100%;
}

.ts-about-image:after {
    content: '';
    position: absolute;
    top: -30px;
    left: -30px;
    width: 100%;
    height: 100%;
    border: 8px solid var(--ts-skincolor);
    z-index: 1;
}

.ts-fid-box {
    text-align: center;
    margin-top: 30px;
    padding: 20px;
    background: var(--ts-skincolor-light);
    border-radius: 10px;
}

.ts-fid-icon {
    font-size: 45px;
    color: var(--ts-skincolor);
    margin-bottom: 15px;
}

.ts-fid-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--ts-skincolor-dark);
}

.ts-fid-title {
    font-size: 16px;
    font-weight: 600;
    margin-top: 10px;
}
/*AAAAAAAAAAAAAAAAAAAAAAA!!! ABOUT SECTION STYLES ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/

/*AAAAAAAAAAAAAAAAAAAAAAA!!! SERVICES SECTION STYLES STARTS !!!AAAAAAAAAAAAAAAAAAA*/
.ts-service-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    margin-bottom: 30px;
    transition: all 0.3s;
}

.ts-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.ts-service-img img {
    width: 100%;
    height: auto;
}

.ts-service-content {
    padding: 30px;
    text-align: center;
}

.ts-service-content h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
}

.ts-service-content h3 a {
    color: var(--ts-skincolor-dark);
}

.ts-service-content p {
    margin-bottom: 25px;
}

.ts-service-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.ts-service-link {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--ts-skincolor);
    letter-spacing: 1px;
    padding: 8px 20px;
    border: 2px solid var(--ts-skincolor);
    display: inline-block;
}

.ts-service-link:hover {
    background: var(--ts-skincolor);
    color: #fff;
}

.ts-service-enquiry {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--ts-skincolor-dark);
    letter-spacing: 1px;
    padding: 8px 20px;
    border: 2px solid var(--ts-skincolor-dark);
    display: inline-block;
}

.ts-service-enquiry:hover {
    background: var(--ts-skincolor-dark);
    color: #fff;
}
/*AAAAAAAAAAAAAAAAAAAAAAA!!! SERVICES SECTION STYLES ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/

/*AAAAAAAAAAAAAAAAAAAAAAA!!! FOOTER SECTION STYLES STARTS !!!AAAAAAAAAAAAAAAAAAA*/
.ts-footer {
    background: var(--ts-skincolor-dark);
    color: rgba(255,255,255,0.7);
}

.ts-footer-contact-bar {
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding: 50px 0;
}

.ts-footer-contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.ts-footer-contact-icon {
    width: 70px;
    height: 70px;
    background: var(--ts-skincolor);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ts-footer-contact-icon i {
    font-size: 30px;
    color: #fff;
}

.ts-footer-contact-text h4 {
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 5px;
    color: rgba(255,255,255,0.6);
}

.ts-footer-contact-text p {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.ts-footer-widgets {
    padding: 70px 0 50px;
}

.ts-widget-title {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 25px;
    padding-bottom: 15px;
    position: relative;
}

.ts-widget-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--ts-skincolor);
}

.ts-footer-logo {
    margin-bottom: 20px;
}

.ts-footer-logo img {
    max-height: 45px;
}

.ts-footer-links ul li {
    margin-bottom: 12px;
}

.ts-footer-links ul li a {
    color: rgba(255,255,255,0.7);
}

.ts-footer-links ul li a:hover {
    color: var(--ts-skincolor);
    padding-left: 5px;
}

.ts-footer-newsletter input {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255,255,255,0.1);
    border: none;
    color: #fff;
    margin-bottom: 15px;
}

.ts-footer-newsletter input::placeholder {
    color: rgba(255,255,255,0.5);
}

.ts-copyright {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 25px 0;
    text-align: center;
    font-size: 14px;
}

.ts-copyright a {
    color: var(--ts-skincolor);
}
/*AAAAAAAAAAAAAAAAAAAAAAA!!! FOOTER SECTION STYLES ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/

/*AAAAAAAAAAAAAAAAAAAAAAA!!! ICON FONTS STYLES STARTS !!!AAAAAAAAAAAAAAAAAAA*/
.ts-icon-phone:before { content: "📞"; }
.ts-icon-email:before { content: "✉️"; }
.ts-icon-location:before { content: "📍"; }
.ts-icon-smile:before { content: "😊"; }
.ts-icon-box:before { content: "📦"; }
.ts-icon-headset:before { content: "🎧"; }
/*AAAAAAAAAAAAAAAAAAAAAAA!!! ICON FONTS STYLES ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/

/*AAAAAAAAAAAAAAAAAAAAAAA!!! RESPONSIVE STYLES STARTS !!!AAAAAAAAAAAAAAAAAAA*/
@media (max-width: 1100px) {
    .ts-header-info { display: none; }
    .ts-nav-menu ul li a { padding: 25px 12px; font-size: 13px; }
}

@media (max-width: 992px) {
    .ts-nav-menu { display: none; }
    .ts-mobile-toggle { display: block; }
    .ts-main-header .container { min-height: 80px; }
    .ts-slider { height: 550px; }
    .ts-slider-box h1 { font-size: 36px; }
    .ts-section-title { font-size: 32px; }
    .ts-about-image:after { display: none; }
    .ts-about-image { margin-left: 0; margin-top: 30px; }
    .ts-about-text { padding-right: 0; }
}

@media (max-width: 768px) {
    .ts-slider { height: 450px; }
    .ts-slider-box { padding: 30px 25px; }
    .ts-slider-box h1 { font-size: 28px; }
    .ts-section { padding: 60px 0; }
    .ts-section-title { font-size: 28px; }
    .ts-footer-contact-item { margin-bottom: 30px; }
    .ts-footer-widgets [class*="col-"] { margin-bottom: 40px; }
}

@media (max-width: 576px) {
    .ts-topbar { display: none; }
    .ts-slider { height: 400px; }
    .ts-slider-box { padding: 30px 25px; }
    .ts-slider-box h1 { font-size: 24px; }
    .ts-slider-box p { font-size: 14px; }
    .ts-btn { padding: 10px 25px; font-size: 12px; }
}
/*AAAAAAAAAAAAAAAAAAAAAAA!!! RESPONSIVE STYLES ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/

/* ========== GALLERY SECTION ========== */
.ts-gallery-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    aspect-ratio: 4 / 3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-icon {
    font-size: 40px;
    color: white;
    background: rgba(255, 255, 255, 0.2);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* ========== MODAL POPUP ========== */
.gallery-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.modal-image {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.modal-close {
    position: absolute;
    top: 25px;
    right: 35px;
    color: white;
    font-size: 45px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    z-index: 10000;
}

.modal-close:hover {
    color: #ff6b35;
}

/* ========== GET IN TOUCH SECTION ========== */
.ts-contact-section {
    padding: 80px 0;
    background: #ffffff;
}

.contact-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 50px;
}

/* Left Column - Info */
.contact-info {
    flex: 1;
    min-width: 280px;
    background: #fef9f5;
    padding: 35px 30px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.info-card {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 1px solid #e8e0d9;
}

.info-card:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.info-icon {
    font-size: 32px;
    background: #ff6b35;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.info-text h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #1a2b3e;
}

.info-text p {
    color: #5a6e7c;
    line-height: 1.5;
    font-size: 15px;
}

/* Right Column - Form */
.contact-form {
    flex: 1.2;
    min-width: 280px;
    background: #ffffff;
    padding: 35px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border: 1px solid #f0eae4;
}

.form-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.form-group {
    margin-bottom: 22px;
    width: 100%;
}

.form-group.half {
    flex: 1;
    min-width: 140px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 15px;
    font-family: inherit;
    transition: 0.2s;
    background: #fefefe;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff6b35;
    box-shadow: 0 0 0 3px rgba(255,107,53,0.1);
}

.submit-btn {
    background: #ff6b35;
    color: white;
    border: none;
    padding: 14px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 40px;
    cursor: pointer;
    transition: 0.3s;
    width: auto;
    display: inline-block;
}

.submit-btn:hover {
    background: #e55a2b;
    transform: translateY(-2px);
}

.form-success {
    margin-top: 18px;
    padding: 12px;
    background: #d4edda;
    color: #155724;
    border-radius: 8px;
    text-align: center;
    font-size: 14px;
}

/* ========== RESPONSIVE (Mobile) ========== */
@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 18px;
    }
    
    .contact-wrapper {
        flex-direction: column;
    }
    
    .contact-info, .contact-form {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .ts-gallery-section, .ts-contact-section {
        padding: 50px 0;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    
    .gallery-item {
        aspect-ratio: 1 / 1;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .info-card {
        gap: 12px;
    }
    
    .info-icon {
        width: 45px;
        height: 45px;
        font-size: 24px;
    }
    
    .info-text h4 {
        font-size: 18px;
    }
    
    .modal-close {
        top: 15px;
        right: 20px;
        font-size: 35px;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .contact-info, .contact-form {
        padding: 25px 20px;
    }
    
    .submit-btn {
        width: 100%;
        text-align: center;
    }
}



/* ========== OUR PRODUCT SECTION (CSS ONLY) ========== */

/* Product Section Wrapper */
.product-specs-wrapper {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
}

/* Left Column - Image */
.product-image-col {
    flex: 1;
    min-width: 280px;
}

.product-main-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.product-main-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.product-main-image:hover img {
    transform: scale(1.02);
}

/* Right Column - Info */
.product-info-col {
    flex: 1;
    min-width: 280px;
}

/* Specifications Table */
.specs-table-wrapper {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    margin-bottom: 25px;
}

.specs-title {
    font-size: 22px;
    font-weight: 700;
    color: #1a2b4c;
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f5a623;
    display: inline-block;
}

.product-specs-table {
    width: 100%;
    border-collapse: collapse;
}

.product-specs-table tr {
    border-bottom: 1px solid #eee;
}

.product-specs-table tr:last-child {
    border-bottom: none;
}

.product-specs-table td {
    padding: 12px 8px;
    vertical-align: top;
}

.spec-label {
    font-weight: 700;
    color: #1a2b4c;
    width: 40%;
    font-size: 15px;
}

.spec-value {
    color: #555;
    font-size: 15px;
}

/* Short About */
.product-short-about {
    background: #fff5e8;
    border-left: 4px solid #f5a623;
    border-radius: 8px;
    padding: 18px 22px;
    margin-bottom: 25px;
}

.about-title {
    font-size: 18px;
    font-weight: 700;
    color: #1a2b4c;
    margin-bottom: 10px;
}

.product-short-about p {
    color: #555;
    line-height: 1.6;
    margin: 0;
    font-size: 14px;
}

/* Bulk Order Info */
.bulk-order-info {
    background: linear-gradient(135deg, #1a2b4c 0%, #243b6b 100%);
    border-radius: 12px;
    padding: 22px;
    display: flex;
    gap: 18px;
    align-items: flex-start;
    transition: transform 0.3s ease;
}

.bulk-order-info:hover {
    transform: translateY(-3px);
}

.bulk-icon {
    font-size: 42px;
    background: rgba(255,255,255,0.15);
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.bulk-content {
    flex: 1;
}

.bulk-content h4 {
    color: #f5a623;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.bulk-content p {
    color: #e0e0e0;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 15px;
}

.bulk-contact {
    display: flex;
    gap: 20px;
    margin-bottom: 18px;
    flex-wrap: wrap;
}

.bulk-contact span {
    color: #fff;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.bulk-btn {
    background: #f5a623;
    color: #1a2b4c;
    border: none;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    display: inline-block;
    text-decoration: none;
    transition: all 0.3s ease;
}

.bulk-btn:hover {
    background: #ffbc4a;
    transform: translateX(5px);
}

/* ===== RESPONSIVE STYLES ===== */
@media screen and (max-width: 992px) {
    .product-specs-wrapper {
        gap: 30px;
    }
    
    .spec-label {
        width: 45%;
    }
}

@media screen and (max-width: 768px) {
    .product-specs-wrapper {
        flex-direction: column;
        gap: 25px;
    }
    
    .product-image-col,
    .product-info-col {
        min-width: 100%;
    }
    
    .specs-title {
        font-size: 20px;
    }
    
    .product-specs-table td {
        padding: 10px 6px;
    }
    
    .spec-label,
    .spec-value {
        font-size: 14px;
    }
    
    .bulk-order-info {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .bulk-contact {
        justify-content: center;
    }
    
    .bulk-icon {
        margin-bottom: 5px;
    }
}

@media screen and (max-width: 480px) {
    .spec-label {
        width: 50%;
    }
    
    .bulk-contact {
        flex-direction: column;
        gap: 8px;
        align-items: center;
    }
    
    .specs-table-wrapper {
        padding: 15px;
    }
    
    .product-short-about {
        padding: 15px;
    }
}



/* ========== START: LOGO SIZE FIX - LARGER ON MOBILE & DESKTOP ========== */

/* Main header logo - larger size */
.ts-main-header .ts-logo img,
.ts-sticky-header .ts-logo img {
    height: 70px !important;
    width: auto !important;
    max-height: none !important;
}

/* Footer logo */
.ts-footer-logo img {
    height: 65px !important;
    width: auto !important;
    margin-bottom: 15px;
}

/* Mobile responsive - even larger on small screens */
@media (max-width: 768px) {
    .ts-main-header .ts-logo img,
    .ts-sticky-header .ts-logo img {
        height: 55px !important;
    }
    
    .ts-footer-logo img {
        height: 50px !important;
    }
}

/* For very small phones */
@media (max-width: 480px) {
    .ts-main-header .ts-logo img,
    .ts-sticky-header .ts-logo img {
        height: 48px !important;
    }
}

/* ========== END: LOGO SIZE FIX - LARGER ON MOBILE & DESKTOP ========== */