/* Custom Variables - Updated Logo Sizes 2025-09-28 */
:root {
    --primary-color: #007bff;
    --navbar-primary-color: #00c6f9;
    --secondary-color: #6c757d;
    --success-color: #28a745;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
    --dark-color: #343a40;
    --light-color: #f8f9fa;
    --white: #ffffff;
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --border-radius: 10px;
    --transition: all 0.3s ease;
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--dark-color);
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

/* Ensure no gaps on inner pages */
body.inner-page {
    padding-top: 0;
    margin-top: 0;
}

html {
    scroll-behavior: smooth;
    margin: 0;
    padding: 0;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

/* Section Styles */
.section-padding {
    padding: 100px 0;
}

.section-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.section-subtitle {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.section-description {
    font-size: 1.1rem;
    color: var(--secondary-color);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Navigation Styles */
.navbar {
    background: transparent;
    transition: all 0.4s ease;
    padding: 1rem 0;
}

/* Navbar for non-homepage pages - ensure visibility over dark backgrounds */
body:not(.homepage) .navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--box-shadow);
}

body:not(.homepage) .navbar-nav .nav-link {
    color: var(--dark-color) !important;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--box-shadow);
    padding: 0.6rem 0;
}

.navbar.scrolled .navbar-nav .nav-link {
    color: var(--dark-color) !important;
}

.navbar.scrolled .navbar-nav .nav-link.active,
body:not(.homepage) .navbar-nav .nav-link.active {
    color: var(--navbar-primary-color) !important;
    font-weight: 600;
}

.navbar.scrolled .navbar-brand .brand-text {
    color: var(--dark-color) !important;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    transition: var(--transition);
}

.navbar-brand img,
.navbar-brand .logo-img {
    height: 100px;
    transition: all 0.4s ease;
    transform: scale(1);
    width: auto;
    max-width: none;
}

.navbar.scrolled .navbar-brand img,
.navbar.scrolled .navbar-brand .logo-img {
    height: 65px;
    transform: scale(0.95);
}

.brand-text {
    color: var(--white);
    transition: var(--transition);
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: var(--white) !important;
    padding: 0.5rem 1rem !important;
    transition: var(--transition);
    position: relative;
}

.navbar-nav .nav-link:hover {
    color: var(--navbar-primary-color) !important;
}

.navbar-nav .nav-link.active {
    color: var(--navbar-primary-color) !important;
    font-weight: 600;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--navbar-primary-color);
    transition: var(--transition);
    transform: translateX(-50%);
}

/* Hover and active underline for regular nav links only */
.navbar-nav .nav-link:not(.dropdown-toggle):hover::after,
.navbar-nav .nav-link:not(.dropdown-toggle).active::after {
    width: 80%;
}

/* Dropdown toggle styles - override the underline for dropdown toggles */
.navbar-nav .dropdown-toggle::after {
    /* Reset underline properties for dropdown arrow */
    position: static !important;
    bottom: auto !important;
    left: auto !important;
    width: auto !important;
    height: auto !important;
    background: transparent !important;
    transform: none !important;
    
    /* Dropdown arrow properties */
    display: inline-block;
    margin-left: 0.5rem;
    vertical-align: middle;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-bottom: 0;
    border-left: 0.3em solid transparent;
}

.dropdown-menu {
    background: var(--white);
    border: none;
    box-shadow: var(--box-shadow);
    border-radius: var(--border-radius);
    padding: 0.5rem 0;
    margin-top: 0.5rem;
}

.dropdown-item {
    padding: 0.75rem 1.5rem;
    transition: var(--transition);
    color: var(--dark-color);
}

.dropdown-item:hover {
    background: var(--light-color);
    color: var(--primary-color);
}

/* Dropdown arrow positioning */
.navbar-nav .dropdown-toggle::after {
    display: inline-block;
    margin-left: 0.5rem;
    vertical-align: middle;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-bottom: 0;
    border-left: 0.3em solid transparent;
    position: static;
    transform: none;
}

.navbar-nav .dropdown-toggle:empty::after {
    margin-left: 0;
}

/* Additional active state enhancements */
.navbar-nav .nav-link.active {
    position: relative;
}

/* Ensure dropdown toggles don't get underline when active */
.navbar-nav .dropdown-toggle.active::after {
    width: 0 !important;
    background: transparent !important;
}

/* Ensure active states work on mobile */
@media (max-width: 991.98px) {
    .navbar {
        background: rgba(255, 255, 255, 0.95) !important;
        backdrop-filter: blur(10px);
        box-shadow: var(--box-shadow);
    }
    
    /* Mobile logo sizing for better spacing with hamburger */
    .navbar-brand img {
        max-width: 200px !important;
        height: 50px !important;
        width: auto !important;
    }
    
    /* Ensure navbar brand doesn't take up too much space */
    .navbar-brand {
        flex-shrink: 1 !important;
        margin-right: 15px !important;
    }
    
    /* Ensure hamburger stays on the right */
    .navbar-toggler {
        flex-shrink: 0 !important;
        margin-left: auto !important;
    }
    
    /* Hide dropdown functionality on mobile - make Services a simple link */
    .nav-item.dropdown .dropdown-toggle::after {
        display: none !important;
    }
    
    .nav-item.dropdown .dropdown-menu {
        display: none !important;
    }
    
    .nav-item.dropdown .dropdown-toggle {
        pointer-events: auto !important;
    }
    
    /* Prevent horizontal overflow on mobile */
    html, body {
        overflow-x: hidden !important;
        max-width: 100vw !important;
    }
    
    * {
        box-sizing: border-box !important;
    }
    
    .container-fluid,
    .container,
    .row {
        max-width: 100% !important;
        overflow-x: hidden !important;
    }
    
    /* Fix full-width elements on mobile */
    .full-width-slideshow,
    .hero-section,
    .carousel,
    .carousel-item {
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        left: auto !important;
        right: auto !important;
        position: relative !important;
    }
    
    /* Mobile nav link colors for white background */
    .navbar-nav .nav-link {
        color: var(--dark-color) !important;
    }
    
    .navbar-nav .nav-link:hover {
        color: var(--navbar-primary-color) !important;
    }
    
    .navbar-nav .nav-link.active {
        background: rgba(0, 198, 249, 0.1);
        border-radius: 5px;
        margin: 2px 0;
        color: var(--navbar-primary-color) !important;
        font-weight: 600;
    }
    
    /* Brand text color for mobile white navbar */
    .navbar-brand .brand-text {
        color: var(--dark-color) !important;
    }
    
    /* Navbar toggler for white background */
    .navbar-toggler {
        border-color: var(--dark-color);
    }
    
    .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2833, 37, 41, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    }
}

@media (max-width: 991.98px) {
    .navbar {
        background: rgba(255, 255, 255, 0.95) !important;
        backdrop-filter: blur(10px);
        box-shadow: var(--box-shadow);
    }
    
    /* Mobile nav link colors for white background */
    .navbar-nav .nav-link {
        color: var(--dark-color) !important;
    }
    
    .navbar-nav .nav-link:hover {
        color: var(--navbar-primary-color) !important;
    }
    
    .navbar-nav .nav-link.active {
        background: rgba(0, 198, 249, 0.1);
        border-radius: 5px;
        margin: 2px 0;
        color: var(--navbar-primary-color) !important;
        font-weight: 600;
    }
    
    /* Brand text color for mobile white navbar */
    .navbar-brand .brand-text {
        color: var(--dark-color) !important;
    }
    
    /* Navbar toggler for white background */
    .navbar-toggler {
        border-color: var(--dark-color);
    }
    
    .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2833, 37, 41, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    }
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.full-width-slideshow {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    max-width: none;
}

#heroCarousel {
    width: 100vw;
    margin: 0;
    padding: 0;
    overflow: hidden;
    position: relative;
}

.smooth-transition .carousel-inner {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.smooth-transition .carousel-item {
    width: 100vw;
    height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
    margin: 0;
    padding: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.2s ease-in-out;
    transform: translateZ(0);
    backface-visibility: hidden;
    will-change: opacity;
    z-index: 1;
}

.smooth-transition .carousel-item.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.smooth-transition .carousel-item-next,
.smooth-transition .carousel-item-prev {
    opacity: 0;
    visibility: visible;
    z-index: 3;
}

.smooth-transition .carousel-item-next.carousel-item-start,
.smooth-transition .carousel-item-prev.carousel-item-end {
    opacity: 1;
    z-index: 3;
}

/* Ensure smooth fade transitions */
.smooth-transition .carousel-item-start {
    opacity: 1 !important;
}

.smooth-transition .carousel-item-end {
    opacity: 0 !important;
}

/* Disable Bootstrap's default slide transforms */
.smooth-transition .carousel-item-next:not(.carousel-item-start),
.smooth-transition .carousel-item-prev:not(.carousel-item-end) {
    transform: none !important;
}

/* Custom fade carousel class */
.carousel-fade .carousel-item {
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}

.carousel-fade .carousel-item.active {
    opacity: 1;
}

.carousel-fade .carousel-item-next.carousel-item-start,
.carousel-fade .carousel-item-prev.carousel-item-end {
    opacity: 1;
}

.carousel-fade .carousel-item-next,
.carousel-fade .carousel-item-prev {
    transform: none;
}

.hero-slide-image {
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    object-position: center;
    display: block;
    margin: 0;
    padding: 0;
    transform: translateZ(0);
    backface-visibility: hidden;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: optimize-contrast;
}

.hero-slide-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slide {
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.7), rgba(0, 123, 255, 0.3));
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    text-align: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons .btn {
    margin: 0.5rem;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
}

/* Services Hero Strip */
.services-hero-strip {
    position: relative;
    height: 300px !important;
    background: linear-gradient(135deg, 
        rgba(52, 58, 64, 0.7), 
        rgba(0, 123, 255, 0.5)), 
        url('../images/img8.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 130px;
}

/* About Hero Strip */
.about-hero-strip {
    position: relative;
    height: 300px !important;
    background: linear-gradient(135deg, 
        rgba(52, 58, 64, 0.7), 
        rgba(0, 123, 255, 0.5)), 
        url('../images/about-img.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 130px;
}

/* Contact Hero Strip */
.contact-hero-strip {
    position: relative;
    height: 300px !important;
    background: linear-gradient(135deg, 
        rgba(52, 58, 64, 0.7), 
        rgba(0, 123, 255, 0.5)), 
        url('../images/img4.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 130px;
}

.hero-strip-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(52, 58, 64, 0.8), 
        rgba(0, 123, 255, 0.6));
}

.strip-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    text-align: center;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 2;
}

.strip-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    margin-bottom: 0;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    z-index: 2;
}

/* Page Content Styles */
.page-main-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.page-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.breadcrumb {
    background: none;
    padding: 0;
    margin-bottom: 1rem;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: "›";
    color: var(--primary-color);
    font-weight: 600;
}

.carousel-control-prev,
.carousel-control-next {
    width: 5%;
    z-index: 3;
}

.carousel-indicators {
    bottom: 30px;
    z-index: 3;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 5px;
}

/* Responsive adjustments for slideshow */
@media (max-width: 768px) {
    .hero-section {
        height: 100vh;
        min-height: 500px;
        max-height: 800px;
    }
    
    .full-width-slideshow {
        width: 100vw;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        margin: 0;
        max-width: none;
    }
    
    #heroCarousel {
        width: 100%;
        height: 100%;
        position: relative;
        margin: 0;
        padding: 0;
    }
    
    .carousel-inner {
        height: 100%;
    }
    
    .carousel-item {
        width: 100vw;
        height: 100%;
    }
    
    .hero-slide-image {
        width: 100vw;
        height: 100%;
        min-height: 500px;
        object-fit: cover;
        object-position: center;
    }
    
    .hero-content {
        padding: 2rem 1rem;
    }
    
    .hero-title {
        font-size: 2.5rem !important;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem !important;
        line-height: 1.4;
        margin-bottom: 1.5rem;
    }
    
    .hero-buttons {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }
    
    .hero-buttons .btn {
        margin: 0;
        padding: 12px 25px;
        font-size: 0.875rem;
        min-width: 180px;
        width: auto;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        width: 8%;
        opacity: 0.7;
    }
    
    .carousel-indicators {
        bottom: 20px;
    }
    
    .carousel-indicators [data-bs-target] {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        margin: 0 3px;
    }
    
    /* Hero Strips Responsive */
    .services-hero-strip,
    .about-hero-strip,
    .contact-hero-strip {
        height: 280px;
    }
    
    .strip-title {
        font-size: 1rem;
    }
    
    .strip-subtitle {
        font-size: 1rem;
        letter-spacing: 1.5px;
    }
    
    /* CTA Section Mobile */
    .cta-section {
        padding: 2.5rem 0;
    }
    
    .cta-section h2 {
        font-size: 1.8rem;
        margin-bottom: 0.75rem;
    }
    
    .cta-section .lead {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        padding: 0 1rem;
    }
    
    /* Logo responsive sizing for tablets */
    .navbar-brand img,
    .navbar-brand .logo-img {
        height: 80px;
    }
    
    .navbar.scrolled .navbar-brand img,
    .navbar.scrolled .navbar-brand .logo-img {
        height: 60px;
    }
}

@media (max-width: 480px) {
    .hero-section {
        height: 100vh;
        min-height: 450px;
        max-height: 700px;
        position: relative;
        overflow: hidden;
    }
    
    .full-width-slideshow {
        width: 100vw;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        margin: 0;
        max-width: none;
    }
    
    #heroCarousel {
        width: 100%;
        height: 100%;
        position: relative;
        margin: 0;
        padding: 0;
    }
    
    .carousel-inner {
        height: 100%;
    }
    
    .carousel-item {
        width: 100vw;
        height: 100%;
    }
    
    .hero-slide-image {
        width: 100vw;
        height: 100%;
        min-height: 450px;
        object-fit: cover;
        object-position: center;
    }
    
    .hero-content {
        padding: 1.5rem 1rem;
    }
    
    .hero-content .col-lg-8 {
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: 2rem !important;
        line-height: 1.2;
        margin-bottom: 0.75rem;
    }
    
    .hero-subtitle {
        font-size: 1rem !important;
        line-height: 1.4;
        margin-bottom: 1.25rem;
        padding: 0 0.5rem;
    }
    
    .hero-buttons {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
        padding: 0 1rem;
    }
    
    .hero-buttons .btn {
        margin: 0;
        width: 100%;
        max-width: 220px;
        padding: 14px 20px;
        font-size: 0.875rem;
        font-weight: 600;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        width: 10%;
        opacity: 0.6;
    }
    
    .carousel-indicators {
        bottom: 15px;
        margin-bottom: 0;
    }
    
    .carousel-indicators [data-bs-target] {
        width: 6px;
        height: 6px;
        border-radius: 50%;
        margin: 0 2px;
    }
    
    /* Mobile logo sizing */
    .navbar-brand img,
    .navbar-brand .logo-img {
        height: 70px;
    }
    
    .navbar.scrolled .navbar-brand img,
    .navbar.scrolled .navbar-brand .logo-img {
        height: 50px;
    }
}

/* Mobile landscape orientation adjustments */
@media (max-width: 768px) and (orientation: landscape) {
    .hero-section {
        height: 100vh;
        min-height: 400px;
    }
    
    .hero-slide-image {
        min-height: 400px;
    }
    
    .hero-title {
        font-size: 2.2rem !important;
        margin-bottom: 0.75rem;
    }
    
    .hero-subtitle {
        font-size: 1rem !important;
        margin-bottom: 1rem;
    }
    
    .hero-buttons {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .hero-buttons .btn {
        min-width: 140px;
        padding: 10px 20px;
    }
}

/* Extra small landscape screens */
@media (max-width: 480px) and (orientation: landscape) {
    .hero-section {
        height: 100vh;
        min-height: 350px;
    }
    
    .hero-slide-image {
        min-height: 350px;
    }
    
    .hero-content {
        padding: 1rem;
    }
    
    .hero-title {
        font-size: 1.8rem !important;
    }
    
    .hero-subtitle {
        font-size: 0.9rem !important;
        margin-bottom: 0.75rem;
    }
}

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {
    .carousel-control-prev,
    .carousel-control-next {
        opacity: 0.8;
        width: 12%;
    }
    
    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 24px;
        height: 24px;
    }
    
    .carousel-indicators [data-bs-target] {
        width: 12px;
        height: 12px;
        margin: 0 4px;
    }
    
    .hero-buttons .btn {
        min-height: 48px;
        touch-action: manipulation;
    }
}

/* Prevent content overflow on very small screens */
@media (max-width: 320px) {
    .hero-section {
        height: 100vh;
        min-height: 400px;
        max-height: 600px;
        position: relative;
        overflow: hidden;
    }
    
    .full-width-slideshow {
        width: 100vw;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        margin: 0;
        max-width: none;
    }
    
    #heroCarousel {
        width: 100%;
        height: 100%;
        position: relative;
    }
    
    .carousel-inner {
        height: 100%;
        width: 100%;
    }
    
    .carousel-item {
        width: 100%;
        height: 100%;
    }
    
    .hero-slide-image {
        width: 100%;
        height: 100%;
        min-height: 400px;
        object-fit: cover;
        object-position: center;
    }
    
    .hero-content {
        padding: 1rem 0.5rem;
    }
    
    .hero-title {
        font-size: 1.6rem !important;
        word-wrap: break-word;
        hyphens: auto;
    }
    
    .hero-subtitle {
        font-size: 0.875rem !important;
        padding: 0;
    }
    
    .hero-buttons .btn {
        font-size: 0.8rem;
        padding: 12px 16px;
    }
}
    
    /* Hero Strips Responsive */
    .services-hero-strip,
    .about-hero-strip,
    .contact-hero-strip {
        height: 230px;
        padding-top: 90px;
    }
    
    .strip-title {
        font-size: 1rem;
    }
    
    .strip-subtitle {
        font-size: 0.9rem;
        letter-spacing: 1px;
    }
    
    .page-main-title {
        font-size: 1.75rem;
    }

/* Button Styles */
.btn {
    font-weight: 600;
    padding: 12px 30px;
    border-radius: var(--border-radius);
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.875rem;
}

.btn-primary {
    background: var(--primary-color);
    border: 2px solid var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background: transparent;
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--box-shadow);
}

.btn-outline-light {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-outline-light:hover {
    background: var(--white);
    border-color: var(--white);
    color: var(--dark-color);
    transform: translateY(-2px);
    box-shadow: var(--box-shadow);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--primary-color) 100%);
    color: var(--white);
    padding: 4rem 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white);
}

.cta-section .lead {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    min-width: 180px;
    padding: 15px 30px;
    font-size: 1rem;
    font-weight: 600;
}

/* About Section */
.about-image {
    position: relative;
}

.about-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-color);
    color: var(--white);
    padding: 20px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--box-shadow);
}

.about-badge h4 {
    font-size: 2rem;
    margin: 0;
}

.about-badge p {
    font-size: 0.875rem;
    margin: 0;
    opacity: 0.9;
}

.about-content {
    padding-left: 2rem;
}

.about-features {
    margin: 2rem 0;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.feature-icon {
    font-size: 1.5rem;
    margin-right: 1rem;
    margin-top: 0.25rem;
}

.feature-content h5 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.feature-content p {
    margin: 0;
    color: var(--secondary-color);
    font-size: 0.9rem;
}

.about-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Service Cards */
.service-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 2rem;
    height: 100%;
    transition: var(--transition);
    border: 1px solid #eee;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, var(--primary-color), #0056b3);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-content h4 {
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.service-content p {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-image {
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-top: auto;
}

.service-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: var(--transition);
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

/* Gallery Section */
.gallery-item {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: var(--transition);
}



.gallery-link {
    color: var(--white);
    font-size: 1.5rem;
    text-decoration: none;
    display: inline-block;
    padding: 10px;
    border: 2px solid var(--white);
    border-radius: 50%;
    transition: var(--transition);
}

.gallery-link:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: scale(1.1);
}

/* Project Gallery Multi-Item Carousel Styles */
#projectCarousel {
    position: relative;
    padding: 0 60px;
}

#projectCarousel .carousel-inner {
    overflow: visible;
}

.multi-item-carousel .carousel-item {
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-carousel-image {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: var(--border-radius);
}

#projectCarousel .carousel-control-prev,
#projectCarousel .carousel-control-next {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    opacity: 0.9;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

#projectCarousel .carousel-control-prev {
    left: 0;
}

#projectCarousel .carousel-control-next {
    right: 0;
}

#projectCarousel .carousel-control-prev:hover,
#projectCarousel .carousel-control-next:hover {
    opacity: 1;
    background: var(--primary-color);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
}

#projectCarousel .carousel-control-prev-icon,
#projectCarousel .carousel-control-next-icon {
    width: 24px;
    height: 24px;
    background-size: 100%;
}



/* Responsive adjustments for multi-item carousel */
@media (max-width: 992px) {
    #projectCarousel {
        padding: 0 40px;
    }
    
    #projectCarousel .row .col-lg-4 {
        flex: 0 0 50%;
        max-width: 50%;
    }
    
    .gallery-carousel-image {
        height: 280px;
    }
}

@media (max-width: 768px) {
    #projectCarousel {
        padding: 0 30px;
    }
    
    #projectCarousel .row .col-lg-4 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .gallery-carousel-image {
        height: 320px;
    }
    
    #projectCarousel .carousel-control-prev,
    #projectCarousel .carousel-control-next {
        width: 40px;
        height: 40px;
    }
    
    #projectCarousel .carousel-control-prev-icon,
    #projectCarousel .carousel-control-next-icon {
        width: 20px;
        height: 20px;
    }
    

}

/* Tyre Fill Section */
.tyrefill-features .feature-item {
    margin-bottom: 2rem;
}

.tyrefill-features .feature-icon {
    color: var(--white);
    font-size: 1.5rem;
    margin-right: 1rem;
}

.tyrefill-features .feature-content h5 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.tyrefill-features .feature-content p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.tyrefill-image img {
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

/* Contact Section */
.contact-form-wrapper {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form label {
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
    display: block;
}

.contact-form .form-control {
    border: 2px solid #eee;
    border-radius: var(--border-radius);
    padding: 12px 15px;
    font-size: 1rem;
    transition: var(--transition);
}

.contact-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.contact-info {
    background: var(--light-color);
    padding: 2rem;
    border-radius: var(--border-radius);
    height: 100%;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.contact-content h5 {
    color: var(--dark-color);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-content p {
    color: var(--secondary-color);
    margin: 0;
    line-height: 1.6;
}

.map-container {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

#googleMap {
    border-radius: var(--border-radius);
}

/* Footer */
.footer {
    background: var(--dark-color) !important;
    padding: 3rem 0 1rem;
}

.footer-content h5,
.footer-content h6 {
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.footer-social {
    display: flex;
    gap: 0.5rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

.footer-title {
    color: var(--white) !important;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a,
.footer-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover,
.footer-link:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-contact .contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact .contact-item i {
    margin-right: 0.75rem;
    color: var(--primary-color);
    width: 15px;
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 2rem 0 1rem;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background: var(--dark-color);
    transform: translateY(-3px);
    box-shadow: var(--box-shadow);
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .about-content {
        padding-left: 0;
        margin-top: 2rem;
    }
    
    .about-stats {
        justify-content: center;
    }
    
    .contact-info {
        margin-top: 2rem;
    }
}

@media (max-width: 767.98px) {
    .section-padding {
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin: 0.5rem 0;
    }
    
    .service-card {
        margin-bottom: 2rem;
    }
    
    .about-badge {
        position: static;
        margin-top: 1rem;
        width: fit-content;
    }
    
    .about-stats {
        gap: 1rem;
    }
    
    .stat-item {
        min-width: 80px;
    }
    
    /* CTA Section Responsive */
    .cta-section {
        padding: 3rem 0;
    }
    
    .cta-section h2 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 280px;
    }
}

/* Loading Animation */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Parallax Effect */
.parallax-element {
    transition: transform 0.1s ease-out;
}

/* Custom Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-fadeInUp {
    animation: fadeInUp 0.6s ease forwards;
}

.animate-slideInLeft {
    animation: slideInLeft 0.6s ease forwards;
}

.animate-slideInRight {
    animation: slideInRight 0.6s ease forwards;
}

/* Text Color Utilities */
.text-white-50 {
    color: rgba(255, 255, 255, 0.5) !important;
}

.text-white-75 {
    color: rgba(255, 255, 255, 0.75) !important;
}

/* Custom Spacing */
.mb-6 {
    margin-bottom: 4rem !important;
}

.pb-6 {
    padding-bottom: 4rem !important;
}

.pt-6 {
    padding-top: 4rem !important;
}

/* Enhanced Box Shadows */
.shadow-soft {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08) !important;
}

.shadow-strong {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15) !important;
}

/* Gradient Backgrounds */
.bg-gradient-primary {
    background: linear-gradient(45deg, var(--primary-color), #0056b3) !important;
}

.bg-gradient-dark {
    background: linear-gradient(45deg, var(--dark-color), #1a1d20) !important;
}

/* Cookie Consent Popup Styles - Added 2025-09-28 */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(248, 249, 250, 0.98));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    font-family: var(--font-family);
}

.cookie-consent.show {
    transform: translateY(0);
}

.cookie-consent-content {
    padding: 20px 0;
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-consent-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-consent-text {
    flex: 1;
    min-width: 300px;
}

.cookie-consent-text h6 {
    color: var(--dark-color);
    font-weight: 600;
    font-size: 1rem;
    margin: 0 0 8px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cookie-consent-text p {
    color: var(--secondary-color);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.cookie-consent-text a {
    color: var(--navbar-primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.cookie-consent-text a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.cookie-consent-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-consent-btn {
    padding: 10px 20px;
    border: none;
    border-radius: var(--border-radius);
    font-size: 0.9rem;
    font-weight: 500;
    font-family: var(--font-family);
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.cookie-consent-btn:focus {
    outline: 2px solid var(--navbar-primary-color);
    outline-offset: 2px;
}

.btn-accept {
    background: var(--navbar-primary-color);
    color: white;
}

.btn-accept:hover {
    background: var(--primary-color);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 198, 249, 0.3);
    color: white;
}

.btn-customize {
    background: transparent;
    color: var(--secondary-color);
    border: 1px solid var(--secondary-color);
}

.btn-customize:hover {
    background: var(--secondary-color);
    color: white;
    transform: translateY(-1px);
}

.btn-decline {
    background: transparent;
    color: var(--danger-color);
    border: 1px solid var(--danger-color);
}

.btn-decline:hover {
    background: var(--danger-color);
    color: white;
    transform: translateY(-1px);
}

.cookie-icon {
    color: var(--warning-color);
    font-size: 1.1rem;
}

/* Cookie Settings Modal */
.cookie-settings-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.cookie-settings-modal.show {
    opacity: 1;
    visibility: visible;
}

.cookie-settings-content {
    background: white;
    border-radius: var(--border-radius);
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    transform: scale(0.9) translateY(20px);
    transition: transform 0.3s ease;
}

.cookie-settings-modal.show .cookie-settings-content {
    transform: scale(1) translateY(0);
}

.cookie-settings-header {
    padding: 25px 25px 0 25px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.cookie-settings-header h5 {
    margin: 0 0 15px 0;
    color: var(--dark-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.cookie-settings-body {
    padding: 25px;
}

.cookie-category {
    margin-bottom: 25px;
    padding: 20px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--border-radius);
    background: rgba(248, 249, 250, 0.5);
}

.cookie-category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.cookie-category h6 {
    margin: 0;
    color: var(--dark-color);
    font-size: 1rem;
}

.cookie-toggle {
    position: relative;
    width: 50px;
    height: 24px;
    background: #ddd;
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition);
}

.cookie-toggle.active {
    background: var(--navbar-primary-color);
}

.cookie-toggle.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.cookie-toggle::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 50%;
    transition: var(--transition);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.cookie-toggle.active::after {
    transform: translateX(26px);
}

.cookie-category p {
    margin: 0;
    color: var(--secondary-color);
    font-size: 0.9rem;
    line-height: 1.5;
}

.cookie-settings-footer {
    padding: 0 25px 25px 25px;
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .cookie-consent-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .cookie-consent-text {
        min-width: auto;
    }
    
    .cookie-consent-actions {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .cookie-consent-btn {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
    
    .cookie-settings-content {
        width: 95%;
        max-height: 90vh;
    }
    
    .cookie-settings-header,
    .cookie-settings-body,
    .cookie-settings-footer {
        padding: 20px;
    }
    
    .cookie-category-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .cookie-consent-actions {
        width: 100%;
    }
    
    .cookie-consent-btn {
        flex: 1;
        min-width: 0;
        justify-content: center;
    }
    
    .cookie-settings-footer {
        flex-direction: column;
    }
    
    .cookie-settings-footer .cookie-consent-btn {
        width: 100%;
    }
}

/* Client Logos Section */
.clients-logos-container {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 40px 20px;
    box-shadow: var(--box-shadow);
    border: 1px solid #e9ecef;
}

.client-logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 200px;
    padding: 30px;
    border-radius: 15px;
    transition: var(--transition);
    background: var(--white);
    border: 2px solid #e9ecef;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.client-logo-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    border-color: var(--primary-color);
    background: var(--white);
}

.client-logo {
    max-height: 140px;
    max-width: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: none;
    transition: var(--transition);
}

.client-logo-item:hover .client-logo {
    transform: scale(1.1);
}

/* Trust Indicators */
.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    max-width: 300px;
}

.trust-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.trust-icon {
    flex-shrink: 0;
}

.trust-icon i {
    font-size: 2rem;
}

.trust-content h6 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--dark-color);
}

.trust-content p {
    font-size: 0.9rem;
    color: var(--secondary-color);
    margin-bottom: 0;
    line-height: 1.5;
}

/* Client Section Responsive */
@media (max-width: 992px) {
    .clients-logos-container {
        padding: 30px 15px;
    }
    
    .client-logo-item {
        height: 180px;
        padding: 25px;
    }
    
    .client-logo {
        max-height: 120px;
    }
    
    .trust-indicators {
        gap: 20px;
    }
    
    .trust-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
        padding: 20px 15px;
    }
}

@media (max-width: 768px) {
    .clients-logos-container {
        padding: 25px 10px;
    }
    
    .client-logo-item {
        height: 160px;
        padding: 20px;
    }
    
    .client-logo {
        max-height: 100px;
    }
    
    .trust-indicators {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .trust-item {
        width: 100%;
        max-width: none;
    }
}

@media (max-width: 576px) {
    .section-padding {
        padding: 60px 0;
    }
    
    .clients-logos-container .row {
        --bs-gutter-x: 0.5rem;
    }
    
    .client-logo-item {
        height: 140px;
        padding: 15px;
        margin-bottom: 10px;
    }
    
    .client-logo {
        max-height: 80px;
    }
}

/* Tyre Fill Circular Image Styles */
.tyrefill-image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    min-height: 400px;
}

.tyrefill-image-container {
    position: relative;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 5px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.tyrefill-image-container:hover {
    transform: scale(1.05);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.4);
}

.tyrefill-image-container::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.3), rgba(0, 198, 249, 0.3), rgba(0, 123, 255, 0.3));
    border-radius: 50%;
    z-index: -1;
    animation: rotate 3s linear infinite;
}

.tyrefill-circular-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    transition: var(--transition);
}

.tyrefill-image-container:hover .tyrefill-circular-image {
    transform: scale(1.1);
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Tyre Fill Image Responsive */
@media (max-width: 992px) {
    .tyrefill-image-wrapper {
        min-height: 350px;
        margin-top: 40px;
    }
    
    .tyrefill-image-container {
        width: 300px;
        height: 300px;
    }
}

@media (max-width: 768px) {
    .tyrefill-image-wrapper {
        min-height: 300px;
        margin-top: 30px;
    }
    
    .tyrefill-image-container {
        width: 250px;
        height: 250px;
    }
}

@media (max-width: 576px) {
    .tyrefill-image-wrapper {
        min-height: 250px;
        margin-top: 20px;
    }
    
    .tyrefill-image-container {
        width: 200px;
        height: 200px;
        border-width: 3px;
    }
}

/* Vision, Mission & Values Section */
.vision-mission-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 50px 40px;
    box-shadow: var(--box-shadow);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.vision-mission-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), #00c6f9);
}

.card-icon {
    margin-bottom: 20px;
}

.card-icon i {
    font-size: 4.5rem;
    opacity: 0.8;
}

.vision-text,
.mission-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--secondary-color);
    margin: 0;
    font-weight: 400;
}

.core-values-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 50px 30px;
    box-shadow: var(--box-shadow);
    position: relative;
    overflow: hidden;
}

.core-values-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), #00c6f9);
}

.value-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 12px;
    transition: var(--transition);
    height: 100%;
    border-left: 4px solid transparent;
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-left-color: var(--primary-color);
    background: var(--white);
}

.value-item-centered {
    justify-content: center;
    max-width: 600px;
    margin: 0 auto;
}

.value-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), #00c6f9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 5px;
}

.value-icon i {
    font-size: 2rem;
    color: var(--white);
}

.value-content h5 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.value-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--secondary-color);
    margin-bottom: 0;
}

/* Vision, Mission & Values Responsive */
@media (max-width: 992px) {
    .vision-mission-card {
        padding: 40px 30px;
    }
    
    .core-values-card {
        padding: 40px 20px;
    }
    
    .value-item {
        padding: 20px;
        gap: 15px;
    }
    
    .value-icon {
        width: 70px;
        height: 70px;
    }
    
    .value-icon i {
        font-size: 1.8rem;
    }
    
    .card-icon i {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .vision-mission-card {
        padding: 30px 20px;
    }
    
    .core-values-card {
        padding: 30px 15px;
    }
    
    .value-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding: 25px 20px;
    }
    
    .value-item-centered {
        flex-direction: column;
    }
    
    .vision-text,
    .mission-text {
        font-size: 1.1rem;
    }
    
    .card-icon i {
        font-size: 3rem;
    }
    
    .value-icon {
        margin: 0 auto;
    }
}

@media (max-width: 576px) {
    .vision-mission-card,
    .core-values-card {
        padding: 25px 15px;
    }
    
    .vision-text,
    .mission-text {
        font-size: 1rem;
    }
    
    .value-content h5 {
        font-size: 1.2rem;
    }
    
    .value-content p {
        font-size: 0.95rem;
    }
}

/* Services Hero Strip */
.services-hero-strip {
    position: relative;
    height: 300px !important;
    background: linear-gradient(135deg, 
        rgba(52, 58, 64, 0.7), 
        rgba(0, 123, 255, 0.5)), 
        url('../images/services/service-hero.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 130px;
}

.strip-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.strip-subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    opacity: 0.9;
    letter-spacing: 2px;
    color: var(--white);
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

.breadcrumb-section {
    border-bottom: 1px solid #e9ecef;
}

.breadcrumb {
    background: transparent;
    padding: 0;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: "›";
    color: var(--primary-color);
    font-weight: 600;
}

.breadcrumb-item a {
    color: var(--primary-color);
    text-decoration: none;
}

.breadcrumb-item.active {
    color: var(--secondary-color);
}

/* Enhanced Service Category Layout */
.service-category-section {
    background: var(--white);
    border-radius: 25px;
    padding: 50px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-category-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--primary-color), #00c6f9);
}

.service-category-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-color);
}

.category-main-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.category-header-enhanced {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 30px;
}

.category-icon-large {
    background: linear-gradient(135deg, var(--primary-color), #00c6f9);
    width: 100px;
    height: 100px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 10px 30px rgba(0, 123, 255, 0.3);
    position: relative;
}

.category-icon-large::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.3), rgba(0, 198, 249, 0.3));
    border-radius: 28px;
    z-index: -1;
}

.category-icon-large i {
    font-size: 3rem;
    color: var(--white);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.category-title-section h3.category-main-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--dark-color);
    line-height: 1.2;
}

.category-main-subtitle {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 0;
    font-weight: 500;
    opacity: 0.9;
}

.category-main-description {
    margin-bottom: 30px;
}

.category-main-description p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.category-main-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.category-hero-image {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.service-hero-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: var(--transition);
}

.category-hero-image:hover .service-hero-image {
    transform: scale(1.05);
}

.category-image {
    margin-bottom: 25px;
}

.service-rounded-image {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.service-rounded-image:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.category-description p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--secondary-color);
    margin-bottom: 30px;
}

.sub-services-grid {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid #e9ecef;
    margin-top: 30px;
}

.sub-services-header {
    text-align: center;
    margin-bottom: 35px;
}

.sub-services-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.sub-services-subtitle {
    font-size: 1rem;
    color: var(--secondary-color);
    margin-bottom: 0;
    font-style: italic;
}

.sub-service-card {
    background: var(--white);
    border-radius: 15px;
    padding: 25px;
    height: 100%;
    transition: var(--transition);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    margin-bottom: 20px;
}

.sub-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), #00c6f9);
    transform: scaleX(0);
    transition: var(--transition);
}

.sub-service-card:hover::before {
    transform: scaleX(1);
}

.sub-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.sub-service-image-wrapper {
    margin-bottom: 20px;
    border-radius: 12px;
    overflow: hidden;
    height: 140px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    display: flex;
    align-items: center;
    justify-content: center;
}

.sub-service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.sub-service-card:hover .sub-service-image {
    transform: scale(1.1);
}

.sub-service-content {
    text-align: center;
}

.sub-service-title {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--dark-color);
    line-height: 1.4;
}

.sub-service-description {
    font-size: 0.95rem;
    color: var(--secondary-color);
    margin-bottom: 0;
    line-height: 1.6;
}

.sub-service-overlay {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 35px;
    height: 35px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.8rem;
}

/* Row-based Sub-Service Layout */
.sub-services-list {
    margin-top: 10px;
}

.sub-service-row {
    background: var(--white);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 20px;
    border: 2px solid #f8f9fa;
    transition: var(--transition);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.sub-service-row:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.sub-service-row:last-child {
    margin-bottom: 0;
}

.sub-service-image-wrapper-row {
    border-radius: 10px;
    overflow: hidden;
    height: 80px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    display: flex;
    align-items: center;
    justify-content: center;
}

.sub-service-content-row {
    padding-left: 0;
}

.sub-service-title-row {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--dark-color);
    line-height: 1.4;
}

.sub-service-description-row {
    font-size: 1rem;
    color: var(--secondary-color);
    margin-bottom: 0;
    line-height: 1.6;
}

.sub-service-overlay i {
    color: var(--white);
    font-size: 0.9rem;
}

.sub-service-card:hover .sub-service-overlay {
    opacity: 1;
    transform: scale(1);
}

/* Service Divider */
.service-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 60px 0;
    position: relative;
}

.divider-line {
    height: 2px;
    width: 100%;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    position: absolute;
}

.divider-icon {
    background: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--primary-color);
    position: relative;
    z-index: 1;
}

.divider-icon i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.category-footer {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

/* Safety Section */
.safety-icon {
    text-align: center;
    margin-bottom: 30px;
}

.safety-icon i {
    font-size: 5rem;
    color: rgba(255, 255, 255, 0.8);
}

.safety-content p {
    font-size: 1.1rem;
    line-height: 1.8;
}

.safety-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.safety-features .feature-item {
    display: flex;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 500;
}

.safety-image {
    position: relative;
}

.safety-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    z-index: -1;
}

/* Benefits Section */
.benefits-content {
    max-width: 800px;
    margin: 0 auto;
}

.benefit-item {
    background: var(--white);
    border-radius: 15px;
    padding: 35px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    position: relative;
    border-left: 5px solid var(--primary-color);
    max-width: 850px;
}

.benefit-item.benefit-right {
    border-left: none;
    border-right: 5px solid #00c6f9;
    margin-left: auto;
    margin-right: 0;
    text-align: right;
}

.benefit-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.benefit-content h4 {
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.benefit-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--secondary-color);
    margin-bottom: 0;
    font-weight: 300;
    text-align: left;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.cta-buttons {
    margin-top: 30px;
}

/* Services Page Responsive */
@media (max-width: 992px) {
    .strip-title {
        font-size: 2.4rem;
    }
    
    .strip-subtitle {
        font-size: 1.1rem;
    }
    
    .service-category-section {
        padding: 35px;
        margin-bottom: 40px;
    }
    
    .category-header-enhanced {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .category-icon-large {
        width: 80px;
        height: 80px;
        margin: 0 auto;
    }
    
    .category-icon-large i {
        font-size: 2.5rem;
    }
    
    .category-title-section h3.category-main-title {
        font-size: 1.8rem;
    }
    
    .category-main-actions {
        justify-content: center;
    }
    
    .service-hero-image {
        height: 250px;
    }
    
    .sub-services-grid {
        padding: 25px;
        margin-top: 30px;
    }
    
    .safety-icon i {
        font-size: 4rem;
    }
    
    .benefit-item.benefit-right {
        text-align: left;
        margin-left: 0;
        border-left: 5px solid #00c6f9;
        border-right: none;
    }
}

@media (max-width: 768px) {
    .strip-title {
        font-size: 2rem;
    }
    
    .strip-subtitle {
        font-size: 1rem;
        letter-spacing: 1px;
    }
    
    .service-category-section {
        padding: 25px;
        margin-bottom: 30px;
    }
    
    .category-icon-large {
        width: 70px;
        height: 70px;
    }
    
    .category-icon-large i {
        font-size: 2rem;
    }
    
    .category-title-section h3.category-main-title {
        font-size: 1.6rem;
    }
    
    .category-main-description p {
        font-size: 1rem;
    }
    
    .category-main-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .category-main-actions .btn {
        width: 100%;
        max-width: 250px;
        margin-bottom: 10px;
    }
    
    .service-hero-image {
        height: 200px;
    }
    
    .sub-services-grid {
        padding: 20px;
    }
    
    .sub-service-card {
        padding: 15px;
        margin-bottom: 15px;
    }
    
    .sub-service-image-wrapper {
        height: 100px;
    }
    
    .sub-services-title {
        font-size: 1.2rem;
    }
    
    .safety-features {
        margin-top: 20px;
    }
    
    .safety-features .feature-item {
        font-size: 1rem;
    }
    
    .service-divider {
        margin: 40px 0;
    }
    
    .divider-icon {
        width: 50px;
        height: 50px;
    }
    
    .divider-icon i {
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .services-hero-strip {
        padding: 80px 0 50px;
    }
    
    .strip-title {
        font-size: 1.6rem;
    }
    
    .service-category-section {
        padding: 20px;
        border-radius: 15px;
    }
    
    .category-header-enhanced {
        gap: 15px;
    }
    
    .category-icon-large {
        width: 60px;
        height: 60px;
        border-radius: 15px;
    }
    
    .category-icon-large i {
        font-size: 1.8rem;
    }
    
    .category-title-section h3.category-main-title {
        font-size: 1.4rem;
    }
    
    .category-main-subtitle {
        font-size: 1rem;
    }
    
    .sub-services-grid {
        padding: 25px;
        border-radius: 15px;
        margin-top: 20px;
    }
    
    .sub-service-card {
        padding: 20px;
        margin-bottom: 15px;
    }
    
    .sub-service-image-wrapper {
        height: 100px;
        margin-bottom: 15px;
    }
    
    .sub-service-title {
        font-size: 1rem;
    }
    
    .sub-service-description {
        font-size: 0.85rem;
    }
    
    .benefit-item {
        padding: 20px;
    }
    
    .cta-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 15px;
    }
    
    .cta-buttons .btn:last-child {
        margin-bottom: 0;
    }
    
    .service-divider {
        margin: 30px 0;
    }
}

/* Breadcrumb and Page Title Styling */
.breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: 20px;
    font-size: 14px;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: "›";
    color: #6c757d;
    font-weight: bold;
}

.breadcrumb-item a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: var(--accent-color);
}

.breadcrumb-item.active {
    color: #6c757d;
}

.page-main-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
    line-height: 1.2;
}

.page-subtitle {
    font-size: 1.2rem;
    color: #6c757d;
    margin-bottom: 40px;
    font-weight: 400;
}

@media (max-width: 768px) {
    .page-main-title {
        font-size: 2.5rem;
    }
    
    .page-subtitle {
        font-size: 1.1rem;
    }
}

/* Simple Hero and CTA Styles */
.hero-subtitle-simple {
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 0;
    font-weight: 400;
}

.cta-section-simple {
    background: #f8f9fa;
    border-top: 1px solid #e9ecef;
}

.cta-title-simple {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.cta-description-simple {
    font-size: 1rem;
    color: #6c757d;
    line-height: 1.6;
}

.cta-buttons-simple {
    margin-top: 25px;
}

.cta-buttons-simple .btn {
    padding: 12px 30px;
    font-size: 1rem;
    border-radius: 25px;
    font-weight: 500;
}

@media (max-width: 768px) {
    .hero-title-simple {
        font-size: 2rem;
    }
    
    .hero-subtitle-simple {
        font-size: 1rem;
    }
    
    .cta-title-simple {
        font-size: 1.6rem;
    }
    
    .cta-buttons-simple .btn {
        display: block;
        width: 100%;
        margin: 0 0 15px 0;
    }
    
    .cta-buttons-simple .btn:last-child {
        margin-bottom: 0;
    }
}

/* Smaller Hero Titles for Index Page */
.hero-title-smaller {
    font-size: 2.8rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle-smaller {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    font-weight: 400;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .hero-title-smaller {
        font-size: 2.2rem;
    }
    
    .hero-subtitle-smaller {
        font-size: 1rem;
    }
}

/* Enhanced CTA Section with Background */
.cta-section-enhanced {
    position: relative;
    background: linear-gradient(135deg, 
        rgba(0, 123, 255, 0.9), 
        rgba(52, 58, 64, 0.8)), 
        url('../images/services/cta-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    overflow: hidden;
}

.cta-background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.cta-section-enhanced .container {
    position: relative;
    z-index: 2;
}

.cta-icon-wrapper {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-icon-wrapper i {
    font-size: 2rem;
    color: white;
}

.cta-title-enhanced {
    font-size: 2.2rem;
    font-weight: 700;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    margin-bottom: 20px;
}

.cta-description-enhanced {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.cta-buttons-enhanced {
    margin-top: 30px;
}

.cta-buttons-enhanced .btn {
    padding: 15px 35px;
    font-size: 1.1rem;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.cta-buttons-enhanced .btn-light {
    background: white;
    color: var(--primary-color);
    border-color: white;
}

.cta-buttons-enhanced .btn-light:hover {
    background: transparent;
    color: white;
    border-color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.cta-buttons-enhanced .btn-outline-light {
    background: transparent;
    color: white;
    border-color: white;
}

.cta-buttons-enhanced .btn-outline-light:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Responsive CTA Enhanced */
@media (max-width: 768px) {
    .cta-title-enhanced {
        font-size: 1.8rem;
    }
    
    .cta-description-enhanced {
        font-size: 1.1rem;
    }
    
    .cta-buttons-enhanced .btn {
        display: block;
        width: 100%;
        margin: 0 0 15px 0;
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    .cta-buttons-enhanced .btn:last-child {
        margin-bottom: 0;
    }
    
    .cta-icon-wrapper {
        width: 60px;
        height: 60px;
    }
    
    .cta-icon-wrapper i {
        font-size: 1.5rem;
    }
}