@import url('https://fonts.googleapis.com/css?family=Abel:400%7CRoboto+Condensed:300,400,700');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
    --primary-dark: #0f172a;       /* Slate 900 */
    --secondary-dark: #1e293b;     /* Slate 800 */
    --accent-orange: #f97316;     /* Safety Orange */
    --accent-orange-hover: #ea580c;
    --text-main: #1e293b;
    --text-muted: #64748b;
    --text-light: #f8fafc;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --border-color: #e2e8f0;
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-premium: 0 10px 30px -10px rgba(15, 23, 42, 0.08), 0 1px 3px rgba(15, 23, 42, 0.03);
    --shadow-hover: 0 20px 40px -15px rgba(249, 115, 22, 0.15), 0 1px 5px rgba(249, 115, 22, 0.05);
}

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

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

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

/* Blueprint Grid Background Pattern */
.blueprint-bg {
    background-color: var(--bg-light);
    background-image: 
        linear-gradient(rgba(226, 232, 240, 0.4) 1px, transparent 1px),
        linear-gradient(90deg, rgba(226, 232, 240, 0.4) 1px, transparent 1px);
    background-size: 40px 40px;
    background-position: center center;
}

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

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

ul {
    list-style: none;
}

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

/* Premium Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 2rem;
    font-family: var(--font-heading);
    font-weight: 600;
    border-radius: 4px;
    transition: var(--transition-smooth);
    cursor: pointer;
    font-size: 0.95rem;
    border: none;
    outline: none;
}

.btn-primary {
    background-color: var(--accent-orange);
    color: var(--text-light);
}

.btn-primary:hover {
    background-color: var(--accent-orange-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -5px rgba(249, 115, 22, 0.4);
}

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

.btn-secondary:hover {
    background-color: var(--primary-dark);
    color: var(--bg-white);
    transform: translateY(-2px);
}

.btn-white {
    background-color: var(--bg-white);
    color: var(--primary-dark);
}

.btn-white:hover {
    background-color: var(--accent-orange);
    color: var(--text-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -5px rgba(249, 115, 22, 0.3);
}

/* Navigation Header */
header.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition-smooth);
}

header.site-header.scrolled {
    padding: 0.5rem 0;
    box-shadow: var(--shadow-premium);
}

.header-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-wrapper a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-text {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--primary-dark);
    letter-spacing: -0.5px;
}

.logo-text span {
    color: var(--accent-orange);
}

.main-navigation {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    font-family: var(--font-heading);
    font-weight: 500;
    color: var(--secondary-dark);
    position: relative;
    padding: 0.5rem 0;
}

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

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

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

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary-dark);
}

/* Mobile Nav Drawer */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background-color: var(--bg-white);
    z-index: 1001;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition-smooth);
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.mobile-nav.open {
    right: 0;
}

.mobile-nav-close {
    align-self: flex-end;
    font-size: 1.5rem;
    cursor: pointer;
}

.mobile-menu {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mobile-link {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-dark);
}

.mobile-link:hover,
.mobile-link.active {
    color: var(--accent-orange);
}

.overlay-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(4px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

.overlay-backdrop.active {
    opacity: 1;
    visibility: visible;
}

/* Topbar Notification Info */
.topbar {
    background-color: var(--primary-dark);
    color: var(--text-light);
    font-size: 0.85rem;
    padding: 0.5rem 2rem;
}

.topbar-container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.topbar-info {
    display: flex;
    gap: 1.5rem;
}

.topbar-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.topbar-item i {
    color: var(--accent-orange);
}

.topbar-socials {
    display: flex;
    gap: 1rem;
}

.topbar-socials a:hover {
    color: var(--accent-orange);
}

/* ------------------ HERO CAROUSEL SECTION ------------------ */
.hero-slider-section {
    position: relative;
    width: 100vw;
    height: 90vh;
    margin-top: 90px;
    overflow: hidden;
}

.slider-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 1;
    transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 10s ease;
}

.slide.active .slide-bg {
    transform: scale(1.08);
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.7) 45%, rgba(15, 23, 42, 0) 100%);
    z-index: 2;
}

.slide-content-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
    position: relative;
    z-index: 3;
    color: var(--text-light);
}

.slide-content {
    max-width: 700px;
    transform: translateY(30px);
    opacity: 0;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.3s, opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
}

.slide.active .slide-content {
    transform: translateY(0);
    opacity: 1;
}

.slide-tagline {
    font-family: var(--font-heading);
    color: var(--accent-orange);
    background-color: rgba(249, 115, 22, 0.15);
    border: 1px solid rgba(249, 115, 22, 0.3);
    padding: 0.35rem 1rem;
    border-radius: 50px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    font-size: 0.8rem;
    display: inline-block;
}

.slide-title {
    font-size: 3.75rem;
    font-weight: 800;
    color: var(--bg-white);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(15, 23, 42, 0.5);
}

.slide-desc {
    font-size: 1.15rem;
    color: #cbd5e1;
    margin-bottom: 2.5rem;
    max-width: 580px;
    text-shadow: 0 2px 10px rgba(15, 23, 42, 0.5);
}

.slide-ctas {
    display: flex;
    gap: 1rem;
}

/* Slider Controls */
.slider-nav {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    z-index: 10;
    display: flex;
    gap: 1rem;
}

.slider-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    transition: var(--transition-smooth);
}

.slider-btn:hover {
    background-color: var(--accent-orange);
    border-color: var(--accent-orange);
    color: var(--text-light);
    transform: scale(1.05);
}

.slider-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 0.5rem;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.slider-dot.active {
    background-color: var(--accent-orange);
    width: 30px;
    border-radius: 10px;
}

/* ------------------ SPECIAL SERVICES 4-CARD GRID ------------------ */
.special-services-section {
    padding: 6rem 2rem;
    max-width: 1280px;
    margin: 0 auto;
}

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

.section-tagline {
    color: var(--accent-orange);
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    display: block;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
}

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

.service-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    padding: 2.5rem 2rem;
    border-radius: 6px;
    box-shadow: var(--shadow-premium);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--accent-orange);
    z-index: -1;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: rgba(249, 115, 22, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--accent-orange);
    margin-bottom: 1.5rem;
    transition: var(--transition-smooth);
}

.service-card-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    transition: var(--transition-smooth);
}

.service-card-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    transition: var(--transition-smooth);
}

/* Hover effects inspired by references */
.service-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-8px);
}

.service-card:hover::before {
    transform: translateY(0);
}

.service-card:hover .service-card-icon {
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--bg-white);
    transform: rotate(360deg);
}

.service-card:hover .service-card-title {
    color: var(--bg-white);
}

.service-card:hover .service-card-desc {
    color: rgba(255, 255, 255, 0.9);
}

/* Active Service Card representation (always active state for one card, like reference) */
.service-card.active {
    box-shadow: var(--shadow-hover);
}

.service-card.active::before {
    transform: translateY(0);
}

.service-card.active .service-card-icon {
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--bg-white);
}

.service-card.active .service-card-title {
    color: var(--bg-white);
}

.service-card.active .service-card-desc {
    color: rgba(255, 255, 255, 0.9);
}

/* ------------------ NEWSLETTER BAR ------------------ */
.newsletter-banner {
    background-color: var(--primary-dark);
    padding: 3.5rem 2rem;
    position: relative;
    overflow: hidden;
}

.newsletter-container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.newsletter-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    color: var(--text-light);
}

.newsletter-icon {
    font-size: 2.5rem;
    color: var(--accent-orange);
}

.newsletter-title {
    font-size: 1.5rem;
    color: var(--bg-white);
    font-weight: 700;
}

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

.newsletter-form {
    display: flex;
    width: 100%;
    max-width: 500px;
}

.newsletter-input {
    flex-grow: 1;
    padding: 1rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 4px 0 0 4px;
    color: var(--bg-white);
    outline: none;
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.newsletter-input:focus {
    border-color: var(--accent-orange);
    background-color: rgba(255, 255, 255, 0.1);
}

.newsletter-btn {
    padding: 1rem 2rem;
    background-color: var(--accent-orange);
    color: var(--text-light);
    border: none;
    border-radius: 0 4px 4px 0;
    font-family: var(--font-heading);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.newsletter-btn:hover {
    background-color: var(--accent-orange-hover);
}

/* ------------------ HOW WE WORK (SPLIT LAYOUT) ------------------ */
.about-split-section {
    padding: 6rem 2rem;
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.split-text {
    padding-right: 1.5rem;
}

.split-desc {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-top: 1.5rem;
    margin-bottom: 2rem;
}

.bullet-points {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.bullet-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.bullet-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: rgba(249, 115, 22, 0.1);
    color: var(--accent-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.9rem;
}

.bullet-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

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

/* Framed Image Overlay style (inspired by Rimk and Execucor) */
.split-image-container {
    position: relative;
    padding-left: 2rem;
    padding-bottom: 2rem;
}

.split-image-frame {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 90%;
    height: 90%;
    border: 3px solid var(--accent-orange);
    z-index: 1;
    border-radius: 4px;
    transform: translate(15px, 15px);
}

.split-image {
    position: relative;
    z-index: 2;
    border-radius: 4px;
    box-shadow: var(--shadow-premium);
}

/* ------------------ STATISTICS BANNER ------------------ */
.stats-banner {
    background-color: var(--primary-dark);
    padding: 4.5rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.stats-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    position: relative;
}

.stat-item {
    text-align: center;
    padding: 1rem 2rem;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.stat-item:last-child {
    border-right: none;
}

.stat-num {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--bg-white);
    line-height: 1;
}

.stat-num span {
    color: var(--accent-orange);
}

.stat-label {
    font-size: 0.95rem;
    color: #94a3b8;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
}

/* ------------------ BARTER CALCULATOR SECTION ------------------ */
.calculator-section {
    padding: 6rem 2rem;
    background-color: var(--bg-light);
}

.calculator-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    background-color: var(--bg-white);
    border-radius: 8px;
    box-shadow: var(--shadow-premium);
    border: 1px solid var(--border-color);
    padding: 3rem;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
}

.calc-inputs {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.calc-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.calc-label {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--primary-dark);
}

.calc-input-row {
    position: relative;
    display: flex;
}

.calc-input-row select,
.calc-input-row input {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    outline: none;
    font-family: var(--font-body);
    font-size: 0.95rem;
    background-color: var(--bg-light);
    transition: var(--transition-smooth);
}

.calc-input-row select:focus,
.calc-input-row input:focus {
    border-color: var(--accent-orange);
    background-color: var(--bg-white);
}

.calc-unit {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.9rem;
    pointer-events: none;
}

.calc-results-box {
    background-color: var(--primary-dark);
    border-radius: 6px;
    padding: 2.5rem 2rem;
    color: var(--text-light);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
}

.calc-result-title {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #94a3b8;
    margin-bottom: 0.5rem;
}

.calc-result-value {
    font-family: var(--font-heading);
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--bg-white);
    margin-bottom: 1.5rem;
}

.calc-result-value span {
    color: var(--accent-orange);
}

.calc-breakdown {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    text-align: left;
}

.calc-breakdown-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
}

.calc-breakdown-row span:last-child {
    font-weight: 600;
    color: var(--bg-white);
}

/* ------------------ FOOTER ------------------ */
footer.site-footer {
    background-color: var(--primary-dark);
    color: var(--text-light);
    padding: 5rem 2rem 2rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-logo {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--bg-white);
}

.footer-logo span {
    color: var(--accent-orange);
}

.footer-about-text {
    font-size: 0.9rem;
    color: #94a3b8;
    line-height: 1.8;
}

.footer-title {
    font-size: 1.15rem;
    color: var(--bg-white);
    position: relative;
    padding-bottom: 0.5rem;
}

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

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.footer-link {
    font-size: 0.9rem;
    color: #94a3b8;
}

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

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    font-size: 0.9rem;
    color: #94a3b8;
}

.footer-contact-item {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
}

.footer-contact-item i {
    color: var(--accent-orange);
    margin-top: 3px;
}

.footer-social-row {
    display: flex;
    gap: 1rem;
}

.footer-social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 0.9rem;
    transition: var(--transition-smooth);
}

.footer-social-icon:hover {
    background-color: var(--accent-orange);
    color: var(--text-light);
    transform: translateY(-3px);
}

.footer-bottom {
    max-width: 1280px;
    margin: 0 auto;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: #64748b;
}

/* ------------------ RESPONSIVE BREAKPOINTS ------------------ */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
    
    .calculator-wrapper {
        grid-template-columns: 1fr;
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 1rem;
    }
    
    .main-navigation {
        display: none;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .hero-slider-section {
        height: 80vh;
        margin-top: 70px;
    }
    
    .slide-title {
        font-size: 2.5rem;
    }
    
    .about-split-section {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .split-image-container {
        padding-left: 0;
        padding-bottom: 0;
        margin-top: 2rem;
        display: flex;
        justify-content: center;
    }
    
    .split-image-frame {
        display: none;
    }
    
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .stat-item {
        border-right: none;
        padding: 0;
    }
    
    .newsletter-container {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 480px) {
    .slide-title {
        font-size: 2rem;
    }
    
    .slide-ctas {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-container {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* ------------------ FAQ ACCORDION SECTION ------------------ */
.faq-section {
    padding: 6rem 2rem;
    max-width: 900px;
    margin: 0 auto;
}
.faq-container {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-top: 3rem;
}
.faq-item {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    box-shadow: var(--shadow-premium);
    overflow: hidden;
    transition: var(--transition-smooth);
}
.faq-question {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 700;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--primary-dark);
    user-select: none;
    transition: var(--transition-smooth);
}
.faq-question:hover {
    color: var(--accent-orange);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 2rem;
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
}
.faq-item.active .faq-answer {
    max-height: 200px;
    padding-bottom: 1.5rem;
}
.faq-icon {
    font-size: 1.1rem;
    color: var(--accent-orange);
    transition: transform 0.3s ease;
}
.faq-item.active .faq-icon {
    transform: rotate(45deg);
}
.faq-item.active {
    border-color: var(--accent-orange);
}

/* Category & Service Single subpages styling */
.category-section {
    padding: 5rem 2rem;
    max-width: 1280px;
    margin: 0 auto;
}

.search-container {
    max-width: 600px;
    margin: 0 auto 4rem auto;
    position: relative;
}

.search-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.search-input {
    width: 100%;
    padding: 1.1rem 1.5rem 1.1rem 3.5rem;
    font-size: 1.05rem;
    font-family: var(--font-body);
    border: 2px solid var(--border-color);
    border-radius: 50px;
    background-color: var(--bg-white);
    color: var(--text-main);
    box-shadow: var(--shadow-premium);
    transition: var(--transition-smooth);
    outline: none;
}

.search-input:focus {
    border-color: var(--accent-orange);
    box-shadow: 0 10px 25px -5px rgba(249, 115, 22, 0.15);
}

.search-icon {
    position: absolute;
    left: 1.5rem;
    color: var(--text-muted);
    font-size: 1.2rem;
    transition: var(--transition-smooth);
}

.search-input:focus + .search-icon {
    color: var(--accent-orange);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.5rem;
}

.category-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: var(--shadow-premium);
    transition: var(--transition-smooth);
    cursor: pointer;
}

.category-card-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.category-card-icon {
    width: 42px;
    height: 42px;
    background-color: rgba(249, 115, 22, 0.08);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-orange);
    font-size: 1.1rem;
    transition: var(--transition-smooth);
}

.category-card-title {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-dark);
    transition: var(--transition-smooth);
}

.category-card-arrow {
    font-size: 0.85rem;
    color: var(--text-muted);
    transition: var(--transition-smooth);
}

.category-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-orange);
    box-shadow: var(--shadow-hover);
}

.category-card:hover .category-card-icon {
    background-color: var(--accent-orange);
    color: var(--bg-white);
}

.category-card:hover .category-card-title {
    color: var(--accent-orange);
}

.category-card:hover .category-card-arrow {
    color: var(--accent-orange);
    transform: translateX(3px);
}

.no-results {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem 2rem;
    background-color: var(--bg-white);
    border: 1px dashed var(--border-color);
    border-radius: 8px;
}

.no-results-icon {
    font-size: 3rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.no-results-text {
    font-size: 1.1rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Service Single Layout */
.service-single-section {
    padding: 5rem 2rem;
    max-width: 1280px;
    margin: 0 auto;
}

.service-single-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.service-content-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 3rem;
    box-shadow: var(--shadow-premium);
}

.service-content-header {
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 1.5rem;
    margin-bottom: 2rem;
}

.service-tag {
    display: inline-block;
    background-color: rgba(249, 115, 22, 0.1);
    color: var(--accent-orange);
    padding: 0.35rem 0.85rem;
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: 4px;
    text-transform: uppercase;
    font-family: var(--font-heading);
    margin-bottom: 1rem;
}

.service-detail-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--primary-dark);
}

.service-text {
    color: var(--text-main);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.service-points {
    margin: 2.5rem 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

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

.service-point-item {
    display: flex;
    gap: 1rem;
}

.service-point-icon {
    color: var(--accent-orange);
    font-size: 1.25rem;
    margin-top: 0.15rem;
}

.service-point-title {
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--primary-dark);
    margin-bottom: 0.25rem;
}

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

.service-sidebar {
    position: sticky;
    top: 120px;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sidebar-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 2rem;
    box-shadow: var(--shadow-premium);
}

.sidebar-title {
    font-size: 1.25rem;
    font-weight: 700;
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 0.75rem;
    margin-bottom: 1.5rem;
}

.category-links-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.category-sidebar-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.85rem 1.25rem;
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--primary-dark);
    transition: var(--transition-smooth);
}

.category-sidebar-link:hover {
    background-color: var(--accent-orange);
    color: var(--text-light);
    border-color: var(--accent-orange);
    transform: translateX(5px);
}

@media (max-width: 992px) {
    .service-single-grid {
        grid-template-columns: 1fr;
    }
    .service-sidebar {
        position: static;
    }
}

/* Shared Interactive Form Styles */
.contact-form-panel {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    padding: 3rem;
    border-radius: 6px;
    box-shadow: var(--shadow-premium);
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-dark);
}

.form-group label span {
    color: var(--accent-orange);
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--accent-orange);
    background-color: var(--bg-white);
}

@media (max-width: 992px) {
    .contact-form-panel {
        padding: 2rem;
    }
}

@media (max-width: 600px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}


