/*
Theme Name: Sheha Equipment Theme
Theme URI: http://localhost/sheha
Author: Antigravity
Author URI: http://localhost/sheha
Description: Custom Gutenberg Blocks-enabled theme for Sheha Kitchen Equipment Giza.
Version: 1.0.0
Text Domain: sheha
*/

/* 
========================================================================
   STYLE SYSTEM & THEME VARIABLES
   WordPress ready: You can copy these variables into your theme's style.css
======================================================================== 
*/

:root {
    /* Color Palette */
    --primary: #e65f00;         /* Primary brand color (Warm Copper) */
    --primary-hover: #c84b00;   /* Hover state */
    --primary-light: #fff3e0;   /* Light tinted orange background */
    --secondary: #1e252b;       /* Dark steel grey */
    --secondary-dark: #11161a;  /* Deep dark charcoal */
    --accent: #ffb300;          /* Warm gold */
    --text-dark: #2c3e50;       /* Primary text */
    --text-muted: #6c757d;      /* Muted text */
    --light-bg: #f8f9fa;        /* Main light background */
    --white: #ffffff;
    
    /* Semantic Colors */
    --status-new: #10b981;      /* Emerald Green for "Like New" */
    --status-used: #f59e0b;     /* Amber Yellow for "Used" */
    
    /* Typography */
    --font-primary: 'Cairo', sans-serif;
    
    /* UI & Effects */
    --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-fast: all 0.15s ease-in-out;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 10px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 15px 30px rgba(0,0,0,0.12);
    --border-radius: 12px;
}

/* Global resets & Typography */
body {
    font-family: var(--font-primary);
    color: var(--text-dark);
    background-color: var(--light-bg);
    overflow-x: hidden;
    text-align: right; /* RTL consistency */
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: var(--secondary-dark);
}

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

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--light-bg);
}
::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary-hover);
}

/* 
========================================================================
   COMPONENTS & REUSABLE CLASSES
======================================================================== 
*/

/* Custom Buttons */
.btn-primary-custom {
    background-color: var(--primary);
    color: var(--white);
    font-weight: 600;
    padding: 12px 28px;
    border-radius: var(--border-radius);
    border: 2px solid var(--primary);
    transition: var(--transition-smooth);
    box-shadow: 0 4px 14px rgba(230, 95, 0, 0.3);
}

.btn-primary-custom:hover {
    background-color: var(--primary-hover);
    border-color: var(--primary-hover);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 95, 0, 0.4);
}

.btn-outline-custom {
    background-color: transparent;
    color: var(--white);
    font-weight: 600;
    padding: 12px 28px;
    border-radius: var(--border-radius);
    border: 2px solid var(--white);
    transition: var(--transition-smooth);
}

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

.btn-secondary-custom {
    background-color: var(--secondary);
    color: var(--white);
    font-weight: 600;
    padding: 12px 28px;
    border-radius: var(--border-radius);
    border: 2px solid var(--secondary);
    transition: var(--transition-smooth);
}

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

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    left: 30px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    animation: pulse-green 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: #FFF;
}

@keyframes pulse-green {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Pulse animation for CTA buttons */
.pulse-animation {
    animation: button-pulse 2s infinite;
}

@keyframes button-pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* Custom Badges */
.badge-status-new {
    background-color: rgba(16, 185, 129, 0.15);
    color: var(--status-new);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 30px;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.badge-status-used {
    background-color: rgba(245, 158, 11, 0.15);
    color: var(--status-used);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 30px;
    border: 1px solid rgba(245, 158, 11, 0.3);
}

/* Section Title Wrapper */
.section-title {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 30px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60px;
    height: 4px;
    background-color: var(--primary);
    border-radius: 2px;
}

.section-title-center {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 30px;
    text-align: center;
}

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

/* 
========================================================================
   TOP UTILITY BAR & HEADER NAVIGATION
======================================================================== 
*/

/* Top Info Bar */
.top-bar {
    background-color: var(--secondary-dark);
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar i {
    color: var(--primary);
}

.top-bar-link:hover {
    color: var(--primary);
}

/* Sticky Header Customization */
.custom-navbar {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    padding: 15px 0;
}

.custom-navbar.navbar-scrolled {
    padding: 10px 0;
    box-shadow: var(--shadow-md);
    background-color: rgba(255, 255, 255, 0.98);
}

.navbar-brand-custom {
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--secondary-dark);
    margin: 0;
}

.brand-subtitle {
    font-size: 0.75rem;
    color: var(--primary);
    display: block;
    font-weight: 600;
    margin-top: -3px;
}

.nav-link-custom {
    color: var(--secondary-dark) !important;
    font-weight: 600;
    font-size: 1rem;
    padding: 8px 16px !important;
    position: relative;
    transition: var(--transition-fast);
}

.nav-link-custom::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 16px;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition-fast);
}

.nav-link-custom:hover::after,
.nav-link-custom.active::after {
    width: calc(100% - 32px);
}

.nav-link-custom:hover,
.nav-link-custom.active {
    color: var(--primary) !important;
}

.navbar-toggler-custom {
    border: none;
    padding: 0;
}

.navbar-toggler-custom:focus {
    box-shadow: none;
}

/* 
========================================================================
   HERO SECTION
======================================================================== 
*/
.hero-section {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    background-image: linear-gradient(rgba(17, 22, 26, 0.85), rgba(17, 22, 26, 0.65)), url('assets/images/hero-kitchen.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--white);
    padding: 100px 0;
    overflow: hidden;
}

.hero-content {
    z-index: 2;
}

.hero-title {
    color: var(--white);
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

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

.hero-desc {
    font-size: 1.25rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 700px;
    line-height: 1.8;
}

.hero-badges-wrapper {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.hero-badge-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-badge-item i {
    color: var(--accent);
}

/* Wave Divider */
.hero-wave-divider {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 1;
}

.hero-wave-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 60px;
}

.hero-wave-divider .shape-fill {
    fill: var(--light-bg);
}

/* 
========================================================================
   STATS BAR SECTION
======================================================================== 
*/
.stats-bar-wrapper {
    margin-top: -40px;
    position: relative;
    z-index: 10;
}

.stats-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    padding: 25px 20px;
    border-bottom: 4px solid var(--primary);
    transition: var(--transition-smooth);
}

.stats-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.stats-icon-box {
    width: 60px;
    height: 60px;
    background-color: var(--primary-light);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.stats-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--secondary-dark);
    margin-bottom: 5px;
}

.stats-title {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 600;
    margin: 0;
}

/* 
========================================================================
   ABOUT SECTION
======================================================================== 
*/
.about-section {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.about-img-wrapper {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

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

.about-img-wrapper:hover img {
    transform: scale(1.03);
}

.about-img-badge {
    position: absolute;
    bottom: 25px;
    right: 25px;
    background: var(--primary);
    color: var(--white);
    padding: 20px 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    z-index: 2;
    text-align: center;
}

.about-img-badge .years {
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1;
    display: block;
}

.about-img-badge .text {
    font-size: 0.9rem;
    font-weight: 600;
    display: block;
}

.feature-list-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.feature-list-icon {
    width: 28px;
    height: 28px;
    background-color: var(--primary-light);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    flex-shrink: 0;
    margin-top: 3px;
}

.feature-list-text h5 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.feature-list-text p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin: 0;
}

/* 
========================================================================
   PRODUCTS SECTION & FILTER CARDS
======================================================================== 
*/
.products-section {
    padding: 80px 0;
    background-color: var(--white);
}

.filter-btn {
    background-color: var(--light-bg);
    color: var(--secondary-dark);
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 30px;
    border: 1px solid var(--light-gray);
    margin: 5px;
    transition: var(--transition-smooth);
}

.filter-btn.active, .filter-btn:hover {
    background-color: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    box-shadow: 0 4px 10px rgba(230, 95, 0, 0.2);
}

/* Product Card */
.product-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    border: 1px solid var(--light-gray);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(230, 95, 0, 0.2);
}

.product-img-box {
    position: relative;
    padding-top: 75%; /* 4:3 Aspect Ratio */
    background-color: #f1f2f6;
    overflow: hidden;
}

.product-img-box img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

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

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 2;
}

.product-body {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--secondary-dark);
    transition: var(--transition-fast);
}

.product-card:hover .product-title {
    color: var(--primary);
}

.product-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
}

.product-meta {
    border-top: 1px solid var(--light-gray);
    padding-top: 15px;
    margin-top: auto;
}

.product-meta-item {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 600;
}

.product-meta-item i {
    color: var(--primary);
    margin-left: 5px;
}

.btn-product-inquire {
    width: 100%;
    background-color: var(--secondary);
    color: var(--white);
    border: none;
    padding: 10px;
    border-radius: 8px;
    font-weight: 600;
    margin-top: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: var(--transition-smooth);
}

.btn-product-inquire:hover {
    background-color: #25d366; /* Changes to WhatsApp green on hover */
    color: var(--white);
    transform: translateY(-2px);
}

/* 
========================================================================
   CTA SECTION
======================================================================== 
*/
.cta-section {
    position: relative;
    padding: 80px 0;
    background-image: linear-gradient(135deg, var(--secondary-dark) 0%, rgba(230, 95, 0, 0.9) 100%), url('assets/images/hero-kitchen.png');
    background-size: cover;
    background-position: center;
    color: var(--white);
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(255, 179, 0, 0.15), transparent 50%);
    pointer-events: none;
}

.cta-title {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.cta-desc {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 35px;
    max-width: 800px;
}

.cta-action-box {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: var(--border-radius);
}

.cta-phone-link {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
    transition: var(--transition-fast);
}

.cta-phone-link:hover {
    color: var(--white);
}

/* 
========================================================================
   HOW WE BUY SECTION (PROCESS)
======================================================================== 
*/
.process-section {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.process-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    text-align: center;
    position: relative;
    height: 100%;
    transition: var(--transition-smooth);
    border: 1px solid var(--light-gray);
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(230, 95, 0, 0.1);
}

.process-number {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 3.5rem;
    font-weight: 900;
    color: rgba(230, 95, 0, 0.08);
    line-height: 1;
}

.process-icon {
    width: 70px;
    height: 70px;
    background-color: var(--primary-light);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 25px auto;
    position: relative;
    z-index: 2;
}

.process-card:hover .process-icon {
    background-color: var(--primary);
    color: var(--white);
    transform: rotate(360deg);
    transition: all 0.6s ease;
}

.process-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.process-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

/* 
========================================================================
   CONTACT & MAP SECTION
======================================================================== 
*/
.contact-section {
    padding: 80px 0;
    background-color: var(--white);
}

.contact-info-card {
    background-color: var(--secondary-dark);
    color: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    height: 100%;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: rgba(230, 95, 0, 0.08);
    border-radius: 50%;
}

.contact-info-title {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 30px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 15px;
}

.contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-item-icon {
    width: 45px;
    height: 45px;
    background-color: rgba(230, 95, 0, 0.15);
    color: var(--primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-item-text h5 {
    color: var(--white);
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.contact-item-text p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-size: 0.95rem;
}

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

.map-wrapper {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--light-gray);
    height: 100%;
    min-height: 350px;
}

.map-placeholder {
    height: 100%;
    background: #e9ecef;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
    text-align: center;
}

.map-placeholder i {
    font-size: 3.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

/* 
========================================================================
   FOOTER SECTION
======================================================================== 
*/
footer {
    background-color: var(--secondary-dark);
    color: rgba(255, 255, 255, 0.75);
    padding: 70px 0 20px 0;
    border-top: 4px solid var(--primary);
    font-size: 0.95rem;
}

footer h5 {
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

footer h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary);
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo-title {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--white);
    margin: 0;
}

.footer-logo-subtitle {
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 600;
    display: block;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-fast);
}

.footer-links a::before {
    content: '\f104'; /* FontAwesome angle-left icon */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.8rem;
    color: var(--primary);
}

.footer-links a:hover {
    color: var(--primary);
    transform: translateX(-5px);
}

.social-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 12px;
    margin-top: 25px;
}

.social-links li {
    list-style: none;
    padding: 0;
    margin: 0;
}

.social-btn {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.social-btn:hover {
    background-color: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

.copyright-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 25px;
    margin-top: 50px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

/* 
========================================================================
   RESPONSIVENESS & RTL OVERRIDES
======================================================================== 
*/

@media (max-width: 991.98px) {
    .hero-title {
        font-size: 2.2rem;
    }
    .hero-desc {
        font-size: 1.1rem;
    }
    .stats-bar-wrapper {
        margin-top: -20px;
    }
    .stats-card {
        margin-bottom: 20px;
    }
    .custom-navbar {
        background-color: var(--white);
    }
    .nav-link-custom::after {
        display: none;
    }
    .nav-link-custom {
        padding: 10px 15px !important;
        border-bottom: 1px solid var(--light-gray);
    }
    .nav-link-custom:last-child {
        border-bottom: none;
    }
}

@media (max-width: 575.98px) {
    .hero-title {
        font-size: 1.8rem;
    }
    .hero-desc {
        font-size: 1rem;
    }
    .hero-badges-wrapper {
        gap: 10px;
    }
    .hero-badge-item {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
    .btn-primary-custom, .btn-outline-custom, .btn-secondary-custom {
        padding: 10px 20px;
        font-size: 0.95rem;
        width: 100%;
        margin-bottom: 10px;
    }
    .btn-outline-custom {
        margin-bottom: 0;
    }
    .cta-title {
        font-size: 1.6rem;
    }
    .cta-desc {
        font-size: 1rem;
    }
    .cta-phone-link {
        font-size: 1.4rem;
    }
}

/* Subpage Hero Section */
.subpage-hero {
    background-size: cover;
    background-position: center;
    color: var(--white) !important;
    padding: 70px 0 !important;
    text-align: center;
    position: relative;
    border-right: 12px solid var(--primary) !important; /* Thick orange vertical bar on the right side */
}

.subpage-title {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--white) !important;
}

.breadcrumb-custom {
    display: flex;
    justify-content: center;
    gap: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb-custom a {
    color: rgba(255, 255, 255, 0.7) !important;
    text-decoration: none;
    transition: var(--transition-fast);
}

.breadcrumb-custom a:hover {
    color: var(--primary) !important;
}

/* Custom Transition Hover for Cards */
.transition-hover {
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.transition-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.08) !important;
    border-color: var(--primary) !important;
}

/* Premium Accordion Styling for Services */
#equipment-accordion {
    background: transparent !important;
    box-shadow: none !important;
}

#equipment-accordion .accordion-item {
    background-color: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.07) !important;
    border-radius: 12px !important;
    margin-bottom: 16px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    overflow: hidden;
}

#equipment-accordion .accordion-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.06);
    border-color: rgba(230, 95, 0, 0.18) !important;
}

#equipment-accordion .accordion-button-custom {
    background-color: var(--white) !important;
    color: var(--secondary-dark) !important;
    font-weight: 700 !important;
    font-size: 1.1rem !important;
    padding: 20px 24px !important;
    border: none !important;
    box-shadow: none !important;
    transition: background-color 0.25s ease, color 0.25s ease;
    display: flex;
    align-items: center;
}

#equipment-accordion .accordion-button-custom:hover {
    color: var(--primary) !important;
    background-color: rgba(230, 95, 0, 0.02) !important;
}

#equipment-accordion .accordion-button-custom:not(.collapsed) {
    background-color: rgba(230, 95, 0, 0.05) !important;
    color: var(--primary) !important;
    border-bottom: 1px solid rgba(230, 95, 0, 0.1) !important;
}

/* Accordion Body */
#equipment-accordion .accordion-body {
    padding: 24px !important;
    background-color: var(--white);
}

/* List Item Badge inside Accordion Body */
.list-item-badge {
    background-color: #f8f9fa;
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #495057;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.2s ease;
}

.list-item-badge:hover {
    background-color: rgba(230, 95, 0, 0.03);
    border-color: rgba(230, 95, 0, 0.1);
    color: var(--primary);
    transform: translateX(-3px);
}

.list-item-badge i {
    color: #25d366; /* green checkmark */
    font-size: 0.85rem;
}

/* Target Reference Values Design Style Overrides */
.section-title-center {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 800;
    color: var(--secondary-dark);
}

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

/* Values Cards */
.values-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    border: 1px solid rgba(0, 0, 0, 0.07);
    padding: 35px 25px;
    text-align: center;
    height: 100%;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.values-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(230, 95, 0, 0.08);
    border-color: rgba(230, 95, 0, 0.2);
}

.values-icon {
    width: 70px;
    height: 70px;
    background-color: #fdf5eb; /* Soft primary tinted backdrop */
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 25px auto;
    transition: var(--transition-smooth);
}

.values-card:hover .values-icon {
    background-color: var(--primary);
    color: var(--white);
    transform: scale(1.1);
}

.values-card h4 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--secondary-dark);
}

.values-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-muted);
}

/* Vision & Mission Card Hover Effects */
.bg-white.rounded-3.shadow-sm.border-top.border-4 {
    transition: var(--transition-smooth);
}

.bg-white.rounded-3.shadow-sm.border-top.border-4:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md) !important;
}

/* Primary and Secondary Color Variable Fallbacks for classes */
.border-primary {
    border-color: var(--primary) !important;
}

.border-secondary {
    border-color: var(--secondary) !important;
}

.bg-primary {
    background-color: var(--primary) !important;
}

.bg-secondary {
    background-color: var(--secondary) !important;
}

/* 
========================================================================
   CONTACT FORM 7 PREMIUM STYLE OVERRIDES
======================================================================== 
*/
.wpcf7-form-control-wrap {
    display: block;
    width: 100%;
}

.wpcf7-form .form-label-custom {
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
    color: var(--secondary-dark);
}

.wpcf7-form .form-control-custom,
.wpcf7-form .form-select {
    border-radius: var(--border-radius) !important;
    border: 1px solid rgba(0,0,0,0.1) !important;
    padding: 12px 18px !important;
    font-family: var(--font-primary) !important;
    font-size: 0.95rem !important;
    transition: var(--transition-smooth) !important;
}

.wpcf7-form .form-control-custom:focus,
.wpcf7-form .form-select:focus {
    border-color: var(--primary) !important;
    box-shadow: 0 0 0 4px rgba(230, 95, 0, 0.15) !important;
    outline: none !important;
}

.wpcf7-spinner {
    position: absolute;
    margin: 0;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.wpcf7-response-output {
    margin: 20px 0 0 0 !important;
    padding: 15px 20px !important;
    border-radius: var(--border-radius) !important;
    font-size: 0.95rem !important;
    font-weight: 600 !important;
    text-align: center !important;
    border: 2px solid transparent !important;
    font-family: var(--font-primary) !important;
}

.wpcf7-mail-sent-ok {
    background-color: rgba(16, 185, 129, 0.1) !important;
    border-color: #10b981 !important;
    color: #10b981 !important;
}

.wpcf7-validation-errors, 
.wpcf7-acceptance-missing,
.wpcf7-mail-sent-ng {
    background-color: rgba(239, 68, 68, 0.1) !important;
    border-color: #ef4444 !important;
    color: #ef4444 !important;
}

