@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800;900&display=swap');

/* --- CUSTOM VARIABLES --- */
:root {
    --primary: #0F172A;         /* Primary Industrial Slate Blue-Black */
    --secondary: #374151;       /* Steel Grey */
    --accent: #F97316;          /* Industrial Orange */
    --accent-hover: #EA580C;
    --accent-active: #C2410C;
    --dark-bg: #FFFFFF;         /* Plain white background */
    --dark-card: #F9FAFB;       /* Very light grey */
    --light-bg: #FFFFFF;        /* Plain white background */
    --light-card: #FFFFFF;
    --text-dark: #111827;
    --text-light: #1F2937;      /* Dark grey text */
    --text-muted: #4B5563;
    --text-muted-dark: #6B7280;
    --border-light: #E5E7EB;
    --border-dark: #E5E7EB;     /* Light borders */
    
    --font-headings: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    
    --container-width: 1280px;
    --header-height: 85px;
}

/* --- RESET & GLOBAL STYLES --- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--secondary);
    background-color: var(--light-bg);
    overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--primary);
}
::-webkit-scrollbar-thumb {
    background: var(--accent);
    border: 2px solid var(--primary);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent-hover);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-headings);
    color: var(--primary);
    font-weight: 700;
    line-height: 1.2;
}

p {
    margin-bottom: 1rem;
}

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

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

/* --- LAYOUT UTILITIES --- */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: 80px 0;
    position: relative;
}

.section-dark {
    background-color: #FFFFFF;
    color: var(--secondary);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.section-dark h2, .section-dark h3 {
    color: var(--primary);
}

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

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

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

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

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

@media (max-width: 768px) {
    .grid-2, .grid-3, .grid-4 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .section {
        padding: 60px 0;
    }
}

/* Section Headings */
.section-header {
    margin-bottom: 3.5rem;
    position: relative;
}

.section-subtitle {
    text-transform: uppercase;
    color: var(--accent);
    font-family: var(--font-headings);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 0.75rem;
    display: block;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    position: relative;
    padding-bottom: 1.25rem;
    margin-bottom: 1.25rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background-color: var(--accent);
}

.section-header.text-center .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

.section-header p {
    max-width: 700px;
    margin: 0 auto;
    color: var(--text-muted);
}

.section-dark .section-header p {
    color: var(--text-muted-dark);
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
}

/* --- BUTTONS --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1.85rem;
    font-family: var(--font-headings);
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 4px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    gap: 0.5rem;
}

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

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
}

.btn-secondary {
    background-color: transparent;
    border-color: var(--primary);
    color: var(--primary);
}

.btn-secondary:hover {
    background-color: var(--primary);
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(17, 24, 39, 0.15);
}

.btn-dark {
    background-color: var(--primary);
    color: #FFFFFF;
    border-color: var(--primary);
}

.btn-dark:hover {
    background-color: transparent;
    color: var(--primary);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--accent);
    color: var(--accent);
}

.btn-outline:hover {
    background-color: var(--accent);
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.2);
}

/* --- HEADER & NAVIGATION --- */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(17, 24, 39, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

header.scrolled {
    padding: 0.5rem 0;
    box-shadow: var(--shadow-lg);
    background-color: rgba(17, 24, 39, 0.98);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: var(--header-height);
}

/* Logo Design */
.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background-color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    clip-path: polygon(50% 0%, 93% 25%, 93% 75%, 50% 100%, 7% 75%, 7% 25%);
    font-weight: 900;
    color: var(--primary);
    font-size: 1.5rem;
    font-family: var(--font-headings);
}

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

.logo-main {
    font-family: var(--font-headings);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: 0.5px;
    line-height: 1.1;
}

.logo-sub {
    font-family: var(--font-headings);
    font-size: 0.75rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

/* Nav Menu */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.75rem;
}

.nav-link {
    font-family: var(--font-headings);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-light);
    position: relative;
    padding: 0.5rem 0;
}

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

.nav-link:hover {
    color: var(--accent);
}

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

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

.header-cta {
    display: flex;
    align-items: center;
}

/* Mobile Toggle */
.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    width: 30px;
    z-index: 1001;
}

.mobile-nav-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #FFFFFF;
    transition: var(--transition);
    border-radius: 2px;
}

@media (max-width: 1024px) {
    .mobile-nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background-color: var(--primary);
        flex-direction: column;
        padding: 120px 2.5rem 2rem 2.5rem;
        box-shadow: -5px 0 25px rgba(0,0,0,0.5);
        transition: var(--transition);
        z-index: 1000;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu li {
        width: 100%;
    }
    
    .nav-link {
        font-size: 1.2rem;
        display: block;
        padding: 0.75rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .header-cta {
        display: none;
    }
    
    /* Toggle Animations */
    .mobile-nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    .mobile-nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    .mobile-nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -7px);
    }
}

/* --- HERO SECTION --- */
.hero {
    height: 100vh;
    min-height: 600px;
    background-color: var(--light-bg);
    position: relative;
    display: flex;
    align-items: center;
    color: var(--primary);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 40%, rgba(255, 255, 255, 0.6) 100%), url('assets/hero_bg.jpg');
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-tag {
    background-color: rgba(249, 115, 22, 0.15);
    color: var(--accent);
    border-left: 4px solid var(--accent);
    padding: 0.4rem 1rem;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 1.5rem;
    font-family: var(--font-headings);
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-title span {
    color: var(--accent);
}

.hero-desc {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    color: var(--secondary);
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    .hero-desc {
        font-size: 1rem;
    }
    .hero-actions {
        flex-direction: column;
        gap: 1rem;
    }
    .hero-actions .btn {
        width: 100%;
    }
}

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

.about-img-container {
    position: relative;
}

.about-img-frame {
    border: 3px solid var(--border-light);
    border-radius: 4px;
    padding: 15px;
    background: #FFFFFF;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.about-img-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background-color: var(--accent);
    color: #FFFFFF;
    padding: 1.5rem;
    border-radius: 4px;
    box-shadow: var(--shadow-lg);
    text-align: center;
    font-family: var(--font-headings);
    z-index: 10;
}

.about-badge-num {
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1;
    display: block;
}

.about-badge-txt {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-bullets {
    list-style: none;
    margin-top: 1.5rem;
    margin-bottom: 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.about-bullet-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    font-size: 0.95rem;
}

.about-bullet-item i {
    color: var(--accent);
}

@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

/* --- SERVICE CARDS --- */
.services-card {
    background-color: #FFFFFF;
    border: 1px solid var(--border-light);
    border-radius: 4px;
    padding: 2.5rem 2rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.services-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.services-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.services-card:hover::before {
    transform: scaleX(1);
}

.service-icon-box {
    width: 65px;
    height: 65px;
    background-color: rgba(249, 115, 22, 0.1);
    color: var(--accent);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.services-card:hover .service-icon-box {
    background-color: var(--accent);
    color: #FFFFFF;
}

.service-card-title {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.service-card-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service-card-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-headings);
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-card-link i {
    font-size: 0.8rem;
    transition: var(--transition);
}

.services-card:hover .service-card-link {
    color: var(--accent);
}

.services-card:hover .service-card-link i {
    transform: translateX(5px);
}

/* --- WHY CHOOSE US --- */
.why-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.why-feats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.why-feat-card {
    display: flex;
    gap: 1.25rem;
}

.why-feat-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(249, 115, 22, 0.15);
    color: var(--accent);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.why-feat-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.why-feat-desc {
    color: var(--text-muted-dark);
    font-size: 0.9rem;
}

.why-img {
    border-radius: 4px;
    box-shadow: var(--shadow-lg);
    border: 3px solid var(--border-dark);
}

@media (max-width: 1024px) {
    .why-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 576px) {
    .why-feats {
        grid-template-columns: 1fr;
    }
}

/* --- INDUSTRIES WE SERVE --- */
.ind-card {
    background-color: var(--dark-card);
    border: 1px solid var(--border-dark);
    border-radius: 4px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: var(--transition);
}

.ind-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.ind-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(249, 115, 22, 0.1);
    color: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.85rem;
    margin: 0 auto 1.5rem auto;
    border: 1px solid rgba(249, 115, 22, 0.3);
    transition: var(--transition);
}

.ind-card:hover .ind-icon {
    background-color: var(--accent);
    color: #FFFFFF;
    transform: rotateY(180deg);
}

.ind-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.ind-desc {
    font-size: 0.9rem;
    color: var(--text-muted-dark);
}

/* --- PROJECTS/SHOWCASE LAYOUT --- */
.project-filter-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    background-color: #FFFFFF;
    border: 1px solid var(--border-light);
    color: var(--secondary);
    padding: 0.6rem 1.4rem;
    font-family: var(--font-headings);
    font-weight: 700;
    cursor: pointer;
    border-radius: 4px;
    transition: var(--transition);
    font-size: 0.9rem;
}

.filter-btn.active, .filter-btn:hover {
    background-color: var(--accent);
    color: #FFFFFF;
    border-color: var(--accent);
}

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

.project-item {
    background-color: #FFFFFF;
    border-radius: 4px;
    border: 1px solid var(--border-light);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.project-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.project-img-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
    background-color: var(--primary);
}

.project-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.project-item:hover .project-img-wrapper img {
    transform: scale(1.08);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(17, 24, 39, 0.9) 0%, rgba(17, 24, 39, 0.2) 100%);
    opacity: 0;
    transition: var(--transition);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
}

.project-item:hover .project-overlay {
    opacity: 1;
}

.project-overlay-content {
    color: #FFFFFF;
}

.project-cat {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent);
    font-weight: 700;
    display: block;
    margin-bottom: 0.25rem;
}

.project-title {
    font-size: 1.2rem;
    font-weight: 700;
}

.project-details {
    padding: 1.5rem;
}

.project-details-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.project-meta-info {
    font-size: 0.85rem;
    color: var(--text-muted);
}

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

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

/* --- GALLERY PAGE SPECIFIC --- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.gallery-item {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
    border: 1px solid var(--border-light);
}

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

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

.gallery-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(17, 24, 39, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

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

.gallery-icon-zoom {
    width: 50px;
    height: 50px;
    background-color: var(--accent);
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

@media (max-width: 1024px) {
    .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .gallery-grid { grid-template-columns: 1fr; }
}

/* Modal Lightbox */
.lightbox-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(17, 24, 39, 0.95);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.lightbox-content-wrapper {
    position: relative;
    max-width: 90%;
    max-height: 85%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-img {
    max-width: 100%;
    max-height: 75vh;
    object-fit: contain;
    border: 3px solid var(--border-dark);
    border-radius: 4px;
}

.lightbox-caption {
    color: #FFFFFF;
    margin-top: 1rem;
    font-family: var(--font-headings);
    font-size: 1.1rem;
    text-align: center;
}

.lightbox-close {
    position: absolute;
    top: -45px;
    right: 0;
    color: #FFFFFF;
    font-size: 2rem;
    cursor: pointer;
    transition: var(--transition);
}

.lightbox-close:hover {
    color: var(--accent);
}

.lightbox-prev, .lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #FFFFFF;
    font-size: 2.5rem;
    cursor: pointer;
    user-select: none;
    transition: var(--transition);
    background-color: rgba(0,0,0,0.5);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.lightbox-prev:hover, .lightbox-next:hover {
    color: var(--accent);
    background-color: rgba(0,0,0,0.8);
}

.lightbox-prev { left: -75px; }
.lightbox-next { right: -75px; }

@media (max-width: 768px) {
    .lightbox-prev { left: 10px; }
    .lightbox-next { right: 10px; }
    .lightbox-close { right: 10px; top: -50px; }
}

/* --- TESTIMONIALS --- */
.testimonials-carousel {
    display: flex;
    overflow: hidden;
    position: relative;
    flex-direction: column;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease;
    width: 100%;
}

.testimonial-slide {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 0 15px;
    box-sizing: border-box;
}

.testimonial-card {
    background-color: #FFFFFF;
    border: 1px solid var(--border-light);
    border-radius: 4px;
    padding: 3rem 2.5rem;
    text-align: center;
    position: relative;
    box-shadow: var(--shadow);
}

.testimonial-quote-icon {
    font-size: 3rem;
    color: rgba(249, 115, 22, 0.15);
    position: absolute;
    top: 15px;
    left: 25px;
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--secondary);
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.testimonial-client {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.client-name {
    font-family: var(--font-headings);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--primary);
}

.client-company {
    font-size: 0.85rem;
    color: var(--accent);
    text-transform: uppercase;
    font-weight: 600;
    margin-top: 0.25rem;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.dot {
    width: 12px;
    height: 12px;
    background-color: var(--border-light);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background-color: var(--accent);
    width: 25px;
    border-radius: 6px;
}

/* --- CONTACT & FORMS --- */
.contact-section-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
}

.contact-card {
    background-color: #FFFFFF;
    border-radius: 4px;
    border: 1px solid var(--border-light);
    padding: 3rem 2.5rem;
    box-shadow: var(--shadow-lg);
}

.form-group-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

@media (max-width: 576px) {
    .form-group-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

.form-group {
    margin-bottom: 1.5rem;
    position: relative;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-family: var(--font-headings);
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-input, .form-textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 2px solid var(--border-light);
    border-radius: 4px;
    background-color: var(--light-bg);
    color: var(--primary);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition);
}

.form-input:focus, .form-textarea:focus {
    outline: none;
    border-color: var(--accent);
    background-color: #FFFFFF;
    box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 150px;
}

.info-column {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-block {
    display: flex;
    gap: 1.25rem;
    background-color: #FFFFFF;
    border: 1px solid var(--border-light);
    padding: 1.75rem;
    border-radius: 4px;
    box-shadow: var(--shadow);
}

.info-icon {
    width: 55px;
    height: 55px;
    background-color: rgba(249, 115, 22, 0.1);
    color: var(--accent);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.info-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
}

.info-text {
    font-size: 0.95rem;
    color: var(--text-muted);
}

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

.info-link:hover {
    color: var(--accent);
}

/* Inline Inquiry Block */
.quick-inquiry-box {
    background-color: var(--dark-card);
    border: 1px solid var(--border-dark);
    padding: 3rem;
    border-radius: 4px;
    text-align: center;
}

@media (max-width: 1024px) {
    .contact-section-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

/* Map Embed */
.map-container {
    width: 100%;
    height: 450px;
    border-radius: 4px;
    overflow: hidden;
    border: 3px solid var(--border-light);
    box-shadow: var(--shadow-lg);
    margin-top: 3rem;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* --- FOOTER --- */
footer {
    background-color: #F9FAFB;
    color: var(--secondary);
    padding: 80px 0 30px 0;
    border-top: 4px solid var(--accent);
    border-bottom: 1px solid var(--border-light);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 40px;
}

.footer-widget-title {
    font-size: 1.25rem;
    margin-bottom: 1.75rem;
    position: relative;
    padding-bottom: 0.75rem;
    color: var(--primary);
}

.footer-widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 3px;
    background-color: var(--accent);
}

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

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

.social-icon {
    width: 40px;
    height: 40px;
    background-color: #FFFFFF;
    color: var(--text-muted);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

.social-icon:hover {
    background-color: var(--accent);
    color: #FFFFFF;
    border-color: var(--accent);
    transform: translateY(-3px);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.footer-contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.footer-contact-icon {
    color: var(--accent);
    font-size: 1.1rem;
    margin-top: 3px;
}

.footer-contact-text {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.footer-contact-text strong {
    color: var(--primary);
    display: block;
    margin-bottom: 0.15rem;
}

.footer-bottom {
    border-top: 1px solid var(--border-light);
    padding-top: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

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

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    .footer-bottom-links {
        justify-content: center;
    }
}

/* --- FLOATING ACTION WIDGETS (DESKTOP) --- */
.floating-widget-stack {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
}

.float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 1.6rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    position: relative;
}

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

.float-whatsapp {
    background-color: #25D366;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.float-phone {
    background-color: #0F172A;
    border: 2px solid var(--accent);
    color: #FFFFFF;
}

.float-quote {
    background-color: var(--accent);
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.4);
}

/* Tooltips */
.float-btn::before {
    content: attr(data-tooltip);
    position: absolute;
    right: 75px;
    background-color: #0F172A;
    color: #FFFFFF;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-family: var(--font-headings);
    font-weight: 700;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.float-btn:hover::before {
    opacity: 1;
    visibility: visible;
}

.whatsapp-ripple {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #25D366;
    opacity: 0.4;
    animation: ripple 2s infinite ease-in-out;
    z-index: -1;
}

@keyframes ripple {
    0% {
        transform: scale(1);
        opacity: 0.4;
    }
    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

/* --- MOBILE BOTTOM ACTION BAR --- */
.mobile-bottom-bar {
    display: none;
}

@media (max-width: 768px) {
    .floating-widget-stack {
        display: none;
    }
    
    .mobile-bottom-bar {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 60px;
        background-color: #FFFFFF;
        box-shadow: 0 -4px 10px rgba(0,0,0,0.1);
        z-index: 9999;
        border-top: 1px solid var(--border-light);
    }
    
    .mobile-action-btn {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        text-decoration: none;
        font-family: var(--font-headings);
        font-weight: 700;
        font-size: 0.9rem;
        transition: var(--transition);
    }
    
    .mobile-action-btn:not(:last-child) {
        border-right: 1px solid var(--border-light);
    }
    
    .mobile-action-btn.btn-call {
        color: var(--primary);
    }
    
    .mobile-action-btn.btn-whatsapp {
        background-color: #25D366;
        color: #FFFFFF;
    }
    
    .mobile-action-btn.btn-quote {
        background-color: var(--accent);
        color: #FFFFFF;
    }
    
    body {
        padding-bottom: 60px;
    }
}

/* --- INNER PAGES BREADCRUMB HERO --- */
.inner-hero {
    height: 250px;
    background-color: #FFFFFF;
    background-image: linear-gradient(135deg, rgba(255, 255, 255, 0.96) 50%, rgba(255, 255, 255, 0.8) 100%), url('assets/hero_bg.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: var(--primary);
    padding-top: var(--header-height);
    border-bottom: 1px solid var(--border-light);
}

.inner-hero-title {
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.breadcrumb {
    display: flex;
    gap: 0.5rem;
    list-style: none;
    font-size: 0.9rem;
    font-family: var(--font-headings);
    font-weight: 600;
}

.breadcrumb-item {
    color: var(--text-muted-dark);
}

.breadcrumb-item a {
    color: var(--secondary);
}

.breadcrumb-item a:hover {
    color: var(--accent);
}

.breadcrumb-item.active {
    color: var(--accent);
}

.breadcrumb-item + .breadcrumb-item::before {
    content: '/';
    color: var(--text-muted-dark);
    margin-right: 0.5rem;
}

/* --- ANIMATION / SCROLL TRIGGERS --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.reveal-left {
    transform: translateX(-40px);
}

.reveal.reveal-right {
    transform: translateX(40px);
}

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

/* Quality & Safety Badges */
.badge-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 2rem;
}

.quality-badge {
    border: 1px solid var(--border-light);
    background: #FFFFFF;
    border-radius: 4px;
    padding: 0.75rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-headings);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: var(--shadow);
}

.quality-badge i {
    font-size: 1.25rem;
    color: var(--accent);
}

.section-dark .quality-badge {
    background: var(--dark-card);
    border-color: var(--border-dark);
    color: #FFFFFF;
}

/* Services Detail Page Specifics */
.services-detail-grid {
    display: flex;
    flex-direction: column;
    gap: 5rem;
}

.service-detail-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.service-detail-item:nth-child(even) {
    direction: rtl;
}

.service-detail-item:nth-child(even) .service-detail-content {
    direction: ltr;
}

.service-detail-img {
    border-radius: 4px;
    box-shadow: var(--shadow-lg);
    border: 3px solid var(--border-light);
    aspect-ratio: 4/3;
    object-fit: cover;
}

.service-detail-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1.25rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.service-detail-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--accent);
}

.service-detail-content ul {
    list-style: none;
    margin: 1.5rem 0 2rem 0;
}

.service-detail-content ul li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.service-detail-content ul li i {
    color: var(--accent);
    margin-top: 4px;
    font-size: 0.9rem;
}

.service-process {
    background-color: var(--light-bg);
    border: 1px solid var(--border-light);
    border-radius: 4px;
    padding: 1.25rem;
    margin-top: 1.5rem;
}

.service-process h5 {
    font-family: var(--font-headings);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    color: var(--primary);
    margin-bottom: 0.75rem;
    letter-spacing: 1px;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10%;
    width: 80%;
    height: 2px;
    background-color: var(--border-light);
    z-index: 1;
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 2;
    flex: 1;
}

.process-dot {
    width: 22px;
    height: 22px;
    background-color: #FFFFFF;
    border: 2px solid var(--accent);
    border-radius: 50%;
    margin: 0 auto 0.5rem auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--accent);
}

.process-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--secondary);
    display: block;
}

@media (max-width: 1024px) {
    .service-detail-item {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}
