:root {
    /* Premium Palette */
    --primary: #C5A059;
    /* Sophisticated Gold */
    --primary-dark: #A6823C;
    --primary-light: #E8D198;

    --secondary: #0F172A;
    /* Deep Rich Slate */
    --secondary-light: #1E293B;
    /* Lighter Slate */

    --accent: #F8F9FA;
    /* Soft White */

    --text-main: #334155;
    /* Slate 700 */
    --text-light: #94A3B8;
    /* Slate 400 */
    --text-white: #FFFFFF;

    --bg-body: #FFFFFF;
    --bg-light: #F8FAFC;
    /* Very light slate tint */

    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    line-height: 1.7;
    color: var(--text-main);
    background-color: var(--bg-body);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    color: #fff;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Utilities */
/* Utilities */
.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
}

.align-items-center {
    align-items: center;
}

/* Button & Link Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    background: var(--primary);
    color: #fff;
    font-weight: 600;
    font-family: var(--font-heading);
    letter-spacing: 0.5px;
    border-radius: 8px;
    /* Slightly rounded */
    border: none;
    text-transform: uppercase;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    z-index: 1;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: var(--transition);
    z-index: -1;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn:hover::before {
    width: 100%;
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    box-shadow: none;
}

.btn-secondary:hover {
    background: var(--primary);
    color: #fff;
    box-shadow: var(--shadow-md);
}

.btn-dark {
    background: var(--secondary);
    color: #fff;
}

.section-title {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
}

.section-title h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--secondary);
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: -0.5px;
    display: inline-block;
}

.section-title p {
    color: var(--text-light);
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.separator-line {
    width: 60px;
    height: 4px;
    background: var(--primary);
    margin: 15px auto 0;
    border-radius: 2px;
}

.about-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Header */
/* Header */
header {
    background-color: rgb(255 255 255 / 95%);
    /* Semi-transparent Slate 900 */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: var(--shadow-sm);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.header-top {
    background-color: #020617;
    /* Almost black slate */
    color: var(--text-light);
    padding: 8px 0;
    font-size: 0.85rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-top .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info span {
    margin-right: 25px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.contact-info i {
    color: var(--primary);
    font-size: 0.9rem;
}

.social-links a {
    margin-left: 20px;
    color: var(--text-light);
    font-size: 0.9rem;
    transition: var(--transition);
}

.social-links a:hover {
    color: var(--primary);
    transform: translateY(-2px);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo img {
    height: 60px;
    /* Refined size */
    width: auto;
    display: block;
}

.logo-text {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin-left: 10px;
    font-family: var(--font-heading);
    letter-spacing: -0.5px;
}

.logo-link {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    align-items: center;
}

.nav-links li {
    margin-left: 35px;
    position: relative;
}

.nav-links a {
    font-weight: 500;
    font-family: var(--font-body);
    color: #ffffff;
    font-size: 0.95rem;
    padding: 5px 0;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary);
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
}

/* Dropdown */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: var(--bg-body);
    min-width: 240px;
    box-shadow: var(--shadow-lg);
    top: 100%;
    left: 0;
    z-index: 100;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    /* Subtle border */
    padding: 10px 0;
    margin-top: 15px;
    /* Spacing from nav item */
    transform-origin: top;
    animation: fadeIn 0.2s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-content li {
    margin: 0;
    border-bottom: none;
}

.dropdown-content a {
    color: var(--text-main);
    padding: 12px 24px;
    display: block;
    font-size: 0.9rem;
    transition: var(--transition);
}

.dropdown-content a::after {
    display: none;
    /* No underline for dropdown items */
}

.dropdown-content a:hover {
    background-color: var(--bg-light);
    color: var(--primary);
    padding-left: 28px;
    /* Slight slide effect */
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* Hamburger */
.hamburger {
    display: none;
    cursor: pointer;
    z-index: 100;
}

.bar {
    display: block;
    width: 25px;
    height: 2px;
    margin: 6px auto;
    transition: var(--transition);
    background-color: var(--text-white);
}

/* Mobile Responsive */
@media (max-width: 900px) {
    .header-top {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .nav-links {
        position: fixed;
        left: -100%;
        top: 0;
        flex-direction: column;
        justify-content: center;
        background-color: rgba(15, 23, 42, 0.98);
        backdrop-filter: blur(10px);
        width: 100%;
        height: 100vh;
        text-align: center;
        transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: none;
        padding: 0;
        z-index: 99;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links li {
        margin: 20px 0;
    }

    .nav-links a {
        font-size: 1.2rem;
    }

    /* Disable hover on mobile, rely on JS toggle */
    .dropdown:hover .dropdown-content {
        display: none;
    }

    .dropdown-content {
        position: static;
        box-shadow: none;
        border: none;
        background-color: rgba(255, 255, 255, 0.03);
        display: none;
        width: 100%;
        margin-top: 10px;
        animation: none;
    }

    .dropdown.active .dropdown-content {
        display: block;
    }

    .dropdown-content a {
        color: var(--text-light);
        padding: 15px;
        text-align: center;
    }

    .dropdown-content a:hover {
        background: transparent;
        padding-left: 15px;
    }
}

/* Hero Section */
/* Hero Section */
/* Hero Section Redesigned */
.hero {
    height: 100vh;
    background: radial-gradient(circle at center, rgba(15, 23, 42, 0.4) 0%, rgba(15, 23, 42, 0.85) 100%),
        url('../images/hero_bg_1770181033153.png') no-repeat center center/cover;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-white);
    padding: 0 20px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
   
    pointer-events: none;
    z-index: 1;
}

.hero-content {
    max-width: 1000px;
    z-index: 2;
    margin-top: 40px;
    padding: 0 20px;
}

.hero h1 {
    font-size: 3.5rem;
    /* Reduced from 5rem */
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 25px;
    font-family: var(--font-heading);
    letter-spacing: -1px;
    text-transform: capitalize;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    color: #ffffff;
    /* Explicitly set to white */
}

.text-gold {
    color: transparent;
    background: linear-gradient(135deg, #F0E68C 0%, #C5A059 50%, #B8860B 100%);
    -webkit-background-clip: text;
    background-clip: text;
    display: inline-block;
    position: relative;
}

/* Optional glow effect for gold text */
/* .text-gold::after {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    color: var(--primary);
    filter: blur(10px);
    opacity: 0.4;
} */

.hero p {
    font-size: 1.4rem;
    margin-bottom: 50px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-btns {
    display: flex;
    gap: 25px;
    justify-content: center;
}

.btn-outline {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
}

.btn-outline:hover {
    background: #fff;
    color: var(--secondary);
    border-color: #fff;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
}

/* Animations */
.animate-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 900px) {
    .hero h1 {
        font-size: 2.2rem;
        letter-spacing: -0.5px;
    }

    .hero p {
        font-size: 1rem;
    }

    .hero-btns {
        flex-direction: column;
        gap: 15px;
        align-items: center;
        width: 100%;
    }

    .hero-btns .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* Stats Section */
.stats-section {
    background: transparent;
    padding: 0 0 80px 0;
    position: relative;
    z-index: 10;
    margin-top: -80px;
    /* Overlap hero */
}

/* Stats Grid (Default - for Hero) */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 0;
    background: #0f172a;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.stat-box {
    padding: 40px 20px;
    text-align: center;
    border-right: 1px solid rgba(0, 0, 0, 0.05);
    background: #fff;
    transition: var(--transition);
}

.stat-box:hover {
    background: var(--bg-light);
}

.stat-box:last-child {
    border-right: none;
}

.stat-box i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 15px;
    display: inline-block;
}

.stat-box h3 {
    font-size: 2.5rem;
    color: var(--secondary);
    font-family: var(--font-heading);
    font-weight: 700;
    margin-bottom: 5px;
}

.stat-box p {
    color: var(--text-light);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

/* Why Choose Us & Process (Override to separate cards) */
.why-choose-grid {
    background: transparent;
    box-shadow: none;
    gap: 30px;
    overflow: visible;
}

.why-choose-grid .stat-box {
    background: var(--bg-body);
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    /* Subtle border */
    box-shadow: var(--shadow-md);
    padding: 35px 25px;
}

.why-choose-grid .stat-box:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.why-choose-grid .stat-box i,
.why-choose-grid .process-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
    display: inline-block;
    background: rgba(197, 160, 89, 0.1);
    width: 70px;
    height: 70px;
    line-height: 70px;
    border-radius: 50%;
}

.why-title,
.stat-box h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 15px;
    font-family: var(--font-heading);
}

.why-desc,
.stat-box p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Featured Projects Card Styling */
.project-card-img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 12px;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    cursor: pointer;
}

.col-third:hover .project-card-img {
    transform: scale(1.02);
    box-shadow: var(--shadow-lg);
}

.project-card-title {
    margin-top: 20px;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--secondary);
    text-align: center;
    font-family: var(--font-heading);
}

/* Testimonials */
.testimonial-box {
    background: var(--bg-body);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    position: relative;
    border-top: 4px solid var(--primary);
}

.quote-icon {
    font-size: 2rem;
    color: rgba(197, 160, 89, 0.2);
    margin-bottom: 20px;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-main);
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.testimonial-author {
    font-weight: 700;
    color: var(--secondary);
    text-align: right;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .stats-section {
        margin-top: 0;
        padding: 40px 0;
        background: var(--bg-light);
    }

    .stats-grid {
        grid-template-columns: 1fr;
        padding: 0;
        background: transparent;
        box-shadow: none;
        border-radius: 0;
        gap: 20px;
    }

    .stat-box {
        border-right: none;
        box-shadow: var(--shadow-md);
        /* Add shadow on mobile for separation */
        border-radius: 12px;
        background: #fff;
    }

    .stat-box:last-child {
        border-bottom: none;
        padding-bottom: 40px;
    }

    .why-choose-grid {
        gap: 20px;
    }
}

/* Sections General */
/* Replaced generic .section with specific classes */
.furniture-section,
.civil-section,
.electrical-section,
.painting-section,
.plumbing-section,
.aluminum-section,
.pop-section,
.grill-section,
.about-content-section,
.contact-main-section,
.product-showcase-section,
.policy-content-section,
.services-list-section,
.portfolio-grid-section,
.gallery-grid-section {
    padding: 80px 0;
    background-color: #ffffff;
}

/* Generic section class for pages still using it */
.section {
    /* padding: 80px 0; */
    background-color: #ffffff;
}

/* Ensure consistent spacing between sections */
section {
    margin: 0;
}

/* Background sections */
.bg-light {
    background-color: #f1efea47;
    /* padding: 80px 0; */
}

/* Typography & Layout Fixes for Service Sections */
.furniture-section p,
.civil-section p,
.electrical-section p,
.painting-section p,
.plumbing-section p,
.aluminum-section p,
.pop-section p,
.grill-section p {
    text-align: justify;
    line-height: 1.8;
    margin-bottom: 15px;
}

.furniture-section h2,
.civil-section h2,
.electrical-section h2,
.painting-section h2,
.plumbing-section h2,
.aluminum-section h2,
.pop-section h2,
.grill-section h2 {
    text-align: left;
    margin-bottom: 20px;
    color: var(--secondary);
}

/* Image Enhancements */
.col-half img {
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}



.row {
    display: flex;
    flex-wrap: wrap;
    /* align-items: center; */
    gap: 40px;
}

.col-half {
    flex: 1;
    min-width: 300px;
}

.col-full {
    flex: 1 1 100%;
    width: 100%;
}

.col-half img {
    width: 100%;
    height: 546px;
    object-fit: cover;
}

.col-third {
    flex: 1;
    min-width: 300px;
}

.col-quarter {
    flex: 1;
    min-width: 220px;
}

.feature-list li {
    margin-bottom: 10px;
    font-weight: 500;
}

.feature-list i {
    color: var(--primary);
    margin-right: 10px;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-item {
    text-align: center;
    padding: 20px;
}

.service-item h4 {
    font-family: var(--font-heading);
    color: var(--secondary);
    margin: 15px 0 10px 0;
    font-size: 1.2rem;
}

.service-item p {
    color: var(--text-dark);
    line-height: 1.6;
    margin: 0;
}

/* Service Card Enhancement */
.service-card {
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid #f0f0f0;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
}

.service-img-wrapper {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

.service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-img {
    transform: scale(1.1);
}

.service-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: left;
}

.service-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 12px;
    font-family: var(--font-heading);
}

.service-content p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-content a {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
}

.service-content a:hover {
    gap: 12px;
    text-decoration: none;
}

/* CTA Section */
.cta-section {
    background-color: var(--secondary);
    color: var(--white);
    text-align: center;
    padding: 80px 0;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-section .btn {
    background-color: var(--white);
    color: var(--secondary);
    border-color: var(--white);
}

.cta-section .btn:hover {
    background-color: transparent;
    color: var(--white);
}

/* Footer */
/* Footer */
footer {
    background-color: var(--secondary);
    color: var(--text-white);
    padding: 100px 0 30px;
    font-size: 0.95rem;
    position: relative;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col h3 {
    color: #fff;
    margin-bottom: 24px;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    position: relative;
    padding-bottom: 15px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
}

.footer-col p {
    color: var(--text-light);
    line-height: 1.8;
}

.footer-col ul li {
    margin-bottom: 14px;
}

.footer-col ul li a {
    color: var(--text-light);
    transition: var(--transition);
    display: inline-block;
}

.footer-col ul li a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.contact-details li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 18px;
    color: var(--text-light);
}

.contact-details i {
    color: var(--primary);
    margin-top: 5px;
    font-size: 1.1rem;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.footer-bottom a {
    color: #fff;
    font-weight: 500;
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    footer {
        padding: 60px 0 30px;
    }
}

/* Page Header */
.page-header {
    height: 350px;
    background-color: var(--secondary);
    background-position: center !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--white);
    margin-top: 80px;
}

.page-header h1 {
    font-size: 3rem;
    font-family: var(--font-heading);
}

.page-header p {
    font-size: 1.1rem;
    margin-top: 10px;
    opacity: 0.9;
}

/* Service Details (from services.html) */
.service-detail-section {
    padding: 60px 0;
    border-bottom: 1px solid #eee;
}

.service-detail-section p {
    text-align: justify;
    line-height: 1.8;
}

.service-detail-section:last-child {
    border-bottom: none;
}

.service-detail-section h2 {
    font-family: var(--font-heading);
    color: var(--secondary);
    margin-bottom: 20px;
}

.service-detail-section:nth-child(even) .row {
    flex-direction: row-reverse;
}

/* Product Grid (from product.html) */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.product-card {
    background: white;
    box-shadow: var(--shadow);
    border-radius: 10px;
    overflow: hidden;
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-5px);
}

/* Side-by-Side FAQ Styling */
.faq-item {
    background-color: #fff;
    border-left: 4px solid var(--primary);
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 0 8px 8px 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.faq-item:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.faq-item h4 {
    color: var(--secondary);
    font-size: 1.1rem;
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
}

.faq-item h4 strong {
    font-weight: 600;
}

.faq-item p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-left: 0;
    padding-left: 0;
}

/* Ensure equal height columns */
.row.align-items-center {
    align-items: flex-start;
    /* Align to top */
}

/* Enquiry form adjustments */
.enquiry-form-container,
.enquiry-form-card {
    transition: var(--transition);
}

.enquiry-form-container:hover,
.enquiry-form-card:hover {
    transform: translateY(-5px);
}


.product-img {
    height: 250px;
    overflow: hidden;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-img img {
    transform: scale(1.1);
}

.product-info {
    padding: 20px;
    text-align: center;
}

.product-info h3 {
    margin-bottom: 10px;
    color: var(--secondary);
}

.product-info p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

/* Gallery Grid (from portfolio/gallery.html) */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.gallery-item {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    position: relative;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 10px;
    transform: translateY(100%);
    transition: var(--transition);
    text-align: center;
}

.gallery-item:hover .overlay {
    transform: translateY(0);
}

/* Utilities Refactoring */
.text-center {
    text-align: center;
}

.text-white {
    color: var(--white) !important;
}

.text-light-gray {
    color: #ddd;
}

.text-gray-600 {
    color: #666;
}

.mt-40 {
    margin-top: 40px;
}

.mt-50 {
    margin-top: 50px;
}

.mb-10 {
    margin-bottom: 10px;
}

.mb-15 {
    margin-bottom: 15px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-30 {
    margin-bottom: 30px;
}

.w-full {
    width: 100%;
}

.h-full {
    height: 100%;
}

.p-20 {
    padding: 20px;
}

.d-flex {
    display: flex;
}

.justify-center {
    justify-content: center;
}

/* Component Specific Classes extracted from inline styles */
.process-icon {
    font-size: 40px;
    color: var(--secondary);
    margin-bottom: 15px;
}



.btn-view-services {
    border: 2px solid #0a192f;
    color: black;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
}

.btn-view-services:hover {
    background-color: var(--primary);
    color: var(--white);
}

.btn-view-projects {
    background: #333;
    color: white;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
}

.btn-view-projects:hover {
    background: #000;
}

.col-enquiry {
    flex: 0 1 600px;
    max-width: 100%;
}

.whatsapp-icon-lg {
    font-size: 1.2rem;
}

.enquiry-form-card {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.icon-primary {
    color: var(--primary);
}

.map-iframe {
    border: 0;
}

/* Contact Styles (from contact.html) */
.contact-box {
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
}

.contact-box i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.contact-box h3 {
    margin-bottom: 10px;
    font-family: var(--font-heading);
    color: #ffffff;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: var(--font-body);
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

iframe {
    width: 100%;
    height: 400px;
    border: 0;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

/* Floating Action Buttons */
.floating-actions {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 2000;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
    text-decoration: none;
}

.floating-btn:hover {
    transform: scale(1.1);
    color: var(--white);
}

.btn-whatsapp {
    background-color: #25D366;
}

.btn-call {
    background-color: var(--secondary);
}

/* Pulse Animation for Call Button */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 51, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(0, 51, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 51, 102, 0);
    }
}

.btn-call {
    animation: pulse 2s infinite;
}

/* -------------------------------------------------------------
   Refactored Styles from Inline HTML (New Additions)
   ------------------------------------------------------------- */

/* Hero Section Refinements */
.hero-custom {
    background-image: url('../images/hero_bg_1770181033153.png');
    background-size: contain;
    background-position: center;
    
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
    margin-top: 0;
    /* Resetting if needed */
}

.hero-content {
    max-width: 800px;
    padding: 20px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-btn-primary {
    background: var(--primary);
    color: var(--secondary);
    border: none;
    padding: 15px 30px;
    font-size: 1.1rem;
    border-radius: 5px;
    margin-right: 15px;
    text-decoration: none;
    display: inline-block;
}

.hero-btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 13px 28px;
    font-size: 1.1rem;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
}

/* About Preview Section */
.about-preview-row {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
}

.about-img-col,
.about-content-col {
    flex: 1;
    min-width: 300px;
    padding: 20px;
}

.about-img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.section-head-left {
    text-align: left;
    margin-bottom: 20px;
}

.section-head-left h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 15px;
}

.separator-line {
    width: 60px;
    height: 4px;
    background: var(--primary);
    margin-bottom: 20px;
}

.about-desc {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 25px;
}

.custom-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.custom-list li {
    margin-bottom: 10px;
    font-size: 1.05rem;
}

.custom-list i {
    color: var(--primary);
    margin-right: 10px;
}

.btn-dark {
    background: #333;
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
}

/* Why Choose Us Stats */
.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.why-stat-box {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-top: 3px solid var(--primary);
    text-align: center;
}

.why-icon {
    color: var(--primary);
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.why-title {
    color: #333;
    font-weight: bold;
    margin-bottom: 10px;
}

.why-desc {
    color: #666;
}

/* Testimonials Background */
.testimonials-section {
    padding: 100px 0;
    background-image: linear-gradient(rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.9)), url('../images/hero_bg_1770181033153.png');
    background-size: cover;
    background-attachment: fixed;
    color: white;
}

/* Contact/Enquiry */
.whatsapp-btn {
    background: #25D366;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 18px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    font-family: Arial, sans-serif;
    margin-right: 10px;
    margin-bottom: 10px;
}

.call-btn {
    background: #007bff;
    color: #fff;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 18px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    font-family: Arial, sans-serif;
    margin-bottom: 10px;
}

.enquiry-form-container {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Inter', sans-serif;
}

.form-textarea {
    min-height: 100px;
    resize: vertical;
}

.form-submit-btn {
    width: 100%;
    background: var(--primary);
    color: var(--secondary);
    border: none;
    padding: 15px;
    font-weight: 600;
    font-size: 1.1rem;
}

.map-container {
    margin-top: 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}


/* Mission & Vision Box */
.section-choose-us {
    padding: 80px 0;
}

.section-our-process {
    padding: 80px 0;
}

.section-contact {
    padding: 80px 0;
}

.section-featured {
    padding: 80px 0;
}

.section-grill {
    padding: 80px 0;
}

.section-aluminum {
    padding: 80px 0;
}

.section-pop {
    padding: 80px 0;
}

.section-portfolio {
    padding: 80px 0;
}

.section-faq {
    padding: 80px 0;
}

.section-index {
    padding: 80px 0;
}

.section-services {
    padding: 80px 0;
}

.section-about {
    padding: 80px 0;
}

.mission-box {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    height: 100%;
    transition: all 0.3s ease;
    border-top: 4px solid var(--primary);
    /* Gold top border */
    position: relative;
    overflow: hidden;
}

.mission-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

.mission-box h3 {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.5rem;
    color: var(--secondary);
}

.mission-box i {
    color: var(--primary);
    font-size: 1.8rem;
    background: rgba(229, 202, 119, 0.15);
    /* Light gold bg */
    padding: 12px;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Responsive Media Queries */
.legal-content {
    text-align: left;
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h2,
.legal-content h3 {
    text-align: left;
    margin-top: 30px;
}

.legal-content p,
.legal-content ul,
.legal-content li {
    text-align: left;
    margin-bottom: 15px;
    line-height: 1.6;
}

@media (max-width: 768px) {

    /* .section,
    .section.bg-light,
    .furniture-section,
    .about-preview,
    .stats-section,
    .hero-custom {
        padding: 40px 0 !important;
    } */

    .hero-custom {
        height: auto;
        min-height: 60vh;
        padding-top: 100px !important;
        /* Account for fixed header */
        padding-bottom: 40px !important;
    }

    .hero-title {
        font-size: 2rem !important;
    }

    .hero-subtitle {
        font-size: 1rem !important;
    }

    .hero-btns {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .hero-btn-primary,
    .hero-btn-secondary {
        margin-right: 0 !important;
        width: 100%;
        text-align: center;
        box-sizing: border-box;
    }

    .section-head-left h2 {
        font-size: 2rem !important;
    }

    .stats-grid,
    .why-choose-grid {
        grid-template-columns: 1fr !important;
        /* Stack vertically on small screens */
    }

    .row {
        flex-direction: column !important;
    }

    .col-half,
    .col-third,
    .col-quarter,
    .about-img-col,
    .about-content-col,
    .testimonial-box {
        width: 100% !important;
        min-width: unset !important;
        margin: 0 0 20px 0 !important;

    }

    /* Better Mobile Text alignment */


    .section-head-left {
        text-align: left !important;
        /* Keep headings left aligned for readability */
    }

    /* Footer Text alignment on mobile */
    .footer-col {
        text-align: left;
    }

}

/* Thank You Page Styles */
.thank-you-icon {
    font-size: 80px;
    color: var(--primary);
    margin-bottom: 20px;
    animation: popIn 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.thank-you-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 20px;
    font-weight: 700;
}

.thank-you-desc {
    color: var(--text-dark);
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto 30px;
}

@keyframes popIn {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}



.about-img-col,
.about-content-col {
    padding: 20px 0 !important;
}

.testimonial-box {
    padding: 20px !important;
}

.enquiry-form-container {
    padding: 20px !important;
}

.whatsapp-btn,
.call-btn {
    width: 100%;
    margin-right: 0 !important;
}
}

/* -------------------------------------------------------------
   Gallery Animations & Lightbox
   ------------------------------------------------------------- */

/* Hover Effect */
.gallery-item {
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    height: 250px;
    /* Fixed height for uniformity */
}

.gallery-item img {
    transition: transform 0.5s ease;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Lightbox Modal */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 25, 47, 0.95);
    /* Dark Navy transparency */
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 2000;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90vh;
    border-radius: 5px;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.lightbox.active .lightbox-content {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 3rem;
    cursor: pointer;
    transition: color 0.3s;
}

.lightbox-close:hover {
    color: var(--primary);
}

.logo {
    display: flex;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo img {
    width: 89px;
    height: auto;
}

.logo-text {
    color: #fb0000;
    font-size: 23px;
    font-weight: 600;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

/* Tablet */
@media (max-width: 992px) {
    .logo-text {
        font-size: 18px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .logo-text {
        display: block;
        font-size: 13px;
        white-space: normal;
        line-height: 1.2;
        margin-left: 8px;
    }

    .logo img {
        width: 42px;
    }

    nav {
        padding: 10px 0;
    }

    .floating-actions {
        bottom: 15px;
        right: 15px;
        gap: 10px;
    }

    .floating-btn {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
}

/* About Page Stats Cards */
.about-stats-container {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.stat-card {
    background: #ffffff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    /* Premium shadow */
    text-align: center;
    flex: 1;
    min-width: 140px;
    border: 1px solid #eee;
    /* Subtle border for definition */
    transition: transform 0.3s ease, border-color 0.3s ease;
    border-bottom: 4px solid transparent;
}

.stat-card:hover {
    transform: translateY(-5px);
    border-bottom-color: var(--primary);
    /* Gold underline on hover */
    border-color: var(--accent);
}

.stat-card i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 10px;
    display: block;
}

.stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary);
    /* Dark Navy */
    margin-bottom: 5px;
    font-family: var(--font-heading);
}

.stat-label {
    display: block;
    font-size: 0.95rem;
    color: #666;
    font-weight: 500;
}

/* Legal Pages Styling */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.legal-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--secondary);
}

.legal-content h3 {
    font-size: 1.5rem;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--secondary);
}

.legal-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 15px;
    text-align: left;
}

.legal-content ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.legal-content li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.contact-page-map {
    height: 550px;
}

.enquiry-form-container {
    width: 100%;
    height: 100%;
}

.map-container {
    width: 100%;
    height: 100%;
}

.map-iframe {
    width: 100%;

    min-height: 520px;
    border: 0;
}