:root {
    --primary-color: #2a2a2a; /* Dark Charcoal/Metallic from logo */
    --primary-hover: #151515;
    --accent-color: #4a4a4a;
    
    /* Backgrounds */
    --bg-dark: #f9f9f9; /* Subtle off-white for alternating sections */
    --bg-darker: #ffffff; /* Pure white */
    --bg-concrete: #ffffff; /* Pure white background */
    --bg-card-light: #ffffff; /* White cards */
    --bg-card-dark: #ffffff; /* White cards */
    
    /* Text */
    --text-dark: #1a1a1a;
    --text-light: #ffffff; /* Kept for hero section */
    --text-muted-dark: #666666;
    --text-muted-light: #a3a3a3;
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 110px; /* Prevent navbar from overlapping section titles */
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-concrete);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 6rem 0;
}

.bg-dark {
    background-color: var(--bg-dark);
    color: var(--text-dark);
}

.bg-dark h2, .bg-dark h3, .bg-dark h4 {
    color: var(--text-dark);
}

.bg-light {
    background-color: var(--bg-concrete);
    color: var(--text-dark);
}

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.section-header {
    margin-bottom: 4rem;
}

.section-header.center {
    text-align: center;
}

.line {
    height: 3px;
    width: 60px;
    background-color: var(--primary-color);
    margin-top: 10px;
}

.bg-dark .line {
    background-color: var(--accent-color);
}

.line.center {
    margin: 10px auto 0;
}

.subtitle {
    color: var(--text-muted-dark);
    font-size: 1.1rem;
    margin-top: 1rem;
}

/* Buttons */
.btn-primary, .btn-secondary, .btn-outline {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.3), -2px -2px 5px rgba(255,255,255,0.1);
}

.btn-primary {
    background: linear-gradient(145deg, #333333, #222222);
    color: #fff;
    border: 1px solid #111;
}

.btn-primary:hover {
    background: linear-gradient(145deg, #222222, #111111);
    box-shadow: inset 2px 2px 5px rgba(0,0,0,0.5), inset -1px -1px 2px rgba(255,255,255,0.1);
}

.btn-secondary {
    background: linear-gradient(145deg, #e6e6e6, #cccccc);
    color: var(--text-dark);
    border: 1px solid #bbb;
}

.btn-secondary:hover {
    background: linear-gradient(145deg, #cccccc, #bbbbbb);
    box-shadow: inset 2px 2px 5px rgba(0,0,0,0.3), inset -1px -1px 2px rgba(255,255,255,0.5);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--primary-color);
    color: var(--text-dark);
    padding: 8px 20px;
    box-shadow: none;
}

.btn-outline:hover {
    background: var(--primary-color);
    color: #fff;
}

/* Navbar - New Dark Layout */
.new-dark-nav {
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    background: transparent; /* Overlay over hero */
    transition: var(--transition);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.new-dark-nav.scrolled {
    position: fixed;
    background: rgba(30, 30, 50, 0.98); /* Dark purple/blue */
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    padding: 1rem 0;
}

.new-nav-layout {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-left .logo {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}

.nav-left .logo-img {
    height: 70px;
    width: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #f37021; /* Orange border to match theme */
    box-shadow: 0 0 15px rgba(243, 112, 33, 0.3); /* Subtle orange glow */
}

.logo-text-stack {
    display: flex;
    flex-direction: column;
}

.company-name {
    color: #fff;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    line-height: 1.2;
}

.company-tagline {
    color: rgba(255,255,255,0.7);
    font-size: 0.8rem;
    font-weight: 400;
}

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

.nav-center .nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    text-transform: capitalize;
    letter-spacing: 0.5px;
    transition: var(--transition);
}

.nav-center .nav-links a:hover {
    color: #f37021; /* Orange hover */
}

.nav-arrow {
    font-size: 0.7em;
    margin-left: 5px;
    opacity: 0.7;
}

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

.nav-contact {
    color: #fff;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.nav-contact:hover {
    color: #f37021;
}

.hamburger {
    display: none;
    font-size: 1.5rem;
    color: #fff;
    cursor: pointer;
}

.new-full-hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: #000;
}

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

.heroBgSwiper {
    width: 100%;
    height: 100%;
}

.heroBgSwiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(38, 41, 74, 0.9) 0%, rgba(56, 59, 90, 0.7) 100%);
    z-index: 1;
}

.hero-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
    position: relative;
    z-index: 2; /* Sit above overlay */
}

.hero-content-left {
    max-width: 650px;
    margin-top: 5rem; /* Push down slightly past nav */
}

.hero-content-left h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #ffffff;
    font-family: var(--font-heading);
    font-weight: 800;
}

.hero-content-left p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.9);
    margin-bottom: 2.5rem;
    max-width: 550px;
}

.btn-orange {
    display: inline-block;
    background-color: #f37021; /* Vivid orange */
    color: #fff;
    padding: 14px 35px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: background-color 0.3s ease;
    border: none;
}

.btn-orange:hover {
    background-color: #d35400; /* Darker orange */
}

/* Core Values Section (overlapping hero) */
.core-values-section {
    position: relative;
    z-index: 10;
    margin-top: -120px; /* Overlap with hero */
    padding-bottom: 5rem;
}

.core-values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.value-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 3.5rem 2.5rem 2.5rem 2.5rem;
    position: relative;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    overflow: hidden;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    background-color: #f37021; /* Turns orange on hover */
}

.value-icon-wrapper {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background-color: #eef0f5; /* Light grey/blue */
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1b1b3a; /* Dark navy */
    font-size: 2.2rem;
    padding-top: 20px; /* Offset to center icon visually within the visible part */
    padding-right: 20px;
    transition: all 0.3s ease;
}

.value-card:hover .value-icon-wrapper {
    background-color: #ffffff;
    color: #f37021;
}

.value-card h3 {
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 700;
    font-family: var(--font-body);
    transition: color 0.3s ease;
}

.value-card:hover h3 {
    color: #ffffff;
}

.value-card p {
    color: var(--text-muted-dark);
    line-height: 1.6;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.value-card:hover p {
    color: rgba(255, 255, 255, 0.95);
}

@media (max-width: 992px) {
    .core-values-section {
        margin-top: -60px;
    }
}
@media (max-width: 768px) {
    .core-values-section {
        margin-top: 2rem; /* Remove overlap on mobile for cleaner stack */
    }
}

/* ------------------------------------- */

.hero-buttons {
    display: flex;
    gap: 1rem;
}

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

.about-text h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.about-text p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.stats {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
}

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

.stat-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-item h4 {
    font-family: var(--font-body);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-main);
}

.about-image-container {
    position: relative;
    height: 400px;
    background: linear-gradient(135deg, #f0f2f5 0%, #e2e8f0 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0,0,0,0.05);
}

.glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.5);
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    text-align: center;
    width: 80%;
}

.quote-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    opacity: 0.5;
}

.quote {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 1rem;
}

.author {
    color: var(--primary-color);
    font-weight: 600;
}

/* Factory Section */
.factory-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

/* Products Section */
.products.section {
    background-color: #1b1b3a; /* Dark Navy Theme */
}

.products .section-header h2 {
    color: #ffffff;
}

.products .section-header .subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.products .section-header .line {
    background-color: #f37021; /* Orange accent */
}

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

@media (max-width: 992px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
}

.product-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
    border: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    border-bottom: 4px solid #f37021; /* Orange theme accent on cards */
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.product-img {
    height: 260px;
    width: 100%;
    overflow: hidden;
    background-color: #f8f9fa; /* Light background for images if transparent */
}

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

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

.product-info {
    padding: 2.5rem 2rem;
}

.product-info h3 {
    font-size: 1.7rem;
    margin-bottom: 0.8rem;
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--text-dark);
}

.dimensions {
    color: #f37021; /* Theme Orange for dimensions */
    font-weight: 800;
    font-size: 0.85rem;
    margin-bottom: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.product-info .desc {
    color: var(--text-muted-dark);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Standout Section */
.standout-section {
    background-color: #fbf7f4; /* Very light warm off-white */
    padding: 6rem 0;
}

.standout-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.standout-image-wrapper {
    position: relative;
    padding: 2rem 0 0 2rem; /* Space for the orange box to peek out */
    aspect-ratio: 1 / 1; /* Match the square proportion from the mockup */
}

.standout-orange-box {
    position: absolute;
    top: 0;
    left: 0;
    width: 90%;
    height: 90%;
    background-color: #f37021;
    border-radius: 12px;
    z-index: 1;
}

.standout-img {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    display: block;
    cursor: pointer;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.standout-img:hover {
    transform: translate(-2rem, -2rem);
}

.standout-content h2 {
    font-size: 3.5rem;
    color: #f37021;
    line-height: 1.1;
    margin-bottom: 2rem;
    font-family: var(--font-heading);
    font-weight: 800;
}

.standout-content p {
    color: var(--text-dark);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    font-weight: 400;
}

.btn-dark-blue {
    display: inline-block;
    background-color: #1a1b41;
    color: #ffffff;
    padding: 14px 40px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.btn-dark-blue:hover {
    background-color: #0e0f2b;
}

@media (max-width: 992px) {
    .standout-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .standout-image-wrapper {
        padding: 1rem 0 0 1rem;
    }
}

/* Projects Section */
.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 2rem;
}

.project-item {
    text-align: center;
}

.project-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.project-item:hover img {
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.project-item h4 {
    margin-top: 1.5rem;
    font-size: 1.2rem;
    color: var(--text-muted-dark);
    font-family: var(--font-body);
    font-weight: 600;
}

/* Flipbook Styles */
.flip-book-container {
    width: 95%;
    max-width: 900px;
    aspect-ratio: 3 / 2; /* Maintains 2-page spread proportions */
    margin: 2rem auto;
    position: relative;
    display: block;
}

#bricks-flipbook {
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    background-color: #1b1b3a; /* Dark Navy spine */
    margin: 0 auto;
    border: 4px solid #f37021; /* Vivid Orange Border */
    border-radius: 2px;
    position: relative;
}

/* Center spine shadow and line */
#bricks-flipbook::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 40px;
    background: linear-gradient(to right, rgba(0,0,0,0) 0%, rgba(0,0,0,0.05) 40%, rgba(0,0,0,0.2) 49%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.2) 51%, rgba(0,0,0,0.05) 60%, rgba(0,0,0,0) 100%);
    z-index: 5; /* Sit between pages and shadows */
    transform: translateX(-50%);
    pointer-events: none;
}

/* Staples */
.staple {
    position: absolute;
    left: 50%;
    width: 2px;
    height: 18px;
    background: linear-gradient(to right, #666 0%, #ccc 50%, #666 100%);
    z-index: 10;
    transform: translateX(-50%);
    box-shadow: 1px 1px 2px rgba(0,0,0,0.4), -1px 0 1px rgba(255,255,255,0.8) inset;
    border-radius: 1px;
}
.staple-top {
    top: 15%;
}
.staple-bottom {
    bottom: 15%;
}

.page {
    background-color: #ffffff;
    overflow: hidden;
    width: 100%;
    height: 100%;
    /* Left page gradient by default (shadow on right side near spine) */
    background: linear-gradient(to right, #ffffff 75%, #f4f4f4 90%, #dfdfdf 97%, #b5b5b5 100%);
}

/* Right page gradient (shadow on left side near spine) */
.page:nth-child(even) {
    background: linear-gradient(to left, #ffffff 75%, #f4f4f4 90%, #dfdfdf 97%, #b5b5b5 100%);
}

/* Fallback before StPageFlip initializes */
#bricks-flipbook:not(.stf__parent) .page {
    display: none;
}
#bricks-flipbook:not(.stf__parent) .page:first-child {
    display: block;
}

.page-content {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1.5rem;
}

.page-content img {
    max-width: 95%;
    max-height: 80%;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.page-content h4 {
    margin-top: 1rem;
    font-size: 1.1rem;
    color: var(--text-dark);
    text-align: center;
    font-weight: 600;
}

@media (max-width: 768px) {
    .page-content {
        padding: 0.5rem;
    }
    .page-content h4 {
        margin-top: 0.5rem;
        font-size: 0.8rem;
    }
    .cover-content h2 {
        font-size: 1.5rem;
    }
    .cover-content p {
        font-size: 0.9rem;
    }
    /* Hide staples on very small screens to save space */
    .staple {
        display: none;
    }
    #bricks-flipbook {
        border-width: 2px;
    }
}

.page-cover {
    background-color: #1b1b3a; /* Dark Navy cover */
    color: #fff;
    border: none;
}

.cover-content {
    background-color: #1b1b3a; /* Dark Navy cover */
}

.cover-content h2 {
    color: var(--text-light);
    font-size: 2rem;
    margin-bottom: 0.5rem;
    text-align: center;
}

.cover-content p {
    color: var(--text-muted-light);
    font-size: 1.1rem;
    text-align: center;
}

.book-logo {
    width: 65%;
    max-width: 200px;
    height: auto;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(255,255,255,0.1) !important;
    margin-bottom: 1.5rem;
}

.stf__wrapper {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Services Section - Slider Design */
.services-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 2rem;
}

.services-title-col {
    max-width: 650px;
}

.services-title-col h2 {
    font-size: 2.8rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.services-title-col p {
    color: var(--text-muted-dark);
    line-height: 1.6;
    font-size: 1.1rem;
}

.services-nav-col {
    display: flex;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.swiper-button-prev-custom,
.swiper-button-next-custom {
    width: 45px;
    height: 45px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.swiper-button-prev-custom:hover,
.swiper-button-next-custom:hover {
    background-color: #b84300;
}

.servicesSwiper {
    padding-bottom: 3rem !important; /* Space for pagination */
}

.service-slide-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 420px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.service-slide-card .service-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-slide-card:hover .service-bg {
    transform: scale(1.05);
}

.service-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(211,84,0,0.3) 50%, rgba(211,84,0,0.9) 100%);
    pointer-events: none;
}

.service-top {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    z-index: 2;
}

.service-number {
    font-size: 4rem;
    font-weight: 300; /* Thinner font weight */
    color: transparent;
    -webkit-text-stroke: 1px rgba(255,255,255,0.8); /* Thinner stroke */
    font-family: var(--font-body); /* Sans-serif font */
    line-height: 1;
}

.service-arrow {
    width: 50px;
    height: 50px;
    background-color: rgba(255,255,255,0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    font-size: 1.2rem;
    transition: var(--transition);
}

.service-slide-card:hover .service-arrow {
    background-color: #fff;
    transform: translate(5px, -5px);
}

.service-bottom {
    position: absolute;
    bottom: 25px;
    left: 25px;
    right: 25px;
    color: #fff;
    z-index: 2;
}

.service-bottom h3 {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-family: var(--font-body); /* Sans-serif font */
    color: #ffffff; /* Explicitly set to white */
}

.service-bottom p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: rgba(255,255,255,0.9);
}

/* Pagination specific for services */
.services-pagination.swiper-pagination-bullets {
    bottom: 0;
}
.services-pagination .swiper-pagination-bullet {
    background: #ccc;
    opacity: 1;
    width: 10px;
    height: 10px;
    margin: 0 6px !important;
}
.services-pagination .swiper-pagination-bullet-active {
    background: var(--primary-color);
    width: 25px;
    border-radius: 5px;
}

@media (max-width: 768px) {
    .services-header-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }
}

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

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.c-icon {
    width: 50px;
    height: 50px;
    background: rgba(0,0,0,0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.c-text h4 {
    font-family: var(--font-body);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.c-text p, .c-text a {
    color: var(--text-muted-dark);
}

.c-text a:hover {
    color: var(--primary-color);
}

.map-container {
    background: var(--bg-card-dark);
    border-radius: 8px;
    overflow: hidden;
    height: 100%;
    min-height: 400px;
    position: relative;
    border: 1px solid rgba(0,0,0,0.1);
}

.map-placeholder {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.map-placeholder i {
    font-size: 4rem;
    color: rgba(255,255,255,0.1);
    margin-bottom: 1rem;
}

.map-placeholder h3 {
    color: var(--text-muted);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

/* Footer */
footer {
    background-color: var(--bg-dark);
    padding: 2rem 0;
    text-align: center;
    border-top: 1px solid rgba(0,0,0,0.1);
}

.footer-bottom p {
    color: #666;
    font-size: 0.9rem;
}

/* Modal / Lightbox Styles */
.custom-modal {
    display: none; 
    position: fixed; 
    z-index: 1000; 
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%; 
    overflow: auto; 
    background-color: rgba(0,0,0,0.9);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.custom-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.modal-dialog {
    position: relative;
    background-color: #fff;
    margin: auto;
    padding: 0;
    width: 90%;
    max-width: 900px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0,0,0,0.5);
    display: flex;
    flex-direction: column;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.custom-modal.show .modal-dialog {
    transform: scale(1);
}

.modal-close {
    color: white;
    position: absolute;
    top: 15px;
    right: 25px;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.modal-close:hover,
.modal-close:focus {
    color: #f37021;
    text-decoration: none;
}

.modal-body {
    display: flex;
    flex-direction: column;
}

@media (min-width: 768px) {
    .modal-body {
        flex-direction: row;
    }
}

.modal-image-container {
    flex: 1.5;
    background: #000;
}

.modal-image-container img {
    width: 100%;
    height: 100%;
    max-height: 600px;
    object-fit: cover;
    display: block;
}

.modal-info {
    flex: 1;
    padding: 3rem 2rem;
    background-color: var(--bg-card);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.modal-info h3 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

.modal-info p {
    color: var(--text-muted-dark);
    line-height: 1.7;
    font-size: 1.1rem;
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s forwards cubic-bezier(0.2, 0.8, 0.2, 1);
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }

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

.mt-2 {
    margin-top: 1rem;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-text-side {
        max-width: 100%;
    }
    .hero p {
        margin: 0 auto 2.5rem auto;
    }
    .hero-slider-side {
        height: 350px;
    }
    .hero h1 { font-size: 3.5rem; }
    .about-content, .contact-wrapper { grid-template-columns: 1fr; }
    .about-image-container { height: 300px; }
}

@media (max-width: 768px) {
    .nav-center .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(30, 30, 50, 0.98);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        clip-path: circle(0% at 100% 0);
        transition: all 0.5s ease-out;
    }
    
    .nav-center .nav-links.active {
        clip-path: circle(150% at 100% 0);
    }
    
    .hamburger { display: block; }
    .hero h1 { font-size: 2.5rem; }
    .hero p { font-size: 1.1rem; }
    .hero-buttons { flex-direction: column; justify-content: center; align-items: center; }
    .hero-slider-side { height: 250px; }
    h2 { font-size: 2rem; }
    .footer-logo, .footer-links { text-align: center !important; align-items: center !important; }
    .footer-logo p { margin-left: auto; margin-right: auto; }
    .footer-links ul { align-items: center !important; }
}
