/* Base styles and variables */
:root {
    --primary-color: #1C3D8F; /* Brand Blue */
    --primary-hover: #152d6b;
    --accent-color: #B02A2A; /* Brand Red */
    --accent-hover: #8f2121;
    --text-main: #333333; /* Dark Grey / Black */
    --text-light: #666666;
    --bg-white: #ffffff;
    --bg-light: #f5f5f5;
    --border-color: #e5e5e5;
    --whatsapp-color: #25D366;
    --whatsapp-hover: #128C7E;
    
    --font-main: 'Inter', sans-serif;
    
    --transition-speed: 0.2s;
    --header-height: 60px; /* Reduced further to 60px */
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-main);
    color: var(--text-main);
    background-color: var(--bg-light);
    line-height: 1.6;
    /* Prevent scroll when mobile menu is open */
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-speed) ease;
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    margin-top: 2rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 20px; /* Reduced padding slightly for compact header */
    font-size: 0.9rem; /* Reduced font slightly for compact header */
    font-weight: 600;
    border-radius: 4px; /* Flat modern minimal design */
    border: none;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
    text-align: center;
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--bg-white);
    border: 2px solid transparent; /* Match border width of outline buttons so sizes equal out */
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    color: var(--bg-white);
}

.btn-blue {
    background-color: var(--primary-color);
    color: var(--bg-white);
    border: 2px solid var(--primary-color);
}

.btn-blue:hover {
    background-color: var(--bg-white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-icon {
    padding: 8px; /* Reduced padding slightly for compact header */
    width: 36px;  /* Reduced width slightly for compact header */
    height: 36px; /* Reduced height slightly for compact header */
    font-size: 1.1rem; /* Reduced icon size slightly for compact header */
    border-radius: 50%; /* Circle for icon buttons */
}

.btn-whatsapp {
    background-color: transparent;
    color: var(--whatsapp-color);
    border: 2px solid var(--whatsapp-color);
}

.btn-whatsapp:hover {
    background-color: var(--whatsapp-color);
    color: var(--bg-white);
}

.btn-whatsapp-mobile {
    border: 2px solid var(--whatsapp-color);
    color: var(--whatsapp-color);
    background: transparent;
}
.btn-whatsapp-mobile:hover {
    background: var(--whatsapp-color);
    color: white;
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--bg-white);
}


/* Header */
.main-header {
    background-color: var(--primary-color);
    height: var(--header-height);
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--primary-color); /* Clean flat border instead of shadow */
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

/* Scrolled state */
.main-header.scrolled {
    height: 52px; /* Even smaller height on scroll */
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05); /* Very subtle professional shadow */
    border-bottom-color: transparent;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

/* Logo */
.logo-link {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 40px; /* Adjust this value as needed to fit the nav bar cleanly */
    width: auto;
    display: block;
}

/* Desktop Navigation */
.desktop-nav {
    display: none; /* Mobile first */
}

.nav-links {
    display: flex;
    gap: 80px; /* Added more spacing between menu items */
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-main);
    position: relative;
    padding: 8px 0;
}

.main-header .nav-link {
    color: var(--bg-white);
}

.nav-link:hover {
    color: var(--primary-color);
}

.main-header .nav-link:hover,
.main-header .nav-link.active {
    color: var(--bg-white);
    opacity: 0.9;
}

/* Active state */
.nav-link.active {
    color: var(--primary-color);
    font-weight: 600;
}

/* Hover effect under link */
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width var(--transition-speed) ease;
}

.main-header .nav-link::after {
    background-color: var(--bg-white);
}

.nav-link.active::after,
.nav-link:hover::after {
    width: 100%;
}


/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.desktop-actions {
    display: none; /* Mobile first */
}

.contact-link {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 8px;
}

.main-header .contact-link {
    color: var(--bg-white);
}

.contact-link i {
    font-size: 1rem;
    color: var(--text-light);
}

.main-header .contact-link i {
    color: var(--bg-white);
    opacity: 0.9;
}

.contact-link:hover {
    color: var(--primary-hover);
}

.main-header .contact-link:hover {
    color: var(--bg-white);
    opacity: 0.8;
}

/* Mobile Menu Toggle (Hamburger) */
.mobile-menu-toggle {
    display: flex;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.hamburger-box {
    width: 24px;
    height: 20px;
    display: inline-block;
    position: relative;
}

.hamburger-inner {
    display: block;
    top: 50%;
    margin-top: -1px;
}

.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
    width: 24px;
    height: 2px;
    background-color: var(--bg-white);
    position: absolute;
    transition: transform 0.15s ease;
}

.hamburger-inner::before, .hamburger-inner::after {
    content: "";
    display: block;
}

.hamburger-inner::before {
    top: -8px;
}

.hamburger-inner::after {
    bottom: -8px;
}

/* Hamburger Active State */
.mobile-menu-toggle.is-active .hamburger-inner {
    transform: rotate(45deg);
}

.mobile-menu-toggle.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0;
}

.mobile-menu-toggle.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(-90deg);
}

/* Mobile Navigation Overlay */
.mobile-nav-overlay {
    position: fixed;
    top: var(--header-height);
    left: 0;
    width: 100%;
    height: auto;
    max-height: calc(100vh - var(--header-height));
    background-color: var(--bg-white);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    overflow-y: auto;
    padding: 24px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05); /* very subtle, clean shadow */
    border-top: 1px solid var(--border-color);
}

.mobile-nav-overlay.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Fix gap above mobile menu when header is shrunken (scrolled) */
.main-header.scrolled ~ .mobile-nav-overlay {
    top: 52px;
    max-height: calc(100vh - 52px);
}

.mobile-nav {
    display: flex;
    flex-direction: column;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

.mobile-nav-links .nav-link {
    font-size: 1.1rem;
    font-weight: 500;
    display: block;
    padding: 8px 0;
}

.mobile-actions {
    display: flex;
    flex-direction: column;
    gap: 20px;
    border-top: 1px solid var(--border-color);
    padding-top: 24px;
}

.mobile-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mobile-buttons .btn {
    width: 100%;
}

/* Media Queries */
@media (min-width: 992px) {
    .mobile-menu-toggle {
        display: none;
    }
    
    .desktop-nav {
        display: block;
    }
    
    .desktop-actions {
        display: flex;
    }
    
    .mobile-nav-overlay {
        display: none;
    }
}

/* Hero Section */
.hero-section {
    position: relative;
    padding: 180px 0; /* Increased top/bottom padding */
    min-height: 90vh; /* Increased minimum height */
    display: flex;
    align-items: center;
    background-image: url('../images/products/warehouse_steel_hero.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--bg-white);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(20, 30, 48, 0.95) 0%, rgba(36, 59, 85, 0.75) 50%, rgba(36, 59, 85, 0.2) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 100%; /* Changed from 800px to allow text to fully left-align to container edge */
    padding-left: 5%; /* Shifts text away from the absolute left margin */
}

.hero-title {
    font-size: 3.8rem;
    font-weight: 800;
    color: var(--bg-white);
    line-height: 1.15;
    margin-bottom: 1.5rem;
    margin-top: 0;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    line-height: 1.6;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    align-items: center;
}

.hero-btn {
    padding: 0 32px; /* Horizontal padding, vertical handled by fixed height */
    height: 56px; /* Absolute strictly identical height for both buttons */
    min-width: 180px; /* Absolute minimum width to guarantee identical widths */
    font-size: 1.05rem;
    border-radius: 4px; /* Flat modern minimal design */
    font-weight: 600;
}

.btn-outline-light {
    background-color: transparent;
    border: 2px solid var(--bg-white);
    color: var(--bg-white);
}

.btn-outline-light:hover {
    background-color: var(--bg-white);
    color: var(--text-main);
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.9rem;
}

/* Base Section Styles */
.section-padding {
    padding: 80px 0;
}

.section-padding-compact {
    padding: 60px 0; /* Tighter vertical padding */
}

.bg-light {
    background-color: #f8fafc; /* Very light cool grey */
}

.text-center {
    text-align: center;
}

.section-header {
    margin-bottom: 50px;
}

.section-header-compact {
    margin-bottom: 30px; /* Reduced vertical spacing */
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
    margin-top: 0;
}

.section-title-large {
    font-size: 2.8rem; /* Slightly more prominent */
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 10px; /* Tighter margin below header */
    margin-top: 0;
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px; /* Reduced gap between cards */
}

/* Specific 3-column override for the dedicated Products page */
.products-page-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px; /* Give them slightly more breathing room on the full page */
}

.product-card {
    background-color: var(--bg-white);
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08); /* Soft professional shadow on hover */
    border-color: #cbd5e1;
}

.product-img-wrapper {
    width: 100%;
    height: 220px; /* Increased height to show more of the products */
    background-color: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #e2e8f0;
    overflow: hidden; /* Force images to stay inside */
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Fills the width, crops any extra height */
    object-position: center; /* Keeps the subject centered while cropping */
    mix-blend-mode: multiply; /* Helps isolated images blend perfectly with wrapper background */
}

.product-info {
    padding: 16px; /* Reduced from 24px */
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-title {
    font-size: 1.15rem; /* Slightly smaller */
    font-weight: 600;
    color: var(--text-main);
    margin-top: 0;
    margin-bottom: 6px; /* Tighter margin */
}

.product-desc {
    font-size: 0.9rem; /* Slightly smaller text */
    color: var(--text-light);
    line-height: 1.4; /* Tighter line height */
    margin-bottom: 12px; /* Tighter bottom margin */
    flex: 1; /* Pushes the button to the bottom */
}

.product-card .btn {
    align-self: flex-start;
    width: 100%;
    text-align: center;
}

/* Products Action Button Wrapper */
.products-action {
    display: flex;
    justify-content: center; /* Center horizontally across all devices globally */
    align-items: center;
    margin-top: 40px;
    width: 100%;
}

.text-link-all {
    font-size: 1.15rem;
    font-weight: 600; /* Reduced from 700 */
    color: var(--accent-color); /* Bright Red */
    display: inline-flex;
    align-items: center;
    gap: 8px; /* Space between text and icon */
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color var(--transition-speed) ease;
}

.text-link-all:hover {
    color: var(--accent-hover);
}

/* Why Choose Us Section */
.choose-section {
    background-color: var(--bg-white); /* White background per request */
}

.choose-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.choose-left {
    display: flex;
    flex-direction: column;
}

.choose-desc {
    font-size: 1.15rem;
    color: var(--text-main);
    line-height: 1.7;
    font-weight: 500;
    margin-bottom: 30px; /* Space between description and features */
}

/* Industries We Serve Section */
.industries-section {
    background-color: #F5F7FB; /* Premium light grey background */
}

.features-grid-2x2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

/* Feature Item Grid (Used in Industries We Serve) */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 30px; /* Increased padding for premium feel */
    background-color: var(--bg-white);
    border: none; /* Removed border for cleaner look */
    border-radius: 16px; /* Softer, more modern rounded corners */
    box-shadow: 0 4px 15px rgba(0,0,0,0.03); /* Base soft shadow */
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(28, 61, 143, 0.1); /* Stronger, slightly blue-tinted shadow on hover */
}

/* Feature Row Item (Used in Why Choose Us left column) */
.feature-item-row {
    display: flex;
    align-items: center; /* Vertically center icon with text */
    padding: 16px;
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.feature-item-row:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05); /* Softer shadow for smaller cards */
    border-color: #cbd5e1;
}
.feature-icon {
    width: 68px;
    height: 68px;
    background-color: rgba(28, 61, 143, 0.05); /* Even subtler background */
    color: var(--primary-color);
    border-radius: 50%; /* Circle shape layout */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

.feature-icon-sm {
    width: 48px;
    height: 48px;
    font-size: 1.25rem;
    margin-right: 16px; /* Space between icon and text */
    flex-shrink: 0; /* Prevent icon from squishing */
}

.feature-item:hover .feature-icon,
.feature-item-row:hover .feature-icon {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.feature-title {
    font-size: 1.05rem; /* Clean and sharp inside smaller row cards */
    font-weight: 600; 
    color: var(--text-main);
    margin: 0;
    line-height: 1.4;
    letter-spacing: -0.2px; 
}

/* Image Column Styles */
.choose-right {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.choose-image-wrapper {
    width: 100%;
    height: 100%;
    max-height: 500px; /* Give it a reasonable max height */
    border-radius: 12px; /* Soft rounded corners as requested */
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08); /* Clean smooth shadow for depth */
}

.choose-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Contact Section */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: stretch; /* Stretch both columns to equal height */
}

.contact-info {
    display: flex;
    flex-direction: column;
    justify-content: center; /* Vertically center content */
    gap: 30px;
    padding: 30px;
    background-color: var(--bg-white);
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05); /* Clean smooth shadow */
    height: 100%; /* Fill the stretched column */
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(28, 61, 143, 0.05);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-method h4 {
    margin: 0 0 5px 0;
    font-size: 1.1rem;
    color: var(--text-main);
}

.phone-numbers {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.phone-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.phone-name {
    color: var(--text-light);
}

.phone-link {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;
}

.phone-link:hover {
    color: var(--accent-light);
    text-decoration: underline;
}

.contact-method p {
    margin: 0;
    color: var(--text-light);
    line-height: 1.5;
}

.contact-method a {
    color: var(--primary-color);
    transition: color var(--transition-speed) ease;
}

.contact-method a:hover {
    color: var(--primary-hover);
}

.contact-form-container {
    padding: 30px;
    background-color: var(--bg-white);
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    height: 100%; /* Fill the stretched column */
    display: flex;
    flex-direction: column;
}

.contact-form {
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Push the submit button to the bottom using auto margin *if* there's extra space */
.contact-form .btn-block {
    margin-top: auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media (max-width: 576px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-main);
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-family: inherit;
    font-size: 1rem;
    color: var(--text-main);
    transition: border-color var(--transition-speed) ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
}

textarea.form-control {
    resize: vertical;
}

.btn-block {
    width: 100%;
    padding: 14px;
    font-size: 1.1rem;
}

/* Footer Section */
.site-footer {
    background-color: var(--primary-color);
    color: #e2e8f0;
    padding-top: 60px;
    margin-top: auto;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo .logo-img-footer {
    height: 40px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1); /* Makes the logo white for dark bg */
}

.footer-about {
    line-height: 1.6;
    color: #cbd5e1;
    font-size: 0.95rem;
    margin-bottom: 24px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 50%;
    font-size: 1.1rem;
    transition: all var(--transition-speed) ease;
}

.footer-social a:hover {
    background-color: var(--accent-color);
    transform: translateY(-3px);
}

.footer-heading {
    font-size: 1.25rem;
    color: var(--bg-white);
    margin-top: 0;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color var(--transition-speed) ease;
}

.footer-links a:hover {
    color: var(--primary-light);
}

.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #cbd5e1;
}

.footer-contact-list i {
    color: var(--primary-light);
    margin-top: 4px;
}

.footer-contact-list a {
    color: #cbd5e1;
    transition: color var(--transition-speed) ease;
}

.footer-contact-list a:hover {
    color: var(--primary-light);
}

.footer-bottom {
    padding: 24px 0;
    text-align: center;
    color: #94a3b8;
    font-size: 0.9rem;
}

.footer-bottom p {
    margin: 0;
}

/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--whatsapp-color);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 14px rgba(0,0,0,0.15);
    z-index: 1000;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    color: white;
}

@media (max-width: 992px) {
    .container {
        padding: 0 40px; /* Increase side padding for tablet to push content from borders */
    }

    /* Hero Section Tablet */
    .hero-content {
        padding: 0 40px !important; /* Tablet padding to match container */
        margin: 0 auto !important;
        text-align: center !important;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-title {
        font-size: 2.8rem; /* Scaled down for tablet */
        text-align: center;
    }
    
    .hero-subtitle {
        font-size: 1.15rem;
        text-align: center;
    }
    
    .hero-buttons {
        justify-content: center;
        width: 100%;
    }

    /* Keep overlay consistent */
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .products-action {
        text-align: center;
        width: 100%;
        display: flex;
        justify-content: center; /* Center horizontally via flex */
    }
    
    .choose-layout,
    .contact-layout {
        grid-template-columns: 1fr; /* Stack layout sections vertically on tablet */
        gap: 30px;
    }

    .features-grid-2x2 {
        grid-template-columns: 1fr; /* Stack features in singular column on left side on tablet */
    }

    .footer-top {
        grid-template-columns: 1fr 1fr; /* 2 columns on tablet */
    }

    .footer-col.brand-col {
        grid-column: span 2; /* Brand spans full width on tablet */
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 12px; /* Reclaim space on mobile sides */
    }

    .section-padding {
        padding: 60px 0;
    }

    .section-padding-compact {
        padding: 40px 0; /* Further reduction on mobile */
    }
    
    .section-title {
        font-size: 2rem;
    }

    .section-title-large {
        font-size: 2.2rem;
    }

    .products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)); /* Force exactly equal columns regardless of content */
        gap: 16px;
    }

    .choose-layout,
    .contact-layout {
        grid-template-columns: 1fr; /* Stack vertically on mobile */
        gap: 40px;
    }
    
    .phone-numbers {
        flex-direction: column;
        gap: 15px;
    }

    .phone-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 2px;
    }
    
    .section-header-compact {
        text-align: center; /* Center header on mobile */
    }

    .features-grid,
    .features-grid-2x2 {
        grid-template-columns: 1fr; /* Stack natively on mobile */
        gap: 16px;
    }

    .choose-desc {
        font-size: 1rem;
        margin-bottom: 20px; 
        text-align: center;
    }

    .choose-image-wrapper {
        max-height: 350px; /* Shorter image on mobile so it doesn't take over screen */
    }

    .product-info {
        padding: 12px;
    }

    .product-title {
        font-size: 1rem;
        margin-bottom: 2px;
    }

    .product-desc {
        font-size: 0.75rem; /* Reduced to save space */
        margin-bottom: 8px; /* Tighter spacing */
        line-height: 1.2;
        display: -webkit-box;
        -webkit-line-clamp: 2; /* Limit to exactly 2 lines to save vertical space */
        line-clamp: 2; /* Standard property for line clamping */
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .product-card .btn {
        font-size: 0.75rem; /* Smaller button text to fit "Enquire Now" on one line */
        padding: 6px 8px; /* Tighter button padding */
        white-space: nowrap; /* Force single line */
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .products-action {
        margin-top: 25px; /* Less space above link on mobile */
        justify-content: center; /* Center horizontally via flex */
        width: 100%;
        text-align: center; /* Fallback centering */
    }

    .text-link-all {
        font-size: 1rem; /* Scaled down slightly for mobile */
    }
    
    .hero-section {
        padding: 120px 0; /* Proportionally increased for mobile */
        min-height: 70vh; /* Proportionally increased for mobile */
    }

    .hero-content {
        padding: 0 12px !important; /* Mobile padding to exactly match container */
        margin: 0 auto !important;
        text-align: center !important;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-top {
        grid-template-columns: 1fr; /* Single column footer on mobile */
        gap: 30px;
    }

    .footer-col.brand-col {
        grid-column: span 1;
    }

    .hero-title {
        font-size: 2rem; /* Further scaled down for mobile */
        text-align: center;
    }
    
    .hero-subtitle {
        font-size: 0.95rem; /* Smaller for mobile readability */
        text-align: center;
    }
    
    .hero-buttons {
        justify-content: center;
        width: 100%;
    }
    
    .floating-whatsapp {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.6rem;
    }
}

/* Maps Section */
.maps-section {
    padding-top: 40px;
}

.container-full {
    width: 100%;
    overflow: hidden;
}

.container-full iframe {
    transition: transform 0.3s ease;
}

.container-full iframe:hover {
    transform: scale(1.01); /* Subtle zoom instead of filter change */
}
