:root {
    /* Brand Colors */
    --primary: #075a96;
    --primary-dark: #001a38;
    --accent: #0b2f64;
    --accent-glow: rgba(8, 91, 150, 0.3);
    --accent-light: rgba(8, 91, 150, 0.15);
    --primary-glow: rgba(0, 43, 91, 0.3);
    --whatsapp-green: #25D366;

    /* Neutrals */
    --white: #FFFFFF;
    --white-95: rgba(255, 255, 255, 0.95);
    --white-90: rgba(255, 255, 255, 0.9);
    --white-85: rgba(255, 255, 255, 0.85);
    --white-80: rgba(255, 255, 255, 0.8);
    --white-70: rgba(255, 255, 255, 0.7);
    --white-60: rgba(255, 255, 255, 0.6);
    --white-30: rgba(255, 255, 255, 0.3);
    --white-22: rgba(255, 255, 255, 0.22);
    --white-20: rgba(255, 255, 255, 0.2);
    --white-15: rgba(255, 255, 255, 0.15);
    --white-14: rgba(255, 255, 255, 0.14);
    --white-12: rgba(255, 255, 255, 0.12);
    --white-10: rgba(255, 255, 255, 0.1);
    --white-08: rgba(255, 255, 255, 0.08);
    --white-06: rgba(255, 255, 255, 0.06);
    --white-05: rgba(255, 255, 255, 0.05);
    --white-03: rgba(255, 255, 255, 0.03);

    --bg-main: #EDF2F7;
    --bg-light: #F8FAFC;
    --footer-bg: #000D1A;
    --text-main: #1E293B;
    --text-muted: #64748B;
    --grey-border: #E2E8F0;
    --black-30: rgba(0, 0, 0, 0.3);
    --black-25: rgba(0, 0, 0, 0.25);
    --black-20: rgba(0, 0, 0, 0.2);
    --black-05: rgba(0, 0, 0, 0.05);
    --black-02: rgba(0, 0, 0, 0.02);
    --overlay-dark: rgba(0, 0, 0, 0.7);
    --overlay-light: rgba(0, 0, 0, 0.5);
    --gallery-overlay: rgba(0, 43, 91, 0.4);
    --product-overlay: rgba(0, 43, 91, 0.9);
    --card-hover-bg: rgba(1, 22, 49, 0.92);

    /* UI Tokens */
    --nav-glass: rgba(255, 255, 255, 0.85);
    --nav-solid: rgba(0, 43, 91, 0.98);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    --ease-out: cubic-bezier(0.33, 1, 0.68, 1);
    --transition-fast: 0.2s var(--ease-out);

    /* About Specific Tokens */
    --hero-overlay: linear-gradient(135deg, rgba(0, 26, 56, 0.8) 0%, rgba(0, 43, 91, 0.4) 50%, transparent 100%);
    --heading-glow: linear-gradient(to left, #FFFFFF, #B4E4FF);
    --btn-gradient-start: #001a38;
    --btn-gradient-end: #1472d6;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

html,
body {
    overflow-x: hidden;
    width: 100%;
}


body {
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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


h1,
h2,
h3,
h4 {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    letter-spacing: 0;
    line-height: 1.1;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-main);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent);
}

textarea {
    resize: vertical;
    /* Prevent horizontal resize breaking layout */
}


/* --- NAVIGATION --- */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.2rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--white-60);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 1000;
    border-bottom: 1px solid var(--white-08);
    transition: all 0.4s var(--ease-out);
}

nav.scrolled {
    padding: 0.8rem 5%;
    background: var(--white-80);
    box-shadow: var(--shadow-md);
}

nav.scrolled .logo h1 {
    color: var(--white);
}

.logo img {
    height: 40px;
    width: 150px;
    object-fit: contain;
}

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

.logo h1 {
    font-size: 1.6rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    margin: 0;
}

.nav-links a {
    text-decoration: none;
    color: var(--primary-dark);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0;
    transition: var(--transition-fast);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: var(--transition-fast);
}

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

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

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

.nav-enquiry-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.65rem 1.5rem;
    background: var(--accent);
    color: var(--white);
    text-decoration: none;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0;
    transition: all 0.3s var(--ease-out);
    box-shadow: 0 5px 15px var(--accent-glow);
    white-space: nowrap;
}

.nav-enquiry-btn i {
    font-size: 1.1rem;
}

.nav-enquiry-btn:hover {
    background: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px var(--primary-glow);
}

nav.scrolled .nav-enquiry-btn {
    background: var(--accent);
    color: var(--white);
}


/* --- SECTIONS --- */
section {
    padding: 120px 10%;
    position: relative;
}

.section-title {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    text-align: center;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 4rem;
    font-size: 1.1rem;
}

/* --- HERO --- */
.hero {
    min-height: 100vh;

    height: auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
    padding: 160px 10% 80px;
    color: var(--white);
    overflow: hidden;
    background: var(--primary-dark);
    position: relative;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out, transform 10s linear;
}

.slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(var(--overlay-light), var(--overlay-dark));
}

.slide.active {
    opacity: 1;
    transform: scale(1.1);
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    text-align: left;
    padding: 0;
    background: none;
    backdrop-filter: none;
    border: none;
    box-shadow: none;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0.5rem 1.2rem;
    background: var(--accent-light);
    border: 1px solid var(--accent);
    color: var(--white);
    border-radius: 10px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0;
    margin-bottom: 2rem;
}

.hero h1 {
    font-size: clamp(3.6rem, 5.2vw, 5.5rem);
    margin-bottom: 1.5rem;
    line-height: 0.95;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--white);
    text-shadow: 0 10px 30px var(--overlay-dark);
}

.hero h1 span {
    display: block;
    color: var(--white);
    -webkit-text-stroke: 0px transparent;
    opacity: 1;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 3.5rem;
    color: var(--white);
    opacity: 0.9;
    max-width: 550px;
    line-height: 1.6;
    border-left: 3px solid var(--accent);
    padding-left: 2rem;
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
    justify-content: flex-start;
}

/* Floating Stats/Features on Right */
.hero-features {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: flex-end;
}

.feature-tag {
    background: var(--white-05);
    backdrop-filter: blur(10px);
    border: 1px solid var(--white-10);
    padding: 1.2rem 2rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    width: 230px;
    height: 80px;
    animation: float 4s ease-in-out infinite;
}

.feature-tag:nth-child(2) {
    animation-delay: 1s;
}

.feature-tag:nth-child(3) {
    animation-delay: 2s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.feature-tag i {
    font-size: 2rem;
    color: var(--accent);
}

.feature-tag .tag-text h4 {
    font-size: 1.2rem;
    color: var(--white);
}

.feature-tag .product-info p {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 1.5rem;
}

.product-btn {
    padding: 0.5rem 1.2rem;
    background: var(--accent);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s var(--ease-out);
    display: flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    margin-top: auto;
    box-shadow: 0 5px 15px var(--accent-glow);
}

.product-btn i {
    color: var(--white);
    font-size: 1rem;
}


.product-btn:hover {
    background: var(--white);
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px var(--black-20);
}

.product-btn:hover i {
    color: var(--whatsapp-green);
    /* Keep WhatsApp green on hover for clarity */
}


.feature-tag .tag-text p {
    font-size: 0.8rem;
    opacity: 0.6;
    margin: 0;
    padding: 0;
    border: none;
}


/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 15;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.scroll-indicator:hover {
    opacity: 1;
}

.mouse {
    width: 25px;
    height: 40px;
    border: 2px solid var(--white);
    border-radius: 20px;
    position: relative;
}

.mouse::before {
    content: '';
    width: 4px;
    height: 8px;
    background: var(--white);
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
    animation: mouseScroll 2s infinite;
}

@keyframes mouseScroll {
    0% {
        opacity: 1;
        top: 6px;
    }

    100% {
        opacity: 0;
        top: 25px;
    }
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.2rem 3rem;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0;
    transition: all 0.3s var(--ease-out);
    font-size: 0.9rem;
    cursor: pointer;
}

.cta-button.primary {
    background: var(--accent);
    color: var(--white);
    box-shadow: 0 10px 25px var(--accent-glow);
}

.cta-button.primary:hover {
    background: var(--white);
    color: var(--primary);
    transform: translateY(-5px);
}

.cta-button.secondary {
    border: 2px solid var(--white-30);
    color: var(--white);
    backdrop-filter: blur(5px);
}

.cta-button.secondary:hover {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
    transform: translateY(-5px);
}


/* --- ABOUT --- */
.about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8rem;
    align-items: center;
    background: var(--white);
}

.about-image-wrap {
    position: relative;
    padding: 2.5rem 0 0 2.5rem;
}

.about-img-accent {
    position: absolute;
    top: 0;
    left: 0;
    width: 75%;
    height: 75%;
    background: var(--primary);
    border-radius: 30px;
    z-index: 0;
    opacity: 0.08;
}

.about-image {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-hover);
    height: 520px;
    z-index: 1;
}

.about-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease-out);
}

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

.about-img-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: var(--primary);
    color: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 10px 30px var(--gallery-overlay);
    backdrop-filter: blur(5px);
}

.about-img-badge i {
    color: var(--accent);
    font-size: 1.4rem;
}

.about-content {
    padding: 2rem 0;
}

.about-content .section-title {
    text-align: left;
    font-size: 2.8rem;
    line-height: 1.1;
}

.about-lead {
    font-size: 1.15rem;
    color: var(--text-main);
    font-weight: 500;
    line-height: 1.7;
    margin: 1.5rem 0 1rem;
}

.about-content>p:not(.about-lead) {
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 1rem;
}

.about-stats {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid var(--grey-border);
}

.about-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-number {
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0;
}

/* Section Badge */
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.5rem 1.2rem;
    background: var(--accent-light);
    border: 1px solid var(--accent);
    color: var(--accent);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0;
    margin-bottom: 0.5rem;
}



/* --- VALUES --- */
.values {
    background: var(--bg-main);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.value-card {
    background: var(--white);
    padding: 4rem 3rem;
    border-radius: 30px;
    text-align: center;
    transition: all 0.4s var(--ease-out);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--black-02);
}

.value-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-hover);
}

.value-card i {
    font-size: 4rem;
    margin-bottom: 2rem;
    display: inline-block;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

/* --- PRODUCTS --- */
.products {
    background: var(--primary-dark);
}

.products .section-title {
    color: var(--white);
}

.products .section-subtitle {
    color: var(--white-70);
}


.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.product-card {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    height: 520px;
    box-shadow: var(--shadow-md);
}


.product-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out);
}

.product-card:hover img {
    transform: scale(1.1);
}

.product-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 3rem 2rem;
    background: linear-gradient(transparent, var(--product-overlay));
    color: var(--white);
    transform: translateY(20px);
    transition: transform 0.4s var(--ease-out);
}

.product-card:hover .product-info {
    transform: translateY(0);
}

/* Epoxy Card Hover Detail Overlay */
.product-hover-detail {
    position: absolute;
    inset: -1px;
    background: var(--card-hover-bg);
    color: var(--white);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s var(--ease-out);
    border: 1px solid var(--white-08);
    backdrop-filter: blur(16px);
    box-shadow: inset 0 0 0 1px var(--white-03), 0 30px 80px var(--black-25);
    z-index: 10;
    overflow: hidden;
    /* Prevent the main container from scrolling */
}

.product-hover-detail::-webkit-scrollbar {
    display: none;
    /* Hide scrollbar for Chrome, Safari and Opera */
}

.product-card:hover .product-hover-detail {
    opacity: 1;
    visibility: visible;
}

.hover-detail-content {
    display: flex;
    flex-direction: column;
    padding: 2.5rem 2rem 1.5rem;
    height: 100%;
    /* Fix height to 100% of card */
    gap: 0;
}

.hover-content {
    display: flex;
    flex-direction: column;
    flex: 1;
    /* Take up available space */
    overflow-y: auto;
    /* Scroll internally */
    padding-right: 5px;
    /* Slight padding for content */
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.hover-content::-webkit-scrollbar {
    display: none;
    /* Hide scrollbar */
}

.hover-footer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    gap: 0.75rem;
    padding: 1.5rem 0 0 0;
    border-top: 1px solid var(--white-12);
}

.hover-title {
    font-size: 1.9rem;
    font-weight: 900;
    margin: 0 0 0.25rem 0;
    letter-spacing: -0.5px;
}

.hover-subtitle {
    font-size: 0.95rem;
    opacity: 0.85;
    margin-bottom: 0;
    font-weight: 500;
}

.hover-description {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
    opacity: 0.95;
}

.hover-more-content {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.35s var(--ease-out), opacity 0.35s var(--ease-out), margin 0.35s var(--ease-out);
}

.hover-more-content.expanded {
    max-height: 2000px;
    /* High enough to contain all content */
    opacity: 1;
    margin-top: 1.5rem;
    overflow: visible;
    /* Let the parent container handle scrolling */
}

.read-more-toggle {
    margin-top: 0;
    padding: 0.85rem 1.25rem;
    background: var(--white-14);
    color: var(--white);
    border: 1px solid var(--white-22);
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    min-width: 130px;
    transition: background 0.25s var(--ease-out), transform 0.25s var(--ease-out);
}

.read-more-toggle:hover {
    background: var(--white-22);
    transform: translateY(-1px);
}

.hover-highlight {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    padding: 0.75rem 1rem;
    background: var(--white-10);
    border-radius: 10px;
    border-left: 3px solid var(--accent-light);
}

.hover-section-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 1.5rem 0 1rem 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.advantages-title {
    color: var(--success);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.advantages-title i {
    font-size: 1.2rem;
}

.hover-benefits,
.hover-advantages {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hover-benefits li,
.hover-advantages li {
    font-size: 0.9rem;
    line-height: 1.8;
    padding-left: 1.5rem;
    position: relative;
    opacity: 0.9;
}

.hover-benefits li:before {
    content: "•";
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1.2rem;
    color: var(--accent-light);
}

.hover-advantages li:before {
    content: "✓";
    position: absolute;
    left: 0;
    font-weight: bold;
    color: var(--success);
    font-size: 0.9rem;
}

.hover-btn {
    margin-top: 0;
    width: auto;
    min-width: 180px;
    padding: 0.85rem 1.35rem;
    background: linear-gradient(135deg, var(--btn-gradient-start), var(--btn-gradient-end));
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s var(--ease-out);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.hover-btn:hover {
    background: var(--white);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px var(--black-30);
}

.hover-btn:hover i {
    color: var(--whatsapp-green);
}

/* --- GALLERY --- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 250px;
    gap: 1.5rem;
}

.gallery-item {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out);
}

.gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gallery-overlay);
    opacity: 0;
    transition: opacity 0.3s var(--ease-out);
}


.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover::after {
    opacity: 1;
}

.gallery-item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item:nth-child(2) {
    grid-column: span 2;
}

/* --- TESTIMONIALS --- */
.testimonials {
    background: var(--primary-dark);
    padding: 150px 10%;
}

.testimonials .section-title {
    color: var(--white);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.testimonial-card {
    background: var(--white-03);
    padding: 3.5rem 3rem;
    border-radius: 40px;
    border: 1px solid var(--white-05);
    backdrop-filter: blur(10px);
    transition: transform 0.4s var(--ease-out);
    color: var(--white);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    background: var(--white-06);
}

.testimonial-avatar {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.4rem;
    margin-right: 1.25rem;
    border: 3px solid var(--accent) !important;
    box-shadow: 0 4px 10px var(--black-20);
    flex-shrink: 0;
    font-family: 'Outfit', sans-serif;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.testimonial-header img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 1.25rem;
    border: 3px solid var(--accent) !important;
    box-shadow: 0 4px 10px var(--black-20);
}

/* --- CONTACT --- */
.contact {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 8rem;
    align-items: flex-start;
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--primary);
}

.info-item {
    margin-bottom: 3rem;
    padding-left: 1rem;
    border-left: 3px solid var(--accent);
}

.contact-form {
    background: var(--white);
    padding: 4rem;
    border-radius: 40px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--black-05);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 2rem;
}

.form-row .form-group {
    margin-bottom: 0;
}

.form-group label {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--primary);
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-group label i {
    color: var(--accent);
    font-size: 1rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 1.2rem;
    border: 2px solid var(--grey-border);
    border-radius: 15px;
    outline: none;
    transition: all 0.3s var(--ease-out);
    font-size: 1rem;
    background: var(--bg-main);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--accent);
    background: var(--white);
    box-shadow: 0 0 0 4px var(--accent-light);
}

.custom-select {
    position: relative;
    width: 100%;
}

.select-trigger {
    padding: 1.2rem 1.5rem;
    border: 2px solid var(--grey-border);
    border-radius: 20px;
    background: var(--bg-main);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s var(--ease-out);
    font-size: 1rem;
    color: var(--text-main);
}

.custom-select.open .select-trigger {
    border-color: var(--accent);
    background: var(--white);
    box-shadow: 0 0 0 4px var(--accent-light);
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.select-trigger span {
    font-weight: 600;
}

.select-trigger i {
    color: var(--primary);
    transition: transform 0.3s var(--ease-out);
    font-size: 0.9rem;
}

.custom-select.open .select-trigger i {
    transform: rotate(180deg);
}

.select-options {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white-95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 2px solid var(--accent);
    border-top: none;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s var(--ease-out);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.custom-select.open .select-options {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.option {
    padding: 1.1rem 1.5rem;
    cursor: pointer;
    transition: all 0.2s var(--ease-out);
    font-weight: 600;
    color: var(--primary);
    border-bottom: 1px solid var(--black-02);
}

.option:last-child {
    border-bottom: none;
}

.option:hover {
    background: var(--accent-light);
    color: var(--accent);
    padding-left: 2rem;
}

.option.active {
    background: var(--accent);
    color: var(--white);
}


.submit-btn {
    width: 100%;
    padding: 1.5rem;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 15px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0;
    cursor: pointer;
    transition: all 0.3s var(--ease-out);
    display: flex;
    align-items: center;
    justify-content: center;
}

.submit-btn:hover {
    background: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px var(--accent-glow);
}


/* --- FOOTER --- */
.footer {
    background: var(--footer-bg);
    color: var(--white);
    padding: 100px 10% 30px;
    border-top: 1px solid var(--white-05);
}

.footer-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 5rem;
    margin-bottom: 80px;
}

.footer-logo h2 {
    font-size: 2rem;
    color: var(--white);
    letter-spacing: 0;
    margin-bottom: 2rem;
}

.footer-logo img {
    height: 60px;
    width: auto;
    object-fit: contain;
    margin-bottom: 2rem;
}

.footer-col p {
    color: var(--white-60);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.social-links {
    display: flex;
    gap: 1.2rem;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: var(--white-05);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 1.1rem;
    transition: all 0.3s var(--ease-out);
    border: 1px solid var(--white-05);
    text-decoration: none;
}

.social-links a:hover {
    background: var(--accent);
    color: var(--white);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px var(--accent-glow);
}

.footer-col h3 {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    color: var(--white);
    position: relative;
}

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

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 1.2rem;
}

.footer-col ul li a {
    color: var(--white-60);
    text-decoration: none;
    transition: all 0.3s var(--ease-out);
    font-size: 0.95rem;
}

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

.footer-contact li {
    display: flex;
    gap: 15px;
    color: var(--white-60);
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-contact li i {
    color: var(--accent);
    margin-top: 5px;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid var(--white-05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: var(--white-30);
    font-size: 0.85rem;
}

.footer-bottom a {
    color: var(--white-60);
    text-decoration: none;
    transition: color 0.3s var(--ease-out);
}

.footer-bottom a:hover {
    color: var(--accent);
}

.footer-credit {
    font-size: 0.85rem;
    color: var(--white-30);
}

.footer-credit a {
    color: var(--accent) !important;
    font-weight: 700;
    letter-spacing: 0;
}

.footer-credit a:hover {
    color: var(--white) !important;
    text-shadow: 0 0 12px var(--accent-glow);
}


/* --- ANIMATIONS --- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

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

.reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}


/* --- 404 PAGE --- */
.not-found {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 160px 10% 80px;
    overflow: hidden;
    background: var(--primary-dark);
}

.not-found-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.3;
}

.not-found-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary-dark), transparent, var(--primary-dark));
}

.not-found .section-badge {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--white);
    border: none;
    padding: 0.6rem 1.5rem;
    box-shadow: 0 10px 20px var(--accent-glow);
}

.not-found-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 700px;
}

.error-box {
    background: var(--white-05);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 4rem 3rem;
    border-radius: 40px;
    border: 1px solid var(--white-10);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.not-found h1 {
    font-size: clamp(3rem, 6vw, 6rem);
    margin: 1.5rem 0;
    color: var(--white);
    line-height: 1;
}

.not-found h1 span {
    display: block;
    background: linear-gradient(135deg, #fff, var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.not-found p {
    font-size: 1.2rem;
    color: var(--white-80);
    margin-bottom: 3rem;
    line-height: 1.6;
}

.not-found-btns {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

@media (max-width: 768px) {
    .not-found-btns {
        flex-direction: column;
    }
    
    .not-found-btns .cta-button {
        width: 100%;
    }
    
    .error-box {
        padding: 3rem 1.5rem;
    }
}

/* --- RESPONSIVE --- */

.submit-btn.sent {
    background: var(--success) !important;
}

/* Back to Top */
#backToTop {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    background: var(--accent);
    color: var(--white);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    display: none;
    z-index: 1000;
    font-size: 1.2rem;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s var(--ease-out);
}

#backToTop:hover {
    background: var(--primary);
    transform: translateY(-5px);
}

/* Hamburger Menu Toggle */
.menu-toggle {
    display: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 18px;
    z-index: 1001;
}

.menu-toggle .bar {
    height: 3px;
    width: 100%;
    background-color: var(--primary);
    border-radius: 10px;
    transition: all 0.3s ease;
}

nav.scrolled .menu-toggle .bar {
    background-color: var(--primary);
}

.menu-toggle.is-active .bar:nth-child(2) {
    opacity: 0;
}

.menu-toggle.is-active .bar:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}

.menu-toggle.is-active .bar:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}

@media (max-width: 1200px) {
    .hero h1 {
        font-size: 3.5rem;
    }

    .about {
        gap: 4rem;
    }

    #navbar {
        padding: 1.5rem 5%;
    }

    section {
        padding: 100px 5%;
    }
}

/* --- TABLET RESPONSIVENESS (768px - 991px) --- */
@media (min-width: 768px) and (max-width: 991px) {

    /* About Section - Tablet */
    .about {
        display: grid;
        grid-template-columns: 1fr;
        gap: 3rem;
        align-items: center;
    }

    .about-image-wrap {
        position: relative;
        padding: 0;
    }

    .about-img-accent {
        display: none;
    }

    .about-image {
        position: relative;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: var(--shadow-lg);
        height: 380px;
        z-index: 1;
    }

    .about-content {
        padding: 2rem 0;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .about-content .section-title {
        text-align: left;
        font-size: 2.2rem;
        line-height: 1.1;
    }

    .about-lead {
        font-size: 1rem;
        color: var(--text-main);
        font-weight: 500;
        line-height: 1.7;
        margin: 1.5rem 0 1rem;
    }

    .about-content > p:not(.about-lead) {
        color: var(--text-muted);
        line-height: 1.8;
        font-size: 0.9rem;
    }

    .about-stats {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
        margin-top: 2rem;
        padding-top: 2rem;
        border-top: 1px solid var(--grey-border);
        width: 100%;
    }

    .about-stat {
        display: flex;
        flex-direction: column;
        gap: 4px;
        text-align: center;
        align-items: center;
        justify-content: center;
    }

    .stat-number {
        font-family: 'Outfit', sans-serif;
        font-size: 2rem;
        font-weight: 900;
        color: var(--primary);
        line-height: 1;
        background: linear-gradient(135deg, var(--primary), var(--accent));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .stat-label {
        font-size: 0.75rem;
        color: var(--text-muted);
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    /* About Button Centering */
    .about-content .cta-button {
        display: inline-flex;
        justify-content: center;
        align-items: center;
        margin-top: 2rem;
        margin-left: auto;
        margin-right: auto;
        width: fit-content;
        align-self: center;
    }

    /* Contact Section - Tablet */
    .contact {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .contact-info {
        max-width: 700px;
        margin: 0 auto;
        text-align: center;
    }

    .contact-info .section-title {
        text-align: center !important;
    }

    .info-item {
        border-left: none;
        border-bottom: 1px solid var(--grey-border);
        padding-left: 0;
        padding-bottom: 2rem;
        margin-bottom: 2rem;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .info-item:last-child {
        border-bottom: none;
        margin-bottom: 0;
    }

}

@media (max-width: 992px) {

    .values-grid,
    .product-grid,
    .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }

    .contact-form {
        padding: 3rem;
    }

    /* Navbar Mobile */
    .menu-toggle {
        display: flex;
    }

    .nav-right {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 400px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        transition: transform 0.5s var(--ease-out);
        z-index: 1000;
        padding: 6rem 2.5rem 2rem;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
        overflow-y: auto;
    }

    .nav-right.is-active {
        right: 0;
    }

    nav.scrolled .nav-right {
        background: var(--white);
    }

    .nav-links {
        flex-direction: column;
        text-align: left;
        gap: 1.5rem;
        margin-bottom: 3rem;
        width: 100%;
    }

    .nav-links a {
        font-size: 1.2rem;
        color: var(--primary-dark);
        display: block;
        padding: 0.5rem 0;
        border-bottom: 1px solid var(--black-02);
    }

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

    .nav-links a:hover,
    .nav-links a.active {
        color: var(--accent);
        padding-left: 10px;
    }

    .nav-links a::after {
        display: none;
    }

    .nav-enquiry-btn {
        display: flex;
        padding: 1rem 2.5rem;
        font-size: 1rem;
    }

    /* Hero Responsive */
    .hero {
        grid-template-columns: 1fr;
        text-align: left;
        height: auto;
        padding: 220px 5% 80px;
        min-height: 100vh;
    }

    .hero-features {
        display: flex !important;
        flex-direction: row;
        gap: 10px;
        align-items: stretch;
        justify-content: flex-start;
        margin-top: 1.5rem;
        width: 100%;
    }

    .feature-tag {
        flex: 1;
        min-width: 0;
        width: auto;
        height: auto;
        padding: 1.2rem 0.8rem;
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
        animation: none;
    }

    .feature-tag i {
        font-size: 1.5rem;
    }

    .feature-tag .tag-text h4 {
        font-size: 0.9rem;
        margin-bottom: 2px;
    }

    .feature-tag .tag-text p {
        font-size: 0.7rem;
        line-height: 1.2;
        display: block; /* Keep it but very small */
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        max-width: 100%;
    }

    .hero-badge {
        margin: 0 0 2rem;
    }

    .hero h1 {
        font-size: 3.5rem;
        margin-bottom: 2rem;
    }

    .hero p {
        margin: 0 0 3rem;
        border-left: 3px solid var(--accent);
        padding-left: 2rem;
        max-width: 600px;
    }

    .hero-btns {
        flex-direction: column;
        gap: 1.2rem;
        width: 100%;
        max-width: 350px;
        align-self: center;
        margin-top: 1rem;
    }

    .hero-btns .cta-button {
        width: 100%;
    }

    .product-info,
    .product-card:hover .product-info {
        transform: none;
    }
}



@media (max-width: 768px) {

    .about,
    .contact {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .values-grid,
    .product-grid,
    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-item:nth-child(1),
    .gallery-item:nth-child(2) {
        grid-column: auto;
        grid-row: auto;
    }

    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .about-stats {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
        border: none;
        padding-top: 0;
        width: 100%;
    }

    .about-stat {
        text-align: center;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .form-row .form-group {
        margin-bottom: 2rem;
    }

    .contact-info h3 {
        font-size: 1.35rem;
        margin-bottom: 1rem;
    }

    .product-card {
        height: 380px;
    }

    .gallery-grid {
        grid-auto-rows: 240px;
    }
}


@media (max-width: 576px) {
    nav {
        padding: 1rem 5%;
    }

    nav.scrolled {
        padding: 0.85rem 5%;
    }

    .logo h1 {
        font-size: 1.25rem;
        letter-spacing: 0;
    }

    section {
        padding: 80px 5%;
    }

    .hero {
        padding: 180px 5% 70px;
        min-height: 100svh;
    }

    .hero-badge {
        max-width: 100%;
        justify-content: flex-start;
        line-height: 1.4;
        text-align: left;
        letter-spacing: 0;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero p {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }

    .hero-btns {
        max-width: 100%;
    }

    .feature-tag {
        padding: 0.8rem 0.4rem;
        gap: 0.5rem;
    }

    .feature-tag i {
        font-size: 1.2rem;
    }

    .feature-tag .tag-text h4 {
        font-size: 0.75rem;
    }

    .feature-tag .tag-text p {
        font-size: 0.6rem;
    }

    .cta-button {
        padding: 1rem 1.3rem;
        font-size: 0.78rem;
    }

    .about-content {
        text-align: center;
    }

    .about-content .cta-button {
        width: 100%;
        max-width: 350px;
        margin: 2rem auto 0;
        padding: 1rem 1.8rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .section-badge {
        font-size: 0.7rem;
    }

    .about-content .section-title {
        font-size: 2.2rem;
    }

    .footer-col {
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .footer-col h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-contact li {
        justify-content: center;
    }

    .about-image {
        height: 350px;
    }

    .about-image-wrap {
        padding: 1.5rem 0 0 0;
    }

    .about-img-accent {
        display: none;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .contact-form {
        padding: 2rem 1.25rem;
        border-radius: 24px;
    }

    .submit-btn {
        padding: 1.1rem;
        font-size: 0.78rem;
        letter-spacing: 0;
    }

    .product-card {
        height: 340px;
        border-radius: 22px;
    }

    .product-info {
        padding: 4rem 1.25rem 1.5rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        grid-auto-rows: 220px;
    }

    .testimonial-card,
    .value-card {
        padding: 2.5rem 1.5rem;
        border-radius: 24px;
    }

    .footer {
        padding: 70px 5% 25px;
    }

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