/* assets/css/style.css - Solares.in Premium Corporate Red Styling */

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

:root {
    --primary: #E30613; /* Solares Corporate Red */
    --primary-hover: #C2050F;
    --primary-rgb: 227, 6, 19;
    --secondary: #FDB813; /* Solar Golden Yellow */
    --secondary-hover: #E09F08;
    --dark-navy: #061a33; /* Corporate Space Navy */
    --dark-blue: #0b2240;
    --eco-green: #009639;
    --text-dark: #0f172a;
    --text-light: #f8fafc;
    --text-muted: #64748b;
    --bg-light: #f4f6f9;
    --bg-dark-card: #0a1b33;
    --border-color: rgba(0, 0, 0, 0.08);
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Base resets & typography */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    background-color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    color: var(--dark-navy);
    font-weight: 700;
}

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

.container {
    width: 92%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 15px;
}

.section {
    padding: 6rem 0;
    position: relative;
}

.section-dark {
    background: var(--dark-navy);
    color: var(--text-light);
}

.section-dark h2 {
    color: var(--text-light);
}

.section-header {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 4rem auto;
}

.section-header h2 {
    font-size: 2.75rem;
    margin-bottom: 1.25rem;
    position: relative;
    padding-bottom: 15px;
    font-weight: 800;
}

.section-header h2::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background: var(--primary);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.15rem;
}

.section-dark .section-header p {
    color: #94a3b8;
}

/* White Corporate Header */
header.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    padding: 1.25rem 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 20px rgba(0,0,0,0.02);
}

header.site-header.scrolled {
    padding: 0.75rem 0;
    background: #ffffff;
    box-shadow: 0 10px 35px rgba(0,0,0,0.06);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    color: var(--dark-navy);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 5px 0;
    border-bottom: 2px solid transparent;
}

.nav-menu a:hover, .nav-menu li.active a {
    color: var(--primary);
    border-bottom-color: var(--primary);
}

.nav-cta {
    background: var(--primary);
    color: #ffffff !important;
    padding: 8px 20px !important;
    border-radius: 4px;
    font-weight: 700 !important;
    border: none !important;
    box-shadow: 0 4px 10px rgba(227, 6, 19, 0.2);
}

.nav-cta:hover {
    background: var(--primary-hover) !important;
    transform: translateY(-1px);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--dark-navy);
    cursor: pointer;
}

/* Interactive Hero Slider */
.hero {
    height: 100vh;
    min-height: 650px;
    position: relative;
    display: flex;
    align-items: center;
    color: var(--text-light);
    overflow: hidden;
}

.hero-video-bg, .hero-image-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(6, 26, 51, 0.95) 0%, rgba(6, 26, 51, 0.75) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
}

.hero-content h1 {
    color: var(--text-light);
    font-size: 4rem;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    font-weight: 900;
    font-family: 'Outfit', sans-serif;
    letter-spacing: -0.5px;
}

.hero-content h1 span {
    color: var(--secondary);
    background: linear-gradient(to right, var(--secondary), #ffe066);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: #cbd5e1;
    max-width: 650px;
}

.btn-group {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* Buttons System */
.btn-frontend {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 2rem;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-frontend-primary {
    background: var(--primary);
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(227, 6, 19, 0.3);
}

.btn-frontend-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(227, 6, 19, 0.4);
}

.btn-frontend-secondary {
    background: transparent;
    color: var(--dark-navy);
    border-color: var(--dark-navy);
}

.btn-frontend-secondary:hover {
    background: rgba(6, 26, 51, 0.05);
    transform: translateY(-3px);
}

.section-dark .btn-frontend-secondary {
    color: var(--text-light);
    border-color: rgba(255, 255, 255, 0.3);
}

.section-dark .btn-frontend-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--text-light);
}

/* Dynamic Scroll Reveal System */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left.revealed, .reveal-right.revealed {
    opacity: 1;
    transform: translateX(0);
}

/* Service Interactive Tab Panel */
.service-tabs-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.service-tab-btn {
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    padding: 10px 24px;
    border-radius: 30px;
    font-weight: 600;
    color: var(--dark-navy);
    cursor: pointer;
    transition: var(--transition);
}

.service-tab-btn:hover, .service-tab-btn.active {
    background: var(--primary);
    color: #ffffff;
    border-color: var(--primary);
    box-shadow: 0 8px 20px rgba(227, 6, 19, 0.25);
}

.service-tab-panel {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.service-tab-panel.active {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 4rem;
    align-items: center;
    opacity: 1;
    transform: translateY(0);
}

/* Service & Project Cards Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.service-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    border-color: rgba(227, 6, 19, 0.15);
}

.service-card-img {
    height: 220px;
    overflow: hidden;
    position: relative;
}

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

.service-card:hover .service-card-img img {
    transform: scale(1.08);
}

.service-card-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-card-content h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--dark-navy);
}

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

.learn-more {
    font-weight: 700;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.learn-more:hover {
    color: var(--primary-hover);
}

/* Projects grid and premium hover zooms */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2.5rem;
}

.project-card {
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    height: 420px;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(0,0,0,0.04);
}

.project-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.project-card:hover .project-card-img {
    transform: scale(1.1) rotate(1deg);
}

.project-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(6,26,51,0.95) 0%, rgba(6,26,51,0.4) 60%, rgba(6,26,51,0) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2.5rem;
    z-index: 2;
}

.project-card-meta {
    color: var(--secondary);
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
}

.project-card h3 {
    color: var(--text-light);
    font-size: 1.6rem;
    margin-bottom: 10px;
    font-weight: 800;
}

.project-card-desc {
    color: #cbd5e1;
    font-size: 0.95rem;
    opacity: 0;
    transform: translateY(15px);
    transition: var(--transition);
}

.project-card:hover .project-card-desc {
    opacity: 1;
    transform: translateY(0);
}

/* Premium Counters grid */
.counters-section {
    background: linear-gradient(135deg, var(--dark-navy) 0%, #030d1a 100%);
    color: var(--text-light);
    border-bottom: 3px solid var(--primary);
    padding: 4.5rem 0;
}

.counters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    text-align: center;
}

.counter-item h3 {
    color: var(--secondary);
    font-size: 3.75rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 10px;
}

.counter-item p {
    font-size: 1.05rem;
    color: #94a3b8;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
}

/* Why Choose Us details */
.choose-item {
    display: flex;
    gap: 20px;
    margin-bottom: 2rem;
}

.choose-icon {
    flex-shrink: 0;
    background: rgba(227, 6, 19, 0.1);
    color: var(--primary);
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    border: 1px solid rgba(227, 6, 19, 0.2);
}

.choose-content h4 {
    font-size: 1.25rem;
    margin-bottom: 6px;
    font-weight: 700;
}

.choose-content p {
    color: var(--text-muted);
    font-size: 0.98rem;
}

.image-rounded-holder {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(0,0,0,0.1);
}

.image-rounded-holder img {
    width: 100%;
    display: block;
}

/* Timeline Process Workflow */
.process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.process-step {
    position: relative;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    padding: 2.5rem 2rem;
    border-radius: 8px;
    transition: var(--transition);
}

.process-step:hover {
    border-color: var(--primary);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
}

.step-num {
    position: absolute;
    top: -22px;
    left: 20px;
    background: var(--dark-navy);
    color: var(--secondary);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    font-size: 1.35rem;
    border: 4px solid #ffffff;
}

.process-step h3 {
    margin-top: 0.5rem;
    font-size: 1.35rem;
    margin-bottom: 10px;
}

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

/* Partner Logo Sliders */
.partners-grid-flow {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 4rem;
}

.partner-logo-item img {
    max-height: 60px;
    max-width: 170px;
    filter: grayscale(100%);
    opacity: 0.5;
    transition: var(--transition);
}

.partner-logo-item img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* FAQ Accordion block */
.faq-accordion {
    max-width: 850px;
    margin: 0 auto;
}

.faq-item {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    margin-bottom: 1.25rem;
    overflow: hidden;
    transition: var(--transition);
}

.faq-q {
    padding: 1.35rem 1.75rem;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--dark-navy);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-q::after {
    content: '+';
    font-size: 1.75rem;
    color: var(--primary);
    transition: var(--transition);
}

.faq-item.active {
    border-color: var(--primary);
}

.faq-item.active .faq-q::after {
    transform: rotate(45deg);
    color: var(--primary-hover);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    padding: 0 1.75rem;
    color: var(--text-muted);
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item.active .faq-a {
    max-height: 250px;
    padding-bottom: 1.35rem;
}

/* Dynamic Testimonials Slider (Carousel Styles) */
.testimonial-carousel-container {
    position: relative;
    max-width: 950px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    width: 100%;
}

.testimonial-slide-item {
    min-width: 100%;
    box-sizing: border-box;
    padding: 10px 15px;
}

.testimonial-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 3rem 2.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    text-align: center;
    position: relative;
}

.test-stars {
    color: var(--secondary);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.testimonial-card p {
    color: var(--text-dark);
    font-style: italic;
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.test-user {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.test-user img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary);
}

.test-user-info {
    text-align: left;
}

.test-user-info h4 {
    font-size: 1.1rem;
    margin-bottom: 2px;
}

.test-user-info span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--dark-navy);
    color: var(--text-light);
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 10;
}

.carousel-btn:hover {
    background: var(--primary);
    box-shadow: 0 4px 15px rgba(227, 6, 19, 0.3);
}

.carousel-btn-prev { left: -10px; }
.carousel-btn-next { right: -10px; }

/* Contact Form view details */
.contact-grid {
    display: grid;
    grid-template-columns: 1.1fr 1.2fr;
    gap: 5rem;
}

.contact-card-info {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.info-item {
    display: flex;
    gap: 20px;
}

.info-icon {
    color: var(--primary);
    font-size: 1.5rem;
    margin-top: 3px;
}

.info-details h4 {
    font-size: 1.15rem;
    margin-bottom: 4px;
    font-weight: 700;
}

.info-details p, .info-details a {
    color: var(--text-muted);
    font-size: 1rem;
}

.contact-form-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.04);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

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

.form-group-front label {
    display: block;
    font-weight: 700;
    font-size: 0.88rem;
    margin-bottom: 8px;
    color: var(--dark-navy);
}

.input-front, .select-front, .textarea-front {
    width: 100%;
    padding: 0.85rem 1.1rem;
    border: 1px solid #cbd5e1;
    border-radius: 4px;
    font-size: 1rem;
    outline: none;
    transition: var(--transition);
}

.input-front:focus, .select-front:focus, .textarea-front:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(227, 6, 19, 0.12);
}

/* Blog layouts */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.blog-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0,0,0,0.01);
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
    border-color: rgba(227, 6, 19, 0.15);
}

.blog-card-img {
    height: 210px;
    overflow: hidden;
}

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

.blog-card:hover .blog-card-img img {
    transform: scale(1.06);
}

.blog-card-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-meta {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 10px;
    display: flex;
    gap: 15px;
    font-weight: 600;
}

.blog-card h3 {
    font-size: 1.35rem;
    margin-bottom: 12px;
    line-height: 1.35;
    color: var(--dark-navy);
}

.blog-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.75rem;
    flex-grow: 1;
}

/* Site Corporate Footer */
footer.site-footer {
    background: #040f1a;
    color: #94a3b8;
    padding: 6rem 0 2.5rem 0;
    border-top: 1px solid rgba(255,255,255,0.03);
    font-size: 0.95rem;
}

footer.site-footer h3 {
    color: var(--text-light);
    font-size: 1.25rem;
    margin-bottom: 1.75rem;
    font-weight: 700;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 3.5rem;
    margin-bottom: 4rem;
}

.footer-col p {
    margin-bottom: 1.5rem;
    line-height: 1.75;
}

.footer-socials {
    display: flex;
    gap: 15px;
}

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

.social-icon:hover {
    background: var(--primary);
    color: #ffffff;
    transform: translateY(-4px);
    box-shadow: 0 4px 15px rgba(227, 6, 19, 0.3);
}

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

.footer-links li {
    margin-bottom: 12px;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.04);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-bottom p {
    font-size: 0.88rem;
}

/* WhatsApp Floater Widget */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    z-index: 999;
    font-size: 2.2rem;
    transition: var(--transition);
    animation: bounce 2s infinite;
}

.whatsapp-float:hover {
    background: #128c7e;
    transform: scale(1.1);
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
    fill: currentColor;
}

/* Scroll To Top widget */
.scroll-top {
    position: fixed;
    bottom: 105px;
    right: 38px;
    background: var(--dark-navy);
    color: #ffffff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    z-index: 998;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
    transition: var(--transition);
}

.scroll-top.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.scroll-top:hover {
    background: var(--primary);
    box-shadow: 0 4px 15px rgba(227, 6, 19, 0.3);
}

.scroll-top svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* Page Sub headers Banners */
.page-banner {
    background: linear-gradient(135deg, var(--dark-navy) 0%, #030d1a 100%);
    color: var(--text-light);
    padding: 9rem 0 5rem 0;
    text-align: center;
    border-bottom: 2px solid var(--primary);
}

.page-banner h1 {
    color: var(--text-light);
    font-size: 3.25rem;
    margin-bottom: 12px;
    font-weight: 900;
}

.breadcrumb {
    color: #94a3b8;
    font-size: 0.95rem;
    font-weight: 600;
}

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

.breadcrumb span {
    margin: 0 8px;
    color: #64748b;
}

/* Gallery & Media filter tabs */
.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
    gap: 1.75rem;
}

.gallery-card {
    border-radius: 8px;
    overflow: hidden;
    height: 240px;
    position: relative;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 10px rgba(0,0,0,0.01);
}

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

.gallery-card:hover img {
    transform: scale(1.08);
}

.gallery-card-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(6, 26, 51, 0.88);
    opacity: 0;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    text-align: center;
    color: var(--text-light);
}

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

.gallery-card-hover h4 {
    color: var(--text-light);
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.gallery-card-hover span {
    color: var(--secondary);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive grids overrides */
@media (max-width: 992px) {
    .grid-2-col, .contact-grid, .service-tab-panel.active {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .hero-content h1 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    header.site-header, header.site-header.scrolled {
        padding: 10px 0;
        height: 70px;
    }
    .logo img {
        height: 48px !important;
    }
    .menu-toggle {
        display: block;
        padding: 8px;
        transition: var(--transition);
    }
    .menu-toggle:hover {
        color: var(--primary);
    }
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(6, 26, 51, 0.98);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 2rem 0;
        gap: 1.25rem;
        transition: var(--transition);
        z-index: 998;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    }
    .nav-menu.active {
        left: 0;
    }
    .nav-menu li {
        width: 100%;
        text-align: center;
    }
    .nav-menu a {
        color: rgba(255, 255, 255, 0.9) !important;
        font-family: 'Outfit', sans-serif;
        font-size: 1.25rem;
        font-weight: 600;
        letter-spacing: 0.5px;
        padding: 6px 0;
        display: inline-block;
        border-bottom: 2px solid transparent;
        transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .nav-menu a:hover, .nav-menu li.active a {
        color: var(--secondary) !important;
        border-bottom-color: var(--secondary) !important;
        transform: scale(1.05);
    }
    .nav-menu .nav-cta {
        background: var(--primary) !important;
        color: #ffffff !important;
        padding: 12px 36px !important;
        border-radius: 50px !important;
        font-weight: 700 !important;
        border: none !important;
        box-shadow: 0 8px 20px rgba(227, 6, 19, 0.35) !important;
        display: inline-block !important;
        margin-top: 0.5rem;
        width: auto !important;
    }
    .nav-menu .nav-cta:hover {
        background: var(--primary-hover) !important;
        box-shadow: 0 10px 25px rgba(227, 6, 19, 0.5) !important;
        transform: translateY(-2px) scale(1.03) !important;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .section-header h2 {
        font-size: 2.25rem;
    }
    .testimonial-card {
        padding: 2.5rem 1.5rem;
    }
    .carousel-btn {
        display: none !important;
    }
}
