:root {
    --primary: #0f766e;
    --secondary: #e6f2f2;
    --accent: #f59e0b;
    --dark-text: #1a1a1a;
    --light-text: #666666;
    --white: #ffffff;
    --radius: 20px;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 20px 50px rgba(0, 0, 0, 0.15);
}

html {
    scroll-behavior: smooth;
}

/* --- SPLASH SCREEN --- */
.splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: radial-gradient(circle at center, var(--primary) 0%, #083333 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.8s;
}

.splash-screen.fade-out {
    opacity: 0;
    visibility: hidden;
}

.splash-content {
    text-align: center;
    color: white;
}

.splash-logo {
    width: 120px;
    height: 120px;
    margin: 0 auto 30px;
    background: white;
    padding: 15px;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    animation: splashLogoAnim 1.2s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
    opacity: 0;
    transform: scale(0.5);
}

.splash-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.splash-name {
    font-size: 42px;
    font-weight: 900;
    letter-spacing: 2px;
    margin-bottom: 10px;
    opacity: 0;
    transform: translateY(20px);
    animation: splashFadeUp 0.8s ease forwards 0.5s;
}

.splash-name span {
    color: var(--accent);
}

.splash-tagline {
    font-size: 16px;
    opacity: 0;
    letter-spacing: 1px;
    transform: translateY(20px);
    animation: splashFadeUp 0.8s ease forwards 0.7s;
}

.splash-loader {
    width: 50px;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    margin: 40px auto 0;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.splash-loader::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--accent);
    animation: splashLoad 2s ease infinite;
}

@keyframes splashLogoAnim {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes splashFadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes splashLoad {
    to {
        left: 100%;
    }
}

/* --- BASE STYLES --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', 'Poppins', sans-serif;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

body {
    background-color: var(--white);
    color: var(--dark-text);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

.container {
    max-width: 1600px;
    /* Further increased for a wider look */
    margin: 0;
    /* Removed 'auto' to anchor content to the left */
    padding: 0 5%;
    /* Percentage padding for better spacing on large monitors */
}

/* --- NAVBAR --- */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 1000;
    padding: 12px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
}

#navbar.scrolled {
    padding: 12px 0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(16px, 2vw, 22px);
    font-weight: 700;
    letter-spacing: -0.5px;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    white-space: nowrap;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.03);
}

.logo img {
    height: 38px;
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

.logo span {
    background: linear-gradient(90deg, #f59e0b, #fbbf24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

/* --- NAV LINKS & INTERACTIONS --- */
.nav-links {
    display: flex;
    gap: 32px;
}

/* Mobile Menu Styles (Hidden by Default) */
.nav-links.mobile-active {
    display: flex !important;
    position: fixed;
    top: 0;
    right: 0;
    left: auto;
    width: 280px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    gap: 30px;
    box-shadow: -10px 0 25px rgba(0, 0, 0, 0.1);
    transform: translateX(100%);
    animation: slideInRight 0.4s ease forwards;
}

@keyframes slideInRight {
    to { transform: translateX(0); }
}

.nav-links.mobile-active li {
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 0.5s ease forwards;
}

.nav-links.mobile-active a {
    color: var(--primary) !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    padding: 10px 0;
}

.nav-links.mobile-active li:nth-child(1) {
    animation-delay: 0.1s;
}

.nav-links.mobile-active li:nth-child(2) {
    animation-delay: 0.2s;
}

.nav-links.mobile-active li:nth-child(3) {
    animation-delay: 0.3s;
}

.nav-links.mobile-active li:nth-child(4) {
    animation-delay: 0.4s;
}

.nav-links.mobile-active li:nth-child(5) {
    animation-delay: 0.5s;
}

/* Mobile Menu Header (Inside mobile-active nav-links) */
.mobile-menu-header {
    display: none;
    width: 100%;
    padding: 20px 25px;
    position: absolute;
    top: 0;
    left: 0;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-links.mobile-active .mobile-menu-header {
    display: flex;
}

.mobile-logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mobile-logo-container img {
    height: 38px;
    /* Optimized for the square logo shape */
    width: auto;
    object-fit: contain;
}

.mobile-logo-text {
    font-size: 15px;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.5px;
    line-height: 1.1;
}

.mobile-logo-text span {
    color: var(--accent);
}

.mobile-close {
    font-size: 24px;
    color: var(--primary);
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: -10px;
}

.nav-links a {
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding: 5px 0;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-links a.active {
    color: var(--primary);
}

.mobile-toggle {
    display: none;
    font-size: 24px;
    color: var(--primary);
    cursor: pointer;
    padding: 10px 14px;
    margin-right: -10px;
    border-radius: 8px;
    transition: background 0.3s ease;
    align-items: center;
    justify-content: center;
}

.mobile-toggle:hover {
    background: rgba(15, 92, 92, 0.05);
}

/* --- BUTTONS --- */
.btn {
    padding: 16px 36px;
    border-radius: var(--radius);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.btn-primary {
    background: var(--accent);
    color: var(--white);
}

.btn-primary:hover {
    background: #e68315;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(247, 147, 30, 0.3);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
}

.btn-icon {
    width: 55px;
    height: 55px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 20px;
    box-shadow: 0 8px 20px rgba(15, 92, 92, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    padding: 0 !important;
    margin: 0 !important;
    border: none !important;
    overflow: hidden;
}

.btn-icon i {
    margin: 0 !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    height: 100% !important;
}

.btn-icon:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 12px 25px rgba(15, 92, 92, 0.3);
}

.btn-whatsapp {
    background: #25D366;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.2);
}

.contact-card p {
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.contact-card .btn-icon {
    flex-shrink: 0;
}

.md-contact-wrapper {
    gap: 20px;
}

.md-contact-name {
    white-space: nowrap;
}

/* --- MANAGING DIRECTOR SECTION --- */
.md-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    align-items: center;
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05); /* Soft shadow */
    border: 1px solid var(--secondary);
}

.md-image-col {
    display: flex;
    justify-content: center;
    align-items: center;
}

.md-photo {
    width: 100%;
    max-width: 320px;
    height: auto;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.md-content-col p {
    font-size: 15.5px;
    line-height: 1.7;
    color: var(--light-text);
    margin-bottom: 20px;
}

.md-content-col p:last-child {
    margin-bottom: 0;
}

.md-content-col strong {
    color: var(--dark-text);
    font-weight: 700;
}

/* --- HERO SECTION --- */
.hero {
    padding-top: 180px;
    padding-bottom: 120px;
    min-height: 100vh;
    background: linear-gradient(135deg, rgba(15, 92, 92, 0.92), rgba(15, 92, 92, 0.75)), url('https://images.pexels.com/photos/3938022/pexels-photo-3938022.jpeg?auto=compress&cs=tinysrgb&w=1600');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-badge {
    color: var(--accent);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 4px;
    display: block;
    margin-bottom: 15px;
    font-size: 14px;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(247, 147, 30, 0.1), transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

.hero-content {
    max-width: 850px;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: clamp(32px, 5vw, 72px);
    line-height: 1.15;
    font-weight: 800;
    margin-bottom: 25px;
    letter-spacing: -2px;
}

.hero h1 span {
    color: var(--accent);
    display: block;
}

.hero p {
    font-size: clamp(16px, 2vw, 20px);
    line-height: 1.7;
    margin-bottom: 45px;
    max-width: 650px;
    opacity: 0.95;
    min-height: 120px; /* Reserves space for typing animation to prevent background shrink/flicker */
}

.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-btns .btn {
    min-width: 200px;
    justify-content: center;
}

.why-grid .reveal>div>div {
    transition: all 0.3s ease;
    padding: 15px;
    border-radius: var(--radius);
}

.why-grid .reveal>div>div:hover {
    background: var(--secondary);
    transform: translateX(10px);
}

.why-grid div i {
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.why-grid div:hover i {
    transform: scale(1.2) rotate(5deg);
}

/* --- CARDS --- */
.card {
    background: var(--white);
    padding: 35px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: var(--shadow-hover);
    border-color: rgba(15, 92, 92, 0.1);
}

.card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--primary);
    transition: height 0.3s ease;
}

.card:hover::after {
    height: 100%;
}

/* --- PRODUCT CATEGORIES --- */
#products {
    overflow: clip;
    position: relative;
    width: 100%;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    width: 100%;
}

.text-center {
    text-align: center !important;
}


.section-header span {
    color: var(--accent);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 13px;
    display: block;
    margin-bottom: 15px;
}

.section-header h2 {
    font-size: 42px;
    font-weight: 900;
    color: var(--primary);
    line-height: 1.2;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--accent);
    border-radius: 2px;
}

/* For left-aligned section headers */
.section-header[style*="text-align: left"] h2::after {
    left: 0;
    transform: none;
}

/* --- PRODUCT CATEGORIES --- */
.about-hero-image {
    width: 100%;
    margin-bottom: 40px;
}

.about-hero-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    object-fit: cover;
    box-shadow: var(--shadow);
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.cat-card i {
    font-size: 40px;
    color: var(--primary);
    margin-bottom: 20px;
    display: block;
}

.cat-card h3 {
    margin-bottom: 15px;
}

.cat-card p {
    color: var(--light-text);
    font-size: 14px;
}

/* --- SEARCH --- */
.search-container {
    max-width: 600px;
    margin: 0 auto 40px auto;
    position: relative;
}

.search-container input {
    width: 100%;
    padding: 18px 25px 18px 50px;
    border-radius: 50px;
    border: 2px solid var(--secondary);
    outline: none;
    font-size: 16px;
    transition: all 0.3s ease;
}

.search-container i {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary);
}

.search-container input:focus {
    border-color: var(--primary);
}

/* --- ACCORDION --- */
.accordion-item {
    margin-bottom: 15px;
    overflow: hidden;
}

.accordion-header {
    width: 100%;
    padding: 20px 30px;
    background: var(--white);
    border: 1px solid var(--secondary);
    border-radius: var(--radius);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    gap: 15px;
    /* Added gap for flex items */
}

.accordion-header h4 {
    margin: 0;
    font-weight: 700;
    font-size: 18px;
    color: var(--primary);
    flex: 1;
    /* Allow heading to take available space and wrap */
}

.accordion-header i {
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-header i {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out;
    background: var(--secondary);
    border-radius: 0 0 var(--radius) var(--radius);
}

.accordion-item.active .accordion-content {
    max-height: 2000px;
    padding: 30px;
}

.product-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 15px;
}

.product-item {
    background: var(--white);
    padding: 15px 20px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}

.product-item i {
    color: var(--accent);
    font-size: 10px;
}

/* --- QUALITY GRID --- */
.quality-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 1050px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .quality-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

.quality-item {
    display: flex;
    gap: 20px;
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.quality-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.quality-icon {
    width: 60px;
    height: 60px;
    background: var(--secondary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary);
    flex-shrink: 0;
    transition: transform 0.3s ease, background 0.3s ease;
}

.quality-item:hover .quality-icon {
    transform: scale(1.1) rotate(5deg);
    background: var(--primary);
    color: var(--white);
}

.quality-item h4 {
    margin-bottom: 8px;
    font-size: 18px;
    color: var(--dark-text);
}

.quality-item p {
    color: var(--light-text);
    font-size: 14px;
    line-height: 1.6;
}

/* --- FOOTER --- */
footer {
    background: #083333;
    color: rgba(255, 255, 255, 0.85);
    /* Increased contrast */
    padding: 100px 0 10px; /* Severely reduced to fix bottom space */
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-logo {
    color: var(--white);
    margin-bottom: 20px;
}

.footer-info p {
    color: #999;
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-col h4 {
    color: var(--white);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 12px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--accent);
}

.footer-col ul li {
    margin-bottom: 15px;
}

.footer-col ul li a {
    color: #999;
    font-size: 14px;
}

.footer-col ul li a:hover {
    color: var(--white);
    padding-left: 5px;
}

.contact-info li {
    display: flex;
    gap: 15px;
    color: #999;
    font-size: 14px;
}

.contact-info i {
    color: var(--primary);
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
    color: #666;
    font-size: 13px;
}

/* --- GRID LAYOUTS & SPACING --- */
.about-grid,
.why-grid,
.contact-grid,
.address-grid {
    display: grid;
    gap: 60px;
    align-items: center;
}

.about-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.why-grid {
    grid-template-columns: 1fr 1.2fr;
}

.contact-grid {
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: start;
}

.dispatch-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.address-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch;
}

/* --- IMAGE ALIGNMENT & CONSISTENCY --- */
.equal-img {
    width: 100%;
    height: 240px;
    /* Fixed height for grid images */
    object-fit: cover;
    /* Crops image to fill dimensions without distortion */
    border-radius: 12px;
    margin-bottom: 20px;
    display: block;
}

/* --- ABOUT --- */
.about-img-container {
    position: relative;
    max-width: 100%;
}

.about-img {
    width: 100%;
    border-radius: var(--radius);
    object-fit: cover;
}

.about-badge {
    position: absolute;
    bottom: -30px;
    left: 30px;
    background: var(--white);
    padding: 25px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-hover);
    border-left: 5px solid var(--primary);
    z-index: 10;
}

.about-badge h3 {
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 5px;
    line-height: 1;
}

.about-badge p {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark-text);
}

.team-img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow-hover);
}

/* --- INTERACTIVE PHONE LINKS --- */
a[href^="tel:"] {
    transition: all 0.3s ease;
    display: inline-block;
}

a[href^="tel:"]:hover {
    color: var(--accent) !important;
    transform: scale(1.02);
}

/* --- FLOATING BUTTONS --- */
.floating-btns {
    position: fixed;
    bottom: 24px;
    right: 16px;
    /* Moved slightly inward */
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 16px;
    /* Added spacing between buttons */
}

.float-btn {
    width: 50px;
    height: 50px;
    background: var(--white);
    color: var(--primary);
    border-radius: 50%;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    padding: 0 !important;
    margin: 0 !important;
    overflow: hidden;
}

.float-btn i {
    margin: 0 !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    height: 100% !important;
}

.float-btn:hover {
    transform: translateY(-5px) scale(1.1);
}

.whatsapp-btn {
    background: #25D366;
    color: var(--white);
}

.back-to-top {
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* --- ICON FIX --- */
i {
    display: inline-block;
    line-height: 1;
}

/* Ensure Font Awesome icons render properly */
.fa,
.fas,
.fab {
    font-family: "Font Awesome 6 Free", "Font Awesome 6 Brands";
    font-weight: 900;
}

/* Icon alignment fix */
.btn-icon i,
.float-btn i {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* --- PREMIUM FOOTER (Amazon Style) --- */
body {
    overflow-x: hidden;
}

.premium-footer {
    background: #0f3d3e;
    color: #e5e7eb;
    width: 100%;
    margin: 0;
    padding-top: 60px;
    font-family: 'Inter', sans-serif;
    border-top: 1px solid #1e293b;
    position: relative;
}

.premium-footer .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.premium-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-column h4 {
    color: #ffffff;
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 25px;
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 15px;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 35px;
    height: 3px;
    background: var(--accent);
    border-radius: 2px;
}

.premium-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    margin-bottom: 20px;
    transition: transform 0.3s;
}

.premium-logo:hover {
    transform: scale(1.02);
}

.logo-icon {
    color: #14b8a6;
    font-size: 28px;
}

.logo-text {
    font-size: 24px;
    font-weight: 800;
    color: #ffffff;
}

.logo-accent {
    color: #f59e0b;
}

.brand-desc {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 24px;
    margin-top: 15px;
    max-width: 300px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: var(--accent);
    color: #ffffff;
    transform: translateY(-2px);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 14px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    padding-left: 0;
}

.footer-links a:hover {
    color: var(--accent);
    transform: translateX(6px);
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.footer-contact i {
    color: #34d399; /* Soft green */
    font-size: 18px;
    width: 24px;
    text-align: center;
    flex-shrink: 0;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-contact a:hover {
    color: #ffffff;
}

/* Bottom Bar */
.premium-footer-bottom {
    background: transparent;
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.premium-footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    margin: 0;
}

.bottom-links {
    display: flex;
    align-items: center;
    gap: 16px;
}

.bottom-links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.bottom-links a:hover {
    color: #f59e0b;
}

.bottom-links .divider {
    color: #475569;
}

/* Responsive */
@media (max-width: 992px) {
    .premium-footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px;
    }
}

@media (max-width: 768px) {
    .premium-footer-grid {
        grid-template-columns: 1fr;
        gap: 45px;
        text-align: center;
    }

    .footer-column h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .brand-desc {
        max-width: 100%;
        margin: 15px auto 25px auto;
    }

    .footer-logo, .social-icons, .footer-contact li {
        justify-content: center;
        text-align: center;
    }

    .premium-footer .footer-container {
        padding: 0 24px;
    }

    .bottom-flex {
        flex-direction: column;
        text-align: center;
        justify-content: center;
    }
}

/* ============================= */
/* 🔥 RESPONSIVE FINAL FIX */
/* ============================= */

/* ---------- LARGE DEVICES (DESKTOP < 1200px) ---------- */
@media (max-width: 1200px) {
    .container {
        padding: 0 40px;
    }

    .hero {
        padding-top: 140px;
        padding-bottom: 100px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* ---------- TABLETS ---------- */
@media (max-width: 992px) {

    /* Navbar */
    .nav-links {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

    /* Layout Fix */
    .about-grid,
    .why-grid,
    .contact-grid,
    .dispatch-grid,
    .address-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero {
        text-align: center;
        padding-top: 130px;
    }

    .hero-btns {
        justify-content: center;
        flex-wrap: wrap;
    }

    .section-header h2 {
        font-size: 32px;
    }
}

/* ---------- MOBILE DEVICES ---------- */
@media (max-width: 768px) {

    .container {
        padding: 0 20px;
    }

    /* Navbar Fix */
    .nav-content {
        height: auto;
    }

    .logo {
        font-size: 18px;
        gap: 8px;
    }

    .logo img {
        height: 34px;
    }

    /* Hero */
    .hero {
        padding-top: 120px;
        padding-bottom: 80px;
        background-attachment: scroll;
        /* FIX for mobile lag */
    }

    .hero h1 {
        font-size: 28px;
        line-height: 1.3;
    }

    .hero p {
        font-size: 15px;
    }

    /* Buttons */
    .btn {
        padding: 14px 20px;
        font-size: 12px;
    }

    /* Cards */
    .card {
        padding: 25px;
    }

    /* Section spacing */
    .section-header {
        margin-bottom: 40px;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .premium-footer-grid {
        grid-template-columns: 1fr;
    }
}

/* ---------- SMALL MOBILE ---------- */
@media (max-width: 480px) {

    .logo {
        font-size: 16px;
    }

    .hero h1 {
        font-size: 24px;
    }

    .hero p {
        font-size: 14px;
    }

    .btn {
        width: 100%;
    }

    .hero-btns {
        flex-direction: column;
        gap: 12px;
    }
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ============================= */
/* 🔥 FOOTER LOGO  */
/* ============================= */

.footer-logo {
    color: white;
    font-size: 26px;
    font-weight: 900;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 12px;
    text-transform: uppercase;
}

/* BRAND ACCENT LINE */
.footer-logo::before {
    content: '';
    width: 4px;
    height: 32px;
    background: var(--accent);
    border-radius: 2px;
    display: inline-block;
}

/* ICON STYLING */
.footer-logo i {
    display: none; /* Hide flask icon per instructions */
}

/* TEXT COLORS */
.footer-logo span {
    color: var(--accent);
}

/* NO EXTRA ICON HOVER EFFECT */
.footer-logo:hover {
    opacity: 0.95;
}

/* ============================= */
/* 🔥 ABOUT SECTION CLEAN STYLE */
/* ============================= */

.about {
    padding: 80px 20px;
}

.about .container {
    max-width: 1100px;
    margin: auto;
}

/* IMAGE */
.about-image {
    text-align: center;
    margin-bottom: 40px;
}

.about-image img {
    width: 100%;
    max-width: 850px;
    /* 🔥 controls laptop size */
    height: auto;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: var(--shadow);
    transition: transform 0.4s ease;
}

.about-image img:hover {
    transform: scale(1.02);
}

/* CONTENT */
.about-content {
    max-width: 800px;
    margin: auto;
    text-align: center;
}

.section-header span {
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
}

.section-header h2 {
    font-size: 32px;
    line-height: 1.4;
    margin-top: 10px;
}

.about-content p {
    color: var(--light-text);
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* FEATURES */
.about-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
}

.feature i {
    color: var(--primary);
    font-size: 22px;
}

/* ============================= */
/* 📱 MOBILE RESPONSIVE */
/* ============================= */

@media (max-width: 768px) {
    .about {
        padding: 50px 15px;
    }

    .section-header h2 {
        font-size: 24px;
    }

    .about-content p {
        font-size: 15px;
    }

    .about-image img {
        border-radius: 12px;
    }
}

/* ============================= */
/* 💻 LARGE SCREEN CONTROL */
/* ============================= */

@media (min-width: 1200px) {
    .about-image img {
        max-width: 700px;
        /* 🔥 perfect laptop size */
    }
}

/* ============================= */
/* 🔥 FIX WEIRD SPACING */
/* ============================= */

.about {
    padding: 60px 20px;
}

/* IMAGE CONTROL */
.about-image img {
    max-width: 600px;
    /* reduce height impact */
}

/* CONTENT WIDTH */
.about-content {
    max-width: 650px;
}

/* REDUCE GAP */
.about-image {
    margin-bottom: 20px;
    /* was too big before */
}

/* TEXT SIZE TUNING */
.section-header h2 {
    font-size: 28px;
}

.about-content p {
    font-size: 16px;
    line-height: 1.6;
}

/* FEATURES COMPACT */
.about-features {
    gap: 20px;
}

/* ============================= */
/* 🔥 DEFAULT = MOBILE FIRST */
/* ============================= */

.about-wrapper {
    display: flex;
    flex-direction: column;
    /* mobile stack */
    align-items: center;
    gap: 30px;
    max-width: 1100px;
    margin: auto;
    text-align: center;
}

/* IMAGE */
.about-image img {
    width: 100%;
    max-width: 600px;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

/* CONTENT */
.about-content {
    max-width: 650px;
}

/* FEATURES */
.about-features {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* ============================= */
/* 💻 LAPTOP / DESKTOP */
/* ============================= */

@media (min-width: 992px) {
    .about-wrapper {
        flex-direction: row;
        /* 🔥 SIDE BY SIDE */
        align-items: center;
        justify-content: space-between;
        gap: 60px;
        text-align: left;
    }

    .about-image {
        flex: 1;
    }

    .about-content {
        flex: 1;
    }

    .about-image img {
        max-width: 500px;
        /* control size */
    }

    .about-features {
        justify-content: flex-start;
    }
}

/* LAYOUT FIX */
.about-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
}

/* IMAGE */
.about-image {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
}

.about-image img {
    width: 100%;
    max-width: 450px;
    /* 🔥 reduced */
    height: auto;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

/* 🔥 EXPERIENCE BADGE */
.experience-badge {
    position: absolute;
    bottom: -20px;
    left: 20px;
    background: white;
    padding: 12px 18px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;
}

.experience-badge h3 {
    color: var(--primary);
    font-size: 20px;
    margin: 0;
}

.experience-badge p {
    font-size: 12px;
    color: var(--light-text);
}

/* CONTENT */
.about-content {
    flex: 1;
    max-width: 500px;
    /* 🔥 reduced for balance */
}

/* 🔥 SMALL FEATURE CARDS */
.about-features {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.feature-card {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    padding: 10px 14px;
    /* 🔥 smaller */
    border-radius: 8px;
    box-shadow: var(--shadow);
    font-size: 14px;
}

.feature-card i {
    color: var(--primary);
    font-size: 16px;
}

/* 📱 RESPONSIVE */
@media (max-width: 992px) {
    .about-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .about-features {
        justify-content: center;
    }

    .experience-badge {
        left: 50%;
        transform: translateX(-50%);
    }
}

/* --- MOBILE NAV OVERLAY --- */
.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    z-index: 999; /* Lower than #navbar (1000) so sidebar stays on top */
    opacity: 0;
    visibility: hidden;
    pointer-events: none; /* Crucial: Prevent click interception while hidden */
    transition: all 0.4s ease;
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* --- PREMIUM DESKTOP HERO ENHANCEMENTS (min-width: 992px) --- */
@media (min-width: 992px) {
    .hero {
        display: flex !important;
        align-items: center !important;
        justify-content: flex-start !important;
        text-align: left !important;
        min-height: 100vh !important;
        padding-top: 100px !important;
        padding-bottom: 100px !important;
        /* Premium Teal/Green Gradient Overlay: Stronger on the left for text contrast */
        background: linear-gradient(90deg, 
            rgba(15, 118, 110, 0.98) 0%, 
            rgba(15, 118, 110, 0.85) 45%, 
            rgba(15, 118, 110, 0.4) 100%), 
            url('https://images.pexels.com/photos/3938022/pexels-photo-3938022.jpeg?auto=compress&cs=tinysrgb&w=1600') !important;
        background-size: cover !important;
        background-position: center !important;
        background-attachment: fixed !important;
    }

    .hero .container {
        margin: 0 !important;
        padding: 0 8% !important; /* Increased padding for wide screens */
        max-width: 100% !important;
    }

    .hero-content {
        max-width: 650px !important;
        margin-left: 0 !important;
        margin-right: auto !important;
        text-align: left !important;
        position: relative;
        z-index: 10;
    }

    .hero-badge {
        display: inline-block !important;
        text-align: left !important;
        font-size: 13px !important;
        font-weight: 700 !important;
        letter-spacing: 3px !important;
        margin-bottom: 25px !important;
        background: rgba(255, 255, 255, 0.1) !important;
        color: var(--accent) !important;
        padding: 8px 20px !important;
        border-radius: 50px !important;
        backdrop-filter: blur(5px);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .hero h1 {
        font-size: 64px !important;
        font-weight: 800 !important;
        line-height: 1.2 !important;
        letter-spacing: -1.5px !important;
        text-align: left !important;
        margin-bottom: 35px !important;
        text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3) !important;
        color: var(--white) !important;
    }

    .hero h1 span {
        display: block !important;
        color: var(--accent) !important;
        margin-top: 5px;
    }

    .hero p {
        font-size: 20px !important;
        line-height: 1.7 !important;
        margin-bottom: 50px !important;
        max-width: 600px !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        text-align: left !important;
        opacity: 0.95 !important;
        color: rgba(255, 255, 255, 0.9) !important;
    }

    .hero-btns {
        display: flex !important;
        flex-direction: row !important;
        justify-content: flex-start !important;
        gap: 20px !important;
    }

    .hero-btns .btn {
        margin: 0 !important;
        min-width: 190px !important;
        padding: 18px 36px !important;
        font-size: 14px !important;
        border-radius: 14px !important;
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    }

    .hero-btns .btn-primary {
        background: var(--accent) !important;
        box-shadow: 0 10px 25px rgba(245, 158, 11, 0.3) !important;
    }

    .hero-btns .btn-secondary {
        border: 2px solid rgba(255, 255, 255, 0.8) !important;
        background: rgba(255, 255, 255, 0.1) !important;
        backdrop-filter: blur(5px);
    }

    .hero-btns .btn:hover {
        transform: translateY(-8px) !important;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3) !important;
    }

    .hero-btns .btn-secondary:hover {
        background: var(--white) !important;
        color: var(--primary) !important;
    }
}