:root {
    /* Brand Colors */
    --primary: #D35400;
    /* Rich Brick Orange */
    --primary-dark: #A04000;
    --primary-light: #EB984E;
    --secondary: #2C3E50;
    /* Dark Slate Blue */
    --accent: #E67E22;

    /* Neutrals */
    --bg-body: #FDFBF9;
    /* Warm Off-White */
    --bg-white: #FFFFFF;
    --bg-light: #F2F4F6;
    --bg-dark: #1A252F;

    /* Text Colors */
    --text-main: #2C3E50;
    --text-muted: #7F8C8D;
    --text-light: #ECF0F1;

    /* UI Elements */
    --border: #E5E7E9;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 15px 30px rgba(0, 0, 0, 0.12);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-full: 9999px;

    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 60px;
    overflow-x: clip;
    /* Modern fix: clips overflow without breaking sticky */
    width: 100%;
}

body {
    font-family: 'Manrope', sans-serif;
    color: var(--text-main);
    background-color: var(--bg-body);
    line-height: 1.6;
    overflow-x: clip;
    /* Modern fix: clips overflow without breaking sticky */
    width: 100%;
    position: relative;
    padding-top: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', serif;
    /* Or keep Manrope for modern look, let's try Manrope for headings too for cleaner look, or Playfair for "Legacy" feel. HTML has Playfair link. Let's use it for H1/H2 */
    color: var(--secondary);
    line-height: 1.2;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Utilities */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-subtitle {
    display: inline-block;
    color: var(--primary);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    background: rgba(211, 84, 0, 0.1);
    padding: 6px 16px;
    border-radius: var(--radius-full);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--secondary);
}

.section-desc {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: var(--transition);
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    box-shadow: 0 4px 15px rgba(211, 84, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(211, 84, 0, 0.4);
}

.btn-secondary {
    background: white;
    color: var(--primary);
    border: 2px solid white;
}

.btn-secondary:hover {
    background: transparent;
    color: white;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
}

/* Header */
header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 10px 0;
    box-shadow: var(--shadow-sm);
    /* transform removed to prevent fixed positioning issues in children */
}



header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--secondary);
    font-family: 'Manrope', sans-serif;
}

.logo-icon {
    height: 40px;
    width: auto;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-menu a {
    font-weight: 600;
    color: var(--secondary);
    font-size: 0.95rem;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-menu a:hover {
    color: var(--primary);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--secondary);
    transition: all 0.3s ease-in-out;
}

/* Hero Section */
.hero {
    position: relative;
    height: calc(100vh - 60px);
    min-height: 600px;
    display: flex;
    align-items: center;
    background: url('/image/brick.png') no-repeat center center/cover;
    color: white;
    text-align: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(360deg, rgb(0, 0, 0), rgb(58, 23, 0, 0.75));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 20px;
    color: white;
}

.hero-title .highlight {
    color: var(--primary-light);
    font-style: italic;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 40px;
    opacity: 0.9;
    font-weight: 300;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.hero-buttons .btn {
    min-width: 200px;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    padding-top: 40px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    font-family: 'Playfair Display', serif;
    line-height: 1;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* 2x2 Grid Modifier */
.grid-2x2 {
    grid-template-columns: repeat(2, 1fr) !important;
}

@media screen and (max-width: 768px) {
    .grid-2x2 {
        grid-template-columns: 1fr !important;
    }
}

/* About Section */
.about {
    padding: 100px 0;
    background: var(--bg-white);
}

.about h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.about-card {
    background: white;
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    text-align: left;
    transition: var(--transition);
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.icon-wrapper {
    width: 70px;
    height: 70px;
    background: rgba(211, 84, 0, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: var(--transition);
}

.about-icon {
    width: 32px;
    height: 32px;
    color: var(--primary);
    transition: var(--transition);
}

.about-card h3 {
    font-family: 'Manrope', sans-serif;
    font-size: 1.35rem;
    margin-bottom: 15px;
    color: var(--secondary);
    text-align: center;
}

.about-card p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
    text-align: left;
}

/* Pricing Section */
.pricing {
    padding: 100px 0;
    background: var(--bg-light);
}

.price-box {
    display: flex;
    align-items: baseline;
    margin-bottom: 10px;
    color: var(--secondary);
}

.currency {
    font-size: 1.5rem;
    font-weight: 600;
    margin-right: 2px;
}

.amount {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    font-family: 'Playfair Display', serif;
}

.unit {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-left: 8px;
}



.price-note {
    text-align: center;
    margin-top: 40px;
    color: #e74c3c;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: var(--bg-white);
}

.contact h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.contact-info-item {
    text-align: center;
    padding: 30px;
    background: var(--bg-body);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    transition: var(--transition);
}



.contact-info-item svg {
    color: var(--primary);
    width: 40px;
    height: 40px;
    margin-bottom: 15px;
}

.contact-text h4 {
    font-family: 'Manrope', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.contact-text p a {
    color: var(--text-muted);
    font-weight: 500;
}

.contact-text p a:hover {
    color: var(--primary);
}

.contact-form-map {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.contact-form {
    padding: 50px;
    background: white;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
}

.contact-form h3 {
    margin-bottom: 30px;
    font-size: 1.8rem;
    font-family: 'Playfair Display', serif;
    text-align: center;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--secondary);
    font-size: 0.9rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 20px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: 'Manrope', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
    background: var(--bg-body);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: white;
    box-shadow: 0 0 0 3px rgba(211, 84, 0, 0.1);
}

.btn-submit {
    width: 100%;
    border: none;
    background: var(--primary);
    color: white;
    font-size: 1.1rem;
    padding: 15px;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
}

.btn-submit:hover {
    background: var(--primary-dark);
}

.map {
    height: 100%;
    min-height: 400px;
    background: white;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    overflow: hidden;
}

.map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Footer */
footer {
    background: var(--bg-dark);
    color: white;
    padding: 30px 0;
    border-top: 5px solid var(--primary);
}

footer .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    position: relative;
    /* For absolute positioning context on desktop */
}

@media screen and (min-width: 992px) {
    footer {
        padding: 45px 0;
    }

    .gst-container {
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
    }

    .footer-nav {
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
    }
}

/* Mobile Order Reversal */
@media screen and (max-width: 991px) {
    .footer-nav {
        order: 1;
    }

    .gst-container {
        order: 2;
    }

    footer p {
        order: 3;
    }
}

footer p {
    opacity: 0.7;
    font-size: 0.95rem;
    margin-bottom: 0;
    text-align: center;
}

.gst-container {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.footer-nav {
    display: flex;
    gap: 20px;
    align-items: center;
}

.footer-nav a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition);
    font-weight: 500;
}

.footer-nav a:hover {
    color: var(--primary);
}

.gst-badge {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    padding: 8px 16px;
    transition: var(--transition);
}

.gst-label {
    color: var(--primary);
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    margin-right: 10px;
    padding-right: 10px;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    text-transform: uppercase;
}

.gst-number {
    color: white;
    font-family: monospace;
    font-size: 1rem;
    letter-spacing: 1px;
    font-weight: 600;
}

/* Loading Screen */
#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-white);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(211, 84, 0, 0.1);
    border-radius: 50%;
    border-top-color: var(--primary);
    animation: spin 0.8s ease-in-out infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Process Section (New) */
.process {
    padding: 100px 0;
    background: var(--bg-white);
    text-align: center;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 60px;
    position: relative;
}

/* Connecting Line (Desktop Only) */
@media screen and (min-width: 992px) {
    .process-grid::before {
        content: '';
        position: absolute;
        top: 40px;
        left: 50px;
        right: 50px;
        height: 2px;
        background: var(--border);
        z-index: 0;
    }
}

.process-step {
    position: relative;
    z-index: 1;
    background: var(--bg-white);
    /* To hide line behind content if needed */
    padding: 0 10px;
}

.step-icon-wrapper {
    width: 80px;
    height: 80px;
    background: white;
    border: 2px solid var(--primary);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 25px;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    box-shadow: var(--shadow-md);
    position: relative;
}

.step-number {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 30px;
    height: 30px;
    background: var(--secondary);
    color: white;
    border-radius: 50%;
    font-size: 0.9rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid white;
}

.process-step h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--secondary);
}

.process-step p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Why Choose Us Section */
.features-section {
    padding: 100px 0;
    background: var(--bg-white);
    text-align: center;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background: var(--bg-body);
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: rgba(211, 84, 0, 0.1);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: var(--transition);
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--secondary);
    font-family: 'Manrope', sans-serif;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
}

/* Gallery Section */
.gallery-section {
    padding: 100px 0;
    background: var(--bg-white);
}

.slider-wrapper {
    position: relative;
    width: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    /* Clips everything inside, including sliding images */
    box-shadow: var(--shadow-md);
    /* GPU acceleration for smooth clipping */
    transform: translateZ(0);
}

.gallery-slider {
    width: 100%;
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    gap: 0;
    padding: 0;
    /* Removed padding to avoid shadow clipping */
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.gallery-slider::-webkit-scrollbar {
    display: none;
}

.gallery-item {
    flex: 0 0 100%;
    scroll-snap-align: center;
    position: relative;
    height: 500px;
}

/* New Stylish Product Section */
.product-section-new {
    padding: 120px 0;
    background: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.products-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 70px;
    position: relative;
    z-index: 1;
}

.product-card-new {
    background: white;
    border-radius: 24px;
    padding: 0;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.product-top {
    padding: 20px 20px 10px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100px;
}

.product-premium .product-top {
    background: linear-gradient(135deg, #e85d04 0%, #dc2f02 100%);
}

.product-standard .product-top {
    background: linear-gradient(135deg, #f5a623 0%, #d67e0a 100%);
}

.product-economy .product-top {
    background: linear-gradient(135deg, #6c757d 0%, #495057 100%);
}

.product-shape {
    display: flex;
    flex-direction: column;
    gap: 8px;
    transform: rotate(-15deg);
}

.shape-layer {
    width: 40px;
    height: 16px;
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.35);
}

.premium-shape .shape-layer:nth-child(1) {
    width: 40px;
}

.premium-shape .shape-layer:nth-child(2) {
    width: 55px;
}

.premium-shape .shape-layer:nth-child(3) {
    width: 35px;
}

.standard-shape .shape-layer:nth-child(1) {
    width: 35px;
}

.standard-shape .shape-layer:nth-child(2) {
    width: 45px;
}

.standard-shape .shape-layer:nth-child(3) {
    width: 40px;
}

.economy-shape .shape-layer:nth-child(1) {
    width: 45px;
}

.economy-shape .shape-layer:nth-child(2) {
    width: 38px;
}

.economy-shape .shape-layer:nth-child(3) {
    width: 48px;
}

.product-badge-premium {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(255, 255, 255, 0.95);
    color: #dc2f02;
    padding: 5px 12px;
    border-radius: 20px;
    font-weight: 800;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    height: calc(100% - 100px);
}

.product-desc {
    flex: 1;
}

.product-label {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.product-premium .product-label {
    background: rgba(220, 47, 2, 0.1);
    color: #dc2f02;
}

.product-standard .product-label {
    background: rgba(214, 126, 10, 0.1);
    color: #d67e0a;
}

.product-economy .product-label {
    background: rgba(108, 117, 125, 0.1);
    color: #495057;
}

.product-content h3 {
    font-family: var(--font-heading);
    color: var(--secondary);
    margin-bottom: 8px;
    font-size: 1.05rem;
    line-height: 1.2;
}

.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.feature-tag {
    background: var(--bg-light);
    padding: 4px 9px;
    border-radius: 15px;
    font-size: 0.68rem;
    color: var(--text-muted);
    font-weight: 600;
}

.product-desc {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 18px;
    font-size: 0.9rem;
}

.product-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    text-decoration: none;
    padding: 8px 50px;
    border-radius: 50px;
    font-weight: 700;
    width: fit-content;
    margin: 0 auto;
    font-size: 0.85rem;
}

.product-premium .product-cta {
    background: linear-gradient(135deg, #e85d04 0%, #dc2f02 100%);
    color: white;
}

.product-standard .product-cta {
    background: linear-gradient(135deg, #f5a623 0%, #d67e0a 100%);
    color: white;
}

.product-economy .product-cta {
    background: linear-gradient(135deg, #6c757d 0%, #495057 100%);
    color: white;
}

/* Price box styling for product cards */
.product-content .price-box {
    margin-bottom: 15px;
}

/* Features list styling for product cards */
.product-content .features {
    list-style: none;
    padding: 0;
    margin: 10px 0 18px 0;
}

.product-content .features li {
    color: var(--text-muted);
    font-size: 0.85rem;
    padding: 4px 0;
    padding-left: 28px;
    position: relative;
}

.product-content .features li::before {
    content: "•";
    position: absolute;
    left: 5px;
    color: var(--primary);
}

.cta-arrow {
    font-size: 1.2rem;
}

@media screen and (max-width: 768px) {
    .products-container {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 50px;
    }

    .product-top {
        height: 100px;
        padding: 20px 20px;
    }

    .product-content {
        padding: 15px;
    }

    .product-cta {
        padding: 9px 18px;
        font-size: 0.8rem;
        width: 100%;
    }
}

/* Gallery Section Media Query */
@media screen and (max-width: 768px) {
    .slider-wrapper {
        border-radius: var(--radius-md);
    }

    .gallery-item {
        height: 300px;
    }
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Slider Buttons */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    box-shadow: var(--shadow-md);
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
}

.prev-btn {
    left: 10px;
}

.next-btn {
    right: 10px;
}

@media screen and (max-width: 480px) {
    .slider-btn {
        width: 35px;
        height: 35px;
    }

    .prev-btn {
        left: 5px;
    }

    .next-btn {
        right: 5px;
    }
}

.slider-btn:hover {
    background: var(--primary);
    color: white;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: transparent;
    border: 2px solid #ccc;
    /* Border for empty look */
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--primary);
    /* Full fill for active */
    width: 24px;
    border-radius: 10px;
    border-color: var(--primary);
}

/* FAQ */
.faq {
    padding: 100px 0;
    background: var(--bg-light);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

@media screen and (min-width: 992px) {
    .faq-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.faq-item {
    background: white;
    padding: 30px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    transition: var(--transition);
}



.faq-question {
    font-weight: 700;
    font-size: 1.15rem;
    margin-bottom: 15px;
    color: var(--secondary);
    font-family: 'Playfair Display', serif;
}

.faq-answer {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* CTA Banner */
.cta-banner {
    padding: 100px 0;
    background: var(--secondary);
    text-align: center;
    color: white;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    color: white;
    font-size: 2.8rem;
    margin-bottom: 20px;
    font-weight: 800;
}

.cta-content p {
    color: var(--text-light);
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.btn-cta {
    display: inline-block;
    padding: 16px 40px;
    background: var(--primary);
    color: white;
    font-weight: 700;
    border-radius: var(--radius-full);
    text-decoration: none;
    transition: var(--transition);
    border: 2px solid var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.95rem;
}

.btn-cta:hover {
    background: transparent;
    color: var(--primary);
}

@media screen and (max-width: 768px) {
    .cta-banner {
        padding: 80px 0;
    }

    .cta-content h2 {
        font-size: 2rem;
    }
}

/* Mobile Responsive */
@media screen and (max-width: 992px) {
    .hero-title {
        font-size: 3rem;
    }

    .hero-stats {
        gap: 30px;
    }

    .contact-form-map {
        grid-template-columns: 1fr;
    }

    .map {
        height: 300px;
        min-height: auto;
    }
}

@media screen and (max-width: 768px) {
    header {
        padding: 14px 0;
    }

    header .container {
        display: grid;
        grid-template-columns: 48px 1fr 48px;
        /* Equal side columns for perfect centering */
        align-items: center;
        gap: 0;
    }

    .logo {
        display: contents;
    }

    .logo-icon {
        height: 32px;
        width: auto;
        grid-column: 1;
        justify-self: start;
    }

    .logo span {
        grid-column: 2;
        text-align: center;
        font-size: 1.1rem;
        line-height: 1.2;
        font-weight: 800;
        justify-self: center;
        width: 100%;
        padding-top: 3px;
        /* Visual correction for vertical alignment */
    }

    .menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 5px;
        cursor: pointer;
        z-index: 1001;
        grid-column: 3;
        justify-self: end;
    }

    .bar {
        margin: 0;
        /* Remove default margin for precise gap control */
    }

    .menu-toggle.is-active .bar:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.is-active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .menu-toggle.is-active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: 0;
        transform: translateX(100%);
        width: 80%;
        max-width: 300px;
        height: 100vh;
        /* Fallback */
        height: 100dvh;
        background: white;
        flex-direction: column;
        padding-top: 80px;
        /* Increased padding for better spacing from top */
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        gap: 0;
        overflow-y: auto;
        /* Enable vertical scrolling */
        z-index: 1000;
        visibility: hidden;
        transition: transform 0.4s ease, visibility 0s linear 0.4s;
    }

    .nav-menu.active {
        transform: translateX(0);
        visibility: visible;
        transition: transform 0.4s ease, visibility 0s linear 0s;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu a {
        display: block;
        padding: 15px 30px;
        font-size: 1.1rem;
        border-bottom: 1px solid var(--border);
    }

    .nav-menu a::after {
        display: none;
    }

    .hero {
        height: auto;
        min-height: auto;
        padding: 40px 0 60px;
    }

    .hero-title {
        font-size: 2.5rem;
        margin-top: 15px;
    }

    /* Hide Get a Quote button on mobile */
    .hero-buttons .btn-secondary {
        display: none;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
        border-top: none;
        padding-top: 20px;
    }

    .badge {
        display: inline-block !important;
        font-size: 0.8rem;
        padding: 6px 15px;
        margin-bottom: 15px;
        white-space: normal;
        line-height: 1.4;
    }

    .hero-content {
        padding-top: 30px;
    }

    .stat-item {
        background: rgba(255, 255, 255, 0.1);
        padding: 15px;
        border-radius: var(--radius-md);
    }

    .pricing-item.featured {
        transform: none;
    }

    .contact-form {
        padding: 30px 20px;
    }
}

/* Pricing FAQ Section */
.pricing-faq {
    padding: 100px 0;
    background: var(--bg-light);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.faq-card {
    background: var(--bg-white);
    padding: 35px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: var(--transition);
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.faq-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: rgba(211, 84, 0, 0.1);
    color: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.faq-content h4 {
    margin-bottom: 12px;
    color: var(--secondary);
    font-family: 'Manrope', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
}

.faq-content p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
}

@media screen and (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .faq-card {
        padding: 25px;
        flex-direction: column;
    }
}