/* =========================================================================
   1. VARIABLES & RESET
   ========================================================================= */
:root {
    /* Premium Color Palette */
    --primary-blue: #0F172A; /* Slate Navy - Rich & Modern */
    --secondary-blue: #0F172A; /* Deep Royal Blue */
    --accent-blue: #0F172A; /* Vibrant Blue */
    --accent-gold: #F59E0B; /* Attractive Amber for CTAs */
    --light-bg: #F8FAFC; /* Very soft slate-white */
    --white: #FFFFFF;
    --text-main: #1E293B;
    --text-light: #475569;
    --border-color: #E2E8F0;
    
    /* Typography */
    --font-main: 'Outfit', 'Inter', sans-serif;
    
    /* Spacing & Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 25px 30px -5px rgba(37, 99, 235, 0.2);
    --shadow-gold: 0 10px 20px -5px rgba(245, 158, 11, 0.5);
}

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

html {
    scroll-behavior: smooth;
}

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

/* =========================================================================
   2. UTILITIES & TYPOGRAPHY
   ========================================================================= */
h1, h2, h3, h4, h5, h6 {
    color: var(--primary-blue);
    font-weight: 700;
    line-height: 1.2;
}

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

ul {
    list-style: none;
}

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

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.bg-light {
    background-color: var(--light-bg);
}

section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header.align-left {
    text-align: left;
}

.section-header h2 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    color: var(--primary-blue);
    letter-spacing: -0.5px;
}

.divider {
    height: 5px;
    width: 80px;
    background: linear-gradient(90deg, var(--accent-blue), var(--accent-gold));
    margin: 0 auto;
    border-radius: 5px;
}

.divider.align-left {
    margin: 0;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all var(--transition-normal);
    border: none;
}

.btn-primary {
    background-color: var(--accent-blue);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--secondary-blue);
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    background-color: var(--accent-gold);
    color: var(--white);
    border: none;
}

.btn-secondary:hover {
    background-color: #D97706; /* darker amber */
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}

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

.btn-outline:hover {
    background-color: var(--primary-blue);
    color: var(--white);
}

.btn-light {
    background-color: var(--white);
    color: var(--primary-blue);
}

.btn-light:hover {
    background-color: var(--accent-blue);
    color: var(--white);
}

.btn-link {
    background-color: transparent;
    color: var(--accent-blue);
    padding: 0;
    border-radius: 0;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
}

.btn-link i {
    transition: transform var(--transition-fast);
}

.btn-link:hover {
    color: var(--secondary-blue);
    gap: 8px; /* pushes icon right */
}

.btn-link:hover i {
    transform: translateX(5px);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

.btn-block {
    width: 100%;
}

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }

/* Glassmorphism Classes */
.glass {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: var(--shadow-md);
}

/* =========================================================================
   3. HEADER & NAVIGATION
   ========================================================================= */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all var(--transition-normal);
    padding: 10px 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
}

header.scrolled {
    padding: 8px 0;
    box-shadow: var(--shadow-md);
}

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

.logo a {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: -0.5px;
}

.logo a i {
    color: var(--accent-gold);
    font-size: 2rem;
}

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

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: var(--text-main);
    font-weight: 600;
    position: relative;
    font-size: 1rem;
}

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

.nav-links a:hover {
    color: var(--accent-blue);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.hamburger {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary-blue);
}

/* =========================================================================
   4. HERO SECTION
   ========================================================================= */
.hero {
    position: relative;
    padding: 180px 0 100px 0; /* padding for fixed header */
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%); /* Premium dark background */
    overflow: hidden;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    text-align: left;
}

.hero-image-box {
    flex: 1;
    position: relative;
    max-width: 550px;
}

.hero-image-box img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    object-fit: cover;
    display: block;
}

.hero-title {
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 15px;
    line-height: 1.15;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--accent-gold);
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-text {
    font-size: 1.1rem;
    margin-bottom: 40px;
    color: #E2E8F0;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    align-items: center;
}

/* Animations */
.animate-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s forwards;
}
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================================================================
   5. WHY CHOOSE US
   ========================================================================= */
.why-us {
    background-color: var(--light-bg);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    padding: 30px 20px;
    text-align: center;
    border-radius: 12px;
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

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

.icon-wrapper {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background-color: rgba(0, 168, 255, 0.1);
    color: var(--accent-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: background var(--transition-fast), color var(--transition-fast);
}

.feature-card:hover .icon-wrapper {
    background-color: var(--primary-blue);
    color: var(--white);
}

.feature-card h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.feature-card p {
    font-size: 0.95rem;
    color: var(--text-light);
}

/* =========================================================================
   6. SERVICES SECTION
   ========================================================================= */
.services {
    background-color: var(--light-bg);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--primary-blue);
    border-radius: 4px; 
    border: none;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    z-index: 1;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-md);
}

.service-card::before {
    display: none;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.service-image-wrapper {
    width: 100%;
    height: 260px;
    overflow: hidden;
    position: relative;
}

.service-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    image-rendering: auto; /* Revert to default for smoother scaling */
}

.service-card:hover .service-image-wrapper img {
    transform: scale(1.05);
}

.service-content {
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    text-align: center;
}

.service-card h3 {
    margin-bottom: 12px;
    font-size: 1.6rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--white);
    line-height: 1.1;
}

.service-card p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 25px;
    flex-grow: 1;
    font-size: 0.95rem;
}

.service-card .btn-link {
    color: var(--accent-gold);
    align-self: center;
}
.service-card .btn-link:hover {
    color: var(--white);
    gap: 10px;
}

/* =========================================================================
   7. ABOUT US
   ========================================================================= */
.about-flex {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-content {
    flex: 1;
}

.about-intro {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 30px;
    text-align: justify;
}

.text-justify span {
    text-align: justify;
    display: block;
}

.about-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.about-list i {
    color: var(--accent-blue);
    margin-top: 5px;
}

.about-image-wrapper {
    flex: 1;
}

.about-image {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    height: 400px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

/* Decorative background elements for image placeholder */
.about-image::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    top: -50px;
    right: -50px;
}
.about-image::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    bottom: -20px;
    left: -20px;
}

.about-icon {
    font-size: 6rem;
    color: var(--white);
    z-index: 2;
    opacity: 0.8;
}

/* =========================================================================
   8. STATS COUNTER
   ========================================================================= */
.stats {
    background: url('assets/hero_bg.png') center/cover fixed; /* Using same bg with heavier overlay */
    position: relative;
    color: var(--white);
}

.stats-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-color: rgba(10, 61, 98, 0.85); /* Deep blue overlay */
}

.stats .container {
    position: relative;
    z-index: 2;
}

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

.stat-icon {
    font-size: 3rem;
    color: var(--accent-blue);
    margin-bottom: 20px;
}

.stat-item h3 {
    display: inline-block;
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 10px;
}

.stat-item .plus {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--accent-blue);
}

.stat-item p {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* =========================================================================
   9. REVIEWS / TESTIMONIALS
   ========================================================================= */
.testimonial-slider-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
    padding: 20px 0;
}

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

.testimonial-card {
    min-width: 100%;
    padding: 0 40px;
    text-align: center;
}

.stars {
    color: #F59E0B; /* Gold */
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.review-text {
    font-size: 1.4rem;
    font-style: italic;
    color: var(--text-main);
    margin-bottom: 30px;
    line-height: 1.8;
}

.customer-name {
    font-size: 1.2rem;
    color: var(--primary-blue);
}

.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 40px;
}

.slider-btn {
    background: var(--white);
    border: 1px solid var(--border-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    color: var(--primary-blue);
    transition: all var(--transition-fast);
}

.slider-btn:hover {
    background: var(--primary-blue);
    color: var(--white);
}

.slider-dots {
    display: flex;
    gap: 10px;
}

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

.dot.active {
    background-color: var(--accent-blue);
}

/* =========================================================================
   10. CTA BANNER
   ========================================================================= */
.cta-banner {
    background-color: var(--primary-blue);
    padding: 60px 0;
}

.container-cta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--white);
    gap: 40px;
}

.cta-content h2 {
    color: var(--white);
    margin-bottom: 0;
    font-size: 2rem;
}

.pulse-animation {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(255, 255, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}

/* =========================================================================
   11. CONTACT & MAP
   ========================================================================= */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.info-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.info-card {
    background-color: var(--light-bg);
    padding: 20px;
    border-radius: 8px;
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.info-card i {
    font-size: 1.5rem;
    color: var(--accent-blue);
    margin-top: 5px;
}

.info-card h4 {
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.map-container {
    border-radius: 8px;
    overflow: hidden;
}

.contact-form-container {
    padding: 40px;
    border-radius: 12px;
}

.contact-form-container h3 {
    margin-bottom: 30px;
    font-size: 1.8rem;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input, 
.form-group select, 
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color var(--transition-fast);
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-blue);
}

/* =========================================================================
   12. FOOTER
   ========================================================================= */
.footer {
    background-color: #052236; /* Darker Blue */
    color: var(--white);
    padding-top: 80px;
}

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

.brand-col h3 {
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.brand-col span {
    color: var(--accent-blue);
}

.brand-col p {
    color: #A0AAB2;
    margin-bottom: 25px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px; height: 40px;
    background-color: rgba(255,255,255,0.1);
    border-radius: 50%;
    transition: all var(--transition-fast);
}

.social-icons a:hover {
    background-color: var(--accent-blue);
    transform: translateY(-3px);
}

.footer-col h4 {
    color: var(--white);
    margin-bottom: 25px;
    font-size: 1.2rem;
}

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

.footer-col ul a {
    color: #A0AAB2;
}

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

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    color: #A0AAB2;
}

.contact-list i {
    color: var(--accent-blue);
    margin-top: 5px;
}

.footer-bottom {
    background-color: #031522;
    text-align: center;
    padding: 20px 0;
    color: #A0AAB2;
    font-size: 0.9rem;
}

/* =========================================================================
   13. POPUP MODAL & FLOATING WIDGET
   ========================================================================= */
.modal-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
}

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

.modal-content {
    width: 90%;
    max-width: 500px;
    background: var(--white);
    border-radius: 12px;
    padding: 30px;
    transform: translateY(-20px);
    transition: transform var(--transition-normal);
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.close-btn {
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-light);
}

.close-btn:hover {
    color: var(--primary-blue);
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: var(--shadow-lg);
    z-index: 100;
    transition: transform var(--transition-fast);
}

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

/* =========================================================================
   14. MEDIA QUERIES
   ========================================================================= */
@media (max-width: 992px) {
    .about-flex {
        flex-direction: column;
    }
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .container-cta {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .nav-links, .nav-actions .btn {
        display: none; /* Hide for mobile initially */
    }
    .hamburger {
        display: block;
    }
    header.scrolled .hamburger {
        color: var(--primary-blue);
    }
    header:not(.scrolled) .hamburger {
        color: var(--white);
    }
    
    .hero-container {
        flex-direction: column;
        text-align: center;
    }
    .hero-content {
        max-width: 100%;
    }
    .hero-text {
        justify-content: center;
    }
    .hero-buttons {
        flex-direction: column;
    }
    .hero-title {
        font-size: 3rem;
    }
    .hero-subtitle {
        font-size: 1.3rem;
    }
    .features-grid {
        grid-template-columns: 1fr;
    }
    .info-cards {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

 / *   = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = 
       1 2 .   I N T E R N A L   P A G E S   ( S E R V I C E S ,   A B O U T ) 
       = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =   * / 
 . p a g e - h e a d e r   { 
         p a d d i n g :   1 8 0 p x   0   8 0 p x ; 
         b a c k g r o u n d - c o l o r :   v a r ( - - p r i m a r y - b l u e ) ; 
         c o l o r :   v a r ( - - w h i t e ) ; 
         t e x t - a l i g n :   c e n t e r ; 
 } 
 
 . p a g e - h e a d e r   h 1   { 
         c o l o r :   v a r ( - - w h i t e ) ; 
         f o n t - s i z e :   3 . 5 r e m ; 
         m a r g i n - b o t t o m :   1 5 p x ; 
         l e t t e r - s p a c i n g :   - 1 p x ; 
 } 
 
 . p a g e - h e a d e r   h 2   { 
         c o l o r :   v a r ( - - a c c e n t - g o l d ) ; 
         f o n t - s i z e :   1 . 5 r e m ; 
         m a r g i n - b o t t o m :   2 0 p x ; 
 } 
 
 . p a g e - h e a d e r   p   { 
         f o n t - s i z e :   1 . 1 r e m ; 
         c o l o r :   r g b a ( 2 5 5 ,   2 5 5 ,   2 5 5 ,   0 . 8 5 ) ; 
         m a x - w i d t h :   8 0 0 p x ; 
         m a r g i n :   0   a u t o ; 
         l i n e - h e i g h t :   1 . 6 ; 
 } 
 
 . s e r v i c e s - p a g e - g r i d   { 
         p a d d i n g :   8 0 p x   0 ; 
         b a c k g r o u n d - c o l o r :   v a r ( - - l i g h t - b g ) ; 
 } 
 
 . s e r v i c e s - p a g e - g r i d   . c o n t a i n e r   { 
         d i s p l a y :   g r i d ; 
         g r i d - t e m p l a t e - c o l u m n s :   r e p e a t ( 3 ,   1 f r ) ; 
         g a p :   3 0 p x ; 
 } 
 
 @ m e d i a   ( m a x - w i d t h :   9 9 2 p x )   { 
         . s e r v i c e s - p a g e - g r i d   . c o n t a i n e r   { 
                 g r i d - t e m p l a t e - c o l u m n s :   r e p e a t ( 2 ,   1 f r ) ; 
         } 
 } 
 
 @ m e d i a   ( m a x - w i d t h :   7 6 8 p x )   { 
         . s e r v i c e s - p a g e - g r i d   . c o n t a i n e r   { 
                 g r i d - t e m p l a t e - c o l u m n s :   1 f r ; 
         } 
         . p a g e - h e a d e r   { 
                 p a d d i n g :   1 4 0 p x   2 0 p x   6 0 p x ; 
         } 
         . p a g e - h e a d e r   h 1   { 
                 f o n t - s i z e :   2 . 5 r e m ; 
         } 
 } 
 
 . s e r v i c e s - b o t t o m - t e x t   { 
         t e x t - a l i g n :   c e n t e r ; 
         m a x - w i d t h :   8 0 0 p x ; 
         m a r g i n :   0   a u t o   5 0 p x ; 
         f o n t - s i z e :   1 . 1 5 r e m ; 
         c o l o r :   v a r ( - - t e x t - l i g h t ) ; 
 } 
 
 . c t a - b a n n e r - s e r v i c e s   { 
         t e x t - a l i g n :   c e n t e r ; 
         b a c k g r o u n d :   l i n e a r - g r a d i e n t ( 1 3 5 d e g ,   v a r ( - - p r i m a r y - b l u e ) ,   v a r ( - - s e c o n d a r y - b l u e ) ) ; 
         p a d d i n g :   6 0 p x   2 0 p x ; 
         c o l o r :   v a r ( - - w h i t e ) ; 
         b o r d e r - r a d i u s :   1 2 p x ; 
         m a r g i n :   4 0 p x   a u t o   8 0 p x ; 
         m a x - w i d t h :   1 0 0 0 p x ; 
 } 
 
 . c t a - b a n n e r - s e r v i c e s   h 3   { 
         c o l o r :   v a r ( - - w h i t e ) ; 
         f o n t - s i z e :   2 r e m ; 
         m a r g i n - b o t t o m :   2 5 p x ; 
 } 
  
 
/* Breadcrumb Header */
.breadcrumb-header {
    padding: 180px 0 60px;
    background-color: var(--primary-blue);
    position: relative;
    text-align: center;
}
.breadcrumb-header h1 {
    font-size: 2.8rem;
    color: var(--white);
    margin-top: 15px;
}
.breadcrumbs {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    list-style: none;
    color: var(--white);
    font-size: 1.1rem;
}
.breadcrumbs a {
    color: var(--accent-gold);
    transition: var(--transition-fast);
}
.breadcrumbs a:hover {
    color: var(--white);
}

/* Services Page Section Title (RBD Style) */
.services-section-title {
    margin-bottom: 60px;
    text-align: center;
}
.services-section-title .section-top h1 {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 10px;
    font-weight: 700;
}
.services-section-title .section-top h1 span {
    color: var(--accent-gold);
    font-weight: 400;
    margin-right: 10px;
}
.services-section-title .section-top h4 {
    font-size: 1.2rem;
    color: var(--text-light);
    font-weight: 500;
    margin-bottom: 25px;
}
.services-section-title .section-bottom p {
    color: var(--text-light);
    max-width: 850px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Light Service Cards (RBD Style) */
.services-grid-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card-light {
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    overflow: hidden;
    transition: all var(--transition-normal);
    border: 1px solid #eee;
}

.service-card-light:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.service-card-light .service-image-wrapper {
    height: 240px;
    overflow: hidden;
}

.service-card-light .service-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card-light:hover .service-image-wrapper img {
    transform: scale(1.1);
}

.service-card-light .service-content {
    padding: 30px;
    text-align: left;
}

.service-card-light h3 {
    font-size: 1.4rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
    font-weight: 700;
}

.service-card-light p {
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.6;
}

.service-card-light .btn-link {
    color: var(--primary-blue);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    padding: 0;
}

.service-card-light .btn-link i {
    color: var(--accent-gold);
}

.service-card-light .btn-link:hover {
    color: var(--accent-gold);
}

@media (max-width: 992px) {
    .services-grid-wrapper { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .services-grid-wrapper { grid-template-columns: 1fr; }
}

/* =========================================================================
   13. INDIVIDUAL SERVICE DETAILS PAGE
   ========================================================================= */

.service-single-section {
    padding: 80px 0;
    background-color: var(--white);
}

.service-single-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

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

/* Main Content Area */
.service-single-content .main-image {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.service-single-content h1 {
    font-size: 2.2rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
    font-weight: 700;
}

.service-single-content h2 {
    font-size: 1.8rem;
    color: var(--primary-blue);
    margin-top: 40px;
    margin-bottom: 15px;
}

.service-single-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 20px;
}

.service-single-content ul {
    list-style: none;
    margin-bottom: 20px;
}

.service-single-content ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    color: var(--text-light);
    font-size: 1.05rem;
}

.service-single-content ul li::before {
    content: "\f058";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--accent-gold);
}

/* Sidebar Area */
.service-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background-color: var(--light-bg);
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    border: 1px solid #eee;
}

.sidebar-widget h3 {
    font-size: 1.4rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--accent-gold);
    font-weight: 600;
}

/* Service Menu Sidebar */
.service-menu-list {
    list-style: none;
}

.service-menu-list li {
    margin-bottom: 10px;
}

.service-menu-list li a {
    display: block;
    padding: 12px 15px;
    background-color: var(--white);
    color: var(--text-light);
    border-radius: 4px;
    transition: all var(--transition-fast);
    border-left: 3px solid transparent;
    font-weight: 500;
}

.service-menu-list li a:hover,
.service-menu-list li a.active {
    background-color: var(--primary-blue);
    color: var(--white);
    border-left: 3px solid var(--accent-gold);
}

/* Contact Form Sidebar */
.sidebar-form .form-group {
    margin-bottom: 15px;
}

.sidebar-form input,
.sidebar-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
}

.sidebar-form input:focus,
.sidebar-form textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
}

.sidebar-form .btn {
    width: 100%;
    padding: 12px;
}
