/* ==========================================================================
   SR Grand Theme Core Layout Styles
   ========================================================================== */

/* 1. Header & Top Bar Layout */
.top-bar {
    background-color: var(--text-color);
    color: #dadce0;
    font-size: 13px;
    padding: 8px 0;
    border-bottom: 1px solid #3c4043;
}
.top-bar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.top-bar-left, .top-bar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}
.top-bar-left a, .top-bar-right a {
    color: #dadce0;
}
.top-bar-left a:hover, .top-bar-right a:hover {
    color: var(--primary-light);
}
.top-bar-socials {
    display: flex;
    gap: 12px;
}
.contact-item, .timing-item {
    display: flex;
    align-items: center;
    gap: 6px;
}
.contact-item i, .timing-item i, .top-bar-socials i {
    font-size: 14px;
}

/* Sticky Header styling */
.site-header {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    box-shadow: 0 1px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
    transition: padding var(--transition-fast);
}
.site-header.shrink {
    padding: 8px 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.site-title {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary-color);
}
.site-title a {
    color: var(--primary-color);
    font-family: 'Poppins', sans-serif;
}
.site-description {
    font-size: 11px;
    color: var(--text-muted);
}

/* Nav Menu styles */
.main-navigation {
    display: flex;
    align-items: center;
    gap: 30px;
}
.main-navigation ul {
    list-style: none;
    display: flex;
    gap: 24px;
}
.main-navigation ul li a {
    color: var(--text-color);
    font-weight: 500;
    font-size: 15px;
    padding: 8px 0;
    border-bottom: 2px solid transparent;
}
.main-navigation ul li a:hover,
.main-navigation ul li.current-menu-item a {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}
.header-cta {
    display: inline-block;
}

/* Hamburger toggle for mobile */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}
.hamburger-box {
    width: 24px;
    height: 18px;
    display: inline-block;
    position: relative;
}
.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
    width: 24px;
    height: 2px;
    background-color: var(--text-color);
    position: absolute;
    transition: transform var(--transition-fast) ease, opacity var(--transition-fast) ease;
}
.hamburger-inner {
    top: 50%;
    transform: translateY(-50%);
}
.hamburger-inner::before {
    content: '';
    top: -8px;
}
.hamburger-inner::after {
    content: '';
    bottom: -8px;
}

/* 2. Hero Section styling */
.hero-section {
    background-image: linear-gradient(rgba(11, 87, 208, 0.9), rgba(8, 60, 145, 0.95)), url('https://images.unsplash.com/photo-1513694203232-719a280e022f?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    color: var(--bg-white);
    padding: 120px 0 100px 0;
    position: relative;
}
.hero-container {
    position: relative;
    z-index: 5;
    max-width: 900px;
}
.hero-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    font-family: 'Poppins', sans-serif;
}
.hero-title .highlight {
    color: #e8f0fe;
    font-weight: 400;
}
.hero-subtitle {
    font-size: 18px;
    color: #dadce0;
    max-width: 750px;
    margin: 0 auto 36px auto;
}
.hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 48px;
}
.hero-trust-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    font-size: 14px;
    color: #e8f0fe;
    font-weight: 500;
}
.hero-trust-badges span {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* 3. Base Buttons & Utility classes */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 50px;
    transition: transform var(--transition-fast), background-color var(--transition-fast), box-shadow var(--transition-fast);
    cursor: pointer;
    border: none;
    font-size: 15px;
}
.btn:hover {
    transform: translateY(-2px);
}
.btn-primary {
    background-color: var(--primary-color);
    color: var(--bg-white);
    box-shadow: 0 4px 14px rgba(11, 87, 208, 0.35);
}
.btn-primary:hover {
    background-color: var(--primary-dark);
    color: var(--bg-white);
    box-shadow: 0 6px 20px rgba(11, 87, 208, 0.45);
}
.btn-secondary {
    background-color: rgba(255, 255, 255, 0.15);
    color: var(--bg-white);
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(4px);
}
.btn-secondary:hover {
    background-color: var(--bg-white);
    color: var(--primary-color);
}
.btn-lg {
    padding: 14px 36px;
    font-size: 16px;
}
.btn-sm {
    padding: 8px 18px;
    font-size: 13px;
}
.btn-block {
    display: flex;
    justify-content: center;
    width: 100%;
}
.section-padding {
    padding: 90px 0;
}
.bg-light {
    background-color: var(--bg-light);
}
.text-center {
    text-align: center;
}
.rounded {
    border-radius: 12px;
}
.rounded-lg {
    border-radius: 16px;
}
.shadow-sm {
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.shadow-md {
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.shadow-lg {
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}
.mt-4 { margin-top: 24px; }
.mb-4 { margin-bottom: 24px; }

/* Tags & Section Headers */
.section-tag {
    display: inline-block;
    color: var(--primary-color);
    background-color: var(--primary-light);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 12px;
}
.section-title {
    font-size: 36px;
    font-weight: 800;
    color: var(--text-color);
    line-height: 1.3;
    margin-bottom: 16px;
    font-family: 'Poppins', sans-serif;
}
.section-subtitle {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 650px;
    margin: 0 auto;
}
.section-header {
    margin-bottom: 50px;
}

/* 4. Grid System & Card Layouts */
.section-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}
.service-card {
    background-color: var(--bg-white);
    padding: 40px 30px;
    border: 1px solid var(--border-color);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.1);
    border-color: rgba(11, 87, 208, 0.2);
}
.service-card-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary-light);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 24px;
    font-size: 24px;
    transition: background-color var(--transition-fast), color var(--transition-fast);
}
.service-card:hover .service-card-icon {
    background-color: var(--primary-color);
    color: var(--bg-white);
}
.service-card-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    font-family: 'Poppins', sans-serif;
}
.service-card-desc {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 20px;
}
.service-card-link {
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* Intro layout */
.intro-image-wrapper {
    position: relative;
}
.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 20px 30px;
    border-radius: 12px;
    box-shadow: 0 10px 24px rgba(11, 87, 208, 0.3);
    text-align: center;
}
.experience-badge .num {
    font-size: 32px;
    font-weight: 800;
    display: block;
    line-height: 1;
}
.experience-badge .txt {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}
.intro-features-list {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.intro-feature {
    display: flex;
    gap: 16px;
}
.intro-feature i {
    font-size: 24px;
    color: var(--primary-color);
    flex-shrink: 0;
}
.intro-feature h4 {
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 4px;
}
.intro-feature p {
    font-size: 14px;
    color: var(--text-muted);
}

/* Industries We Serve Grid */
.industries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.industry-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    padding: 30px 20px;
    transition: transform var(--transition-fast);
}
.industry-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}
.industry-card i {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 20px;
}
.industry-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}
.industry-card p {
    font-size: 13px;
    color: var(--text-muted);
}

/* Why Choose strength list */
.strength-items {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.strength-item {
    display: flex;
    gap: 16px;
}
.strength-icon {
    width: 28px;
    height: 28px;
    background-color: var(--primary-light);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}
.strength-item h4 {
    font-size: 17px;
    font-weight: 700;
}
.strength-item p {
    font-size: 14px;
    color: var(--text-muted);
}

/* Stats Counter grid */
.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}
.stat-card {
    background-color: var(--bg-white);
    padding: 30px 20px;
    border: 1px solid var(--border-color);
}
.stat-number {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary-color);
    display: block;
    line-height: 1.1;
    margin-bottom: 6px;
    font-family: 'Poppins', sans-serif;
}
.stat-label {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 600;
}
.stats-cta-box {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--bg-white);
    padding: 30px;
}
.stats-cta-box h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}
.stats-cta-box p {
    font-size: 13px;
    color: #dadce0;
    margin-bottom: 20px;
}

/* Process steps */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}
.process-step {
    position: relative;
}
.process-step:not(:last-child)::after {
    content: '→';
    position: absolute;
    top: 30px;
    right: -24px;
    font-size: 24px;
    color: var(--border-color);
}
.step-num {
    font-size: 40px;
    font-weight: 800;
    color: var(--primary-light);
    line-height: 1;
    margin-bottom: 12px;
}
.process-step h4 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 8px;
}
.process-step p {
    font-size: 13px;
    color: var(--text-muted);
}

/* 5. Gallery showcase section */
.gallery-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}
.gallery-tab {
    background: none;
    border: 1px solid var(--border-color);
    padding: 8px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition-fast);
}
.gallery-tab:hover, .gallery-tab.active {
    background-color: var(--primary-color);
    color: var(--bg-white);
    border-color: var(--primary-color);
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.gallery-item {
    position: relative;
    overflow: hidden;
    height: 250px;
    cursor: pointer;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.gallery-item:hover img {
    transform: scale(1.1);
}
.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(8, 60, 145, 0.9), rgba(0,0,0,0.1));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    color: var(--bg-white);
    opacity: 0;
    transition: opacity var(--transition-normal);
}
.gallery-item:hover .gallery-overlay {
    opacity: 1;
}
.gallery-overlay h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
}
.gallery-overlay p {
    font-size: 12px;
    color: #dadce0;
}

/* 6. Testimonials Slider styling */
.testimonials-slider {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 960px;
    margin: 0 auto;
}
.testimonial-card {
    background-color: var(--bg-white);
    padding: 40px;
    border: 1px solid var(--border-color);
}
.quote-icon {
    font-size: 32px;
    color: var(--primary-light);
    margin-bottom: 16px;
    display: block;
}
.testimonial-quote {
    font-style: italic;
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 24px;
}
.stars {
    color: #ff9800;
    margin-bottom: 16px;
    display: flex;
    justify-content: center;
    gap: 4px;
}
.stars i {
    font-size: 16px;
}
.client-name {
    font-size: 16px;
    font-weight: 700;
}
.client-title {
    font-size: 12px;
    color: var(--text-muted);
}

/* 7. FAQ Accordions styling */
.faq-accordion-wrapper {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.faq-item {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    overflow: hidden;
}
.faq-question {
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    user-select: none;
}
.faq-question h4 {
    font-size: 16px;
    font-weight: 700;
}
.faq-toggle {
    font-size: 18px;
    color: var(--primary-color);
    transition: transform var(--transition-fast);
}
.faq-item.active .faq-toggle {
    transform: rotate(180deg);
}
.faq-answer {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal), padding var(--transition-normal);
    color: var(--text-muted);
    font-size: 14px;
}
.faq-item.active .faq-answer {
    padding: 0 24px 20px 24px;
    max-height: 500px; /* arbitrary height to slide smoothly */
}

/* 8. Blog Section grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.blog-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: transform var(--transition-fast);
}
.blog-card:hover {
    transform: translateY(-5px);
}
.blog-card-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.blog-card-content {
    padding: 24px;
}
.blog-date {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 10px;
}
.blog-card-title {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 10px;
}
.blog-card-title a {
    color: var(--text-color);
}
.blog-card-title a:hover {
    color: var(--primary-color);
}
.blog-card-excerpt {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 16px;
}
.blog-read-more {
    font-weight: 600;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

/* Area badges */
.areas-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}
.area-badge {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* 9. Contact / Quote request & Google Map Form layout */
.contact-form-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: flex-start;
}
.contact-card {
    background-color: var(--bg-white);
    padding: 40px;
    border: 1px solid var(--border-color);
}
.contact-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--text-color);
}
.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-family: inherit;
    font-size: 14px;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}
.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(11, 87, 208, 0.15);
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* Map Card */
.map-card {
    position: relative;
    height: 100%;
    min-height: 450px;
    border: 1px solid var(--border-color);
}
.map-address-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(4px);
    padding: 16px;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    z-index: 10;
}
.map-address-overlay h4 {
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 4px;
}
.map-address-overlay p {
    font-size: 12px;
    color: var(--text-muted);
}

/* 10. Footer Section Layout */
.site-footer {
    background-color: #121214;
    color: #9aa0a6;
    padding: 70px 0 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
}
.footer-logo-text {
    font-size: 22px;
    font-weight: 800;
    color: var(--bg-white);
    margin-bottom: 16px;
}
.footer-bio {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}
.footer-social-icons {
    display: flex;
    gap: 12px;
}
.footer-social-icons a {
    width: 36px;
    height: 36px;
    background-color: #202124;
    color: #e8f0fe;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition-fast);
}
.footer-social-icons a:hover {
    background-color: var(--primary-color);
    color: var(--bg-white);
}
.footer-widget-title {
    color: var(--bg-white);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.footer-menu-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.footer-menu-links a {
    color: #9aa0a6;
    font-size: 14px;
}
.footer-menu-links a:hover {
    color: var(--bg-white);
    padding-left: 4px;
}
.footer-contact-details {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.footer-contact-details li {
    display: flex;
    gap: 12px;
    font-size: 14px;
}
.footer-contact-details li i {
    color: var(--primary-light);
    flex-shrink: 0;
    font-size: 16px;
}
.footer-contact-details li a {
    color: #9aa0a6;
}
.footer-contact-details li a:hover {
    color: var(--bg-white);
}
.footer-bottom {
    border-top: 1px solid #202124;
    padding: 24px 0;
    margin-top: 60px;
    font-size: 13px;
}
.footer-bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer-policy-links {
    display: flex;
    gap: 12px;
    align-items: center;
}
.footer-policy-links a {
    color: #9aa0a6;
}
.footer-policy-links a:hover {
    color: var(--bg-white);
}

/* 11. Floating actions & sticky bars */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: var(--success-color);
    color: var(--bg-white);
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(36,160,68,0.4);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    z-index: 999;
    transition: transform var(--transition-fast);
}
.whatsapp-float:hover {
    transform: scale(1.1) rotate(6deg);
    color: var(--bg-white);
}
.whatsapp-float .tooltip {
    position: absolute;
    right: 75px;
    background-color: var(--text-color);
    color: var(--bg-white);
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(10px);
    transition: opacity var(--transition-fast), transform var(--transition-fast);
    pointer-events: none;
}
.whatsapp-float:hover .tooltip {
    opacity: 1;
    transform: translateX(0);
}

/* Mobile Sticky CTA */
.mobile-sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--bg-white);
    box-shadow: 0 -4px 15px rgba(0,0,0,0.1);
    z-index: 999;
    grid-template-columns: 1fr 1fr;
}
.mobile-cta-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 14px 0;
    font-weight: 700;
    font-size: 14px;
    color: var(--bg-white);
    text-transform: uppercase;
}
.mobile-cta-btn.call-cta {
    background-color: var(--primary-color);
}
.mobile-cta-btn.whatsapp-cta {
    background-color: var(--success-color);
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 105px;
    right: 30px;
    width: 44px;
    height: 44px;
    background-color: var(--text-color);
    color: var(--bg-white);
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-fast), visibility var(--transition-fast);
    z-index: 998;
}
.back-to-top.show {
    opacity: 1;
    visibility: visible;
}
.back-to-top:hover {
    background-color: var(--primary-color);
}

/* Cookie Notice */
.cookie-notice {
    position: fixed;
    bottom: 20px;
    left: 20px;
    max-width: 400px;
    background-color: var(--text-color);
    color: var(--bg-white);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
    z-index: 1000;
}
.cookie-content p {
    font-size: 13px;
    margin-bottom: 12px;
    line-height: 1.5;
}
.cookie-content a {
    color: var(--primary-light);
    text-decoration: underline;
}

/* Breadcrumbs Styling */
.breadcrumbs {
    padding: 12px 0;
    font-size: 13px;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 30px;
}
.breadcrumbs a {
    color: var(--primary-color);
}
.breadcrumbs .sep {
    margin: 0 8px;
    color: var(--border-color);
}
.breadcrumbs .current {
    font-weight: 600;
}

/* General WP Inner Page Structuring */
.page-title {
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 24px;
    font-family: 'Poppins', sans-serif;
}
.site-main {
    padding: 40px 0 80px 0;
}
.has-sidebar {
    display: grid;
    grid-template-columns: 2.8fr 1.2fr;
    gap: 40px;
}
.widget {
    margin-bottom: 40px;
}
.widget-title {
    font-size: 18px;
    font-weight: 700;
    border-left: 4px solid var(--primary-color);
    padding-left: 12px;
    margin-bottom: 20px;
}

/* 12. RESPONSIVE MEDIA QUERIES */
@media (max-width: 1024px) {
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .process-step:not(:last-child)::after {
        display: none;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .top-bar {
        display: none; /* Hide top bar on mobile to optimize space */
    }
    .section-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .hero-title {
        font-size: 32px;
    }
    .hero-subtitle {
        font-size: 15px;
    }
    .hero-actions {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }
    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }
    .hero-trust-badges {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    .experience-badge {
        position: static;
        margin-top: 20px;
    }
    .menu-toggle {
        display: inline-block;
    }
    .main-navigation {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--bg-white);
        box-shadow: 0 10px 15px rgba(0,0,0,0.1);
        padding: 20px;
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }
    .main-navigation.show {
        display: flex;
    }
    .main-navigation ul {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }
    .main-navigation ul li a {
        display: block;
        width: 100%;
        padding: 8px 0;
    }
    .header-cta {
        width: 100%;
    }
    .header-cta .btn {
        width: 100%;
        justify-content: center;
    }
    .section-title {
        font-size: 28px;
    }
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    .testimonials-slider {
        grid-template-columns: 1fr;
    }
    .contact-form-grid {
        grid-template-columns: 1fr;
    }
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .site-footer {
        padding-bottom: 80px; /* offset the bottom mobile bar */
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .mobile-sticky-cta {
        display: grid;
    }
    .whatsapp-float {
        bottom: 80px; /* raise button to clear mobile bar */
    }
    .back-to-top {
        bottom: 150px;
    }
    .has-sidebar {
        grid-template-columns: 1fr;
    }
}
