/* ============================================
   B S FIRE SERVICE - MAIN STYLESHEET
   Component 1: Header & Navigation
   ============================================ */

/* ===== CSS VARIABLES ===== */
:root {
    /* Brand Colors */
    --primary-red: #E31E24;
    --dark-red: #C41E3A;
    --gold: #FDB913;
    --dark-gray: #2C2C2C;
    --light-gray: #F5F5F5;
    --white: #FFFFFF;
    --text-dark: #333333;
    --text-light: #666666;
    
    /* Typography */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
    
    /* Spacing */
    --container-max-width: 1200px;
    --section-padding: 80px 20px;
    --section-padding-mobile: 60px 20px;
    
    /* Transitions */
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s ease;
    
    /* Shadows */
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.2);
}

/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    
    
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    background: transparent;
    min-height: 100%;
    background-image: url('background-image.jpg');
    background-size: cover;
    background-position: center center;
    background-attachment: scroll;
    background-repeat: no-repeat;
}
.hero-section,
.about-section,
.services-section,
.products-section,
.industries-section,
.clients-section,
.why-section,
.contact-section {
    background: transparent !important;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

ul, ol {
    list-style: none;
}

/* ===== UTILITY CLASSES ===== */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   COMPONENT 1: HEADER & NAVIGATION
   ============================================ */

/* ----- Header Container ----- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

/* ----- Top Info Bar ----- */
.top-bar {
    background: var(--dark-gray);
    color: var(--white);
    padding: 8px 0;
    font-size: 0.875rem;
}

.top-bar-content {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-bar-item svg {
    width: 16px;
    height: 16px;
    fill: var(--gold);
    flex-shrink: 0;
}

.top-bar-item a {
    color: var(--white);
    transition: var(--transition-fast);
}

.top-bar-item a:hover {
    color: var(--gold);
}

/* ----- Main Navigation Container ----- */
.nav-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100px;
}

/* ----- Logo ----- */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.logo:hover {
    transform: scale(1.02);
}

.logo-image {
    width: 80px;        
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}


.logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}


.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-name {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--dark-gray);
    line-height: 1.2;
}

.logo-tagline {
    font-size: 0.75rem;
    color: var(--text-light);
    font-style: italic;
    line-height: 1;
}

/* ----- Navigation Menu ----- */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
}

.nav-menu li a {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-dark);
    text-decoration: none;
    position: relative;
    transition: var(--transition-smooth);
    padding: 5px 0;
    display: inline-block;
}

/* Navigation link underline effect */
.nav-menu li a.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-red);
    transition: var(--transition-smooth);
}

.nav-menu li a.nav-link:hover {
    color: var(--primary-red);
}

.nav-menu li a.nav-link:hover::after {
    width: 100%;
}

.nav-menu li a.nav-link.active {
    color: var(--primary-red);
}

.nav-menu li a.nav-link.active::after {
    width: 100%;
}

/* ----- CTA Button ----- */
.nav-cta {
    background: var(--primary-red);
    color: var(--white);
    padding: 12px 20px;
    line-height: 1;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(227, 30, 36, 0.3);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    white-space: nowrap;
    min-width: 110px;
}

.nav-cta:hover {
    background: var(--dark-red);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(227, 30, 36, 0.4);
}

.nav-cta svg {
    flex-shrink: 0;
    margin: 0;
    width: 18px;
    height: 18px;
    fill: var(--white);
    vertical-align:middle;
    justify-items: center;
}

/* ----- Mobile Menu Toggle ----- */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    background: transparent;
    border: none;
    z-index: 1001;
}

.menu-toggle span {
    width: 28px;
    height: 3px;
    background: var(--dark-gray);
    transition: var(--transition-smooth);
    border-radius: 3px;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
    background: var(--primary-red);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
    background: var(--primary-red);
}

/* ----- Menu Overlay ----- */
.menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    transition: var(--transition-smooth);
}

.menu-overlay.active {
    display: block;
    opacity: 1;
}

/* ----- Header Spacer ----- */
.header-spacer {
    height: 138px; /* top-bar (40px) + nav (80px) + some padding */
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* ----- Tablet (992px and below) ----- */
@media (max-width: 992px) {
    .nav-menu {
        gap: 25px;
    }
    
    .logo-name {
        font-size: 1.3rem;
    }
    
    .nav-menu li a {
        font-size: 0.9rem;
    }
}

/* ----- Mobile (768px and below) ----- */
@media (max-width: 768px) {
    .top-bar {
        font-size: 0.8rem;
    }
    
    .top-bar-content {
        justify-content: center;
        text-align: center;
    }
    
    .nav-container {
        height: 70px;
    }
    
    .logo-name {
        font-size: 1.2rem;
    }
    
    .logo-tagline {
        font-size: 0.7rem;
    }
    
    /* Show mobile menu toggle */
    .menu-toggle {
        display: flex;
    }
    
    /* Mobile navigation menu */
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: 100px 30px 30px;
        gap: 20px;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
        transition: var(--transition-smooth);
        align-items: flex-start;
        overflow-y: auto;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu li {
        width: 100%;
    }
    
    .nav-menu li a.nav-link {
        display: block;
        padding: 12px 0;
        font-size: 1.1rem;
    }
    
    .nav-cta {
        width: 100%;
        justify-content: center;
        margin-top: 10px;
    }
    
    .header-spacer {
        height: 108px; /* Adjusted for mobile */
    }
}

/* ----- Small Mobile (480px and below) ----- */
@media (max-width: 480px) {
    .top-bar {
        font-size: 0.75rem;
    }
    
    .top-bar-item {
        gap: 6px;
    }
    
    .logo-image {
        width: 45px;
        height: 45px;
    }
    
    .logo-image svg {
        width: 25px;
        height: 25px;
    }
    
    .logo-name {
        font-size: 1.1rem;
    }
    
    .logo-tagline {
        font-size: 0.65rem;
    }
    
    .nav-menu {
        width: 100%;
        max-width: 280px;
    }
}

/* ============================================
   COMPONENT 2: HERO SECTION
   ============================================ */

.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #F5F5F5 0%, #FFFFFF 100%);
    position: relative;
    overflow: hidden;
    padding: 60px 20px 40px;
}

/* Background pattern */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(227, 30, 36, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.hero-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* ----- Hero Content ----- */
.hero-content {
    animation: fadeInLeft 0.8s ease-out;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Hero badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    color: var(--white);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 24px;
    animation: slideInDown 0.6s ease-out 0.2s backwards;
}

.hero-badge svg {
    width: 18px;
    height: 18px;
    fill: var(--gold);
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero title */
.hero-title {
    font-family: var(--font-heading);
    font-size: 3.0rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--dark-gray);
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease-out 0.3s backwards;
}

.title-highlight {
    color: var(--primary-red);
    display: block;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero subtitle */
.hero-subtitle {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 16px;
    animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

/* Hero description */
.hero-description {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 32px;
    max-width: 540px;
    animation: fadeInUp 0.8s ease-out 0.5s backwards;
    justify-content: center;
}

/* ----- Hero Buttons ----- */
.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 48px;
    animation: fadeInUp 0.8s ease-out 0.6s backwards;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: var(--transition-smooth);
    cursor: pointer;
    border: 2px solid transparent;
}

.btn svg {
    width: 20px;
    height: 20px;
    transition: var(--transition-smooth);
}

.btn-primary {
    background: var(--primary-red);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(227, 30, 36, 0.3);
}

.btn-primary svg {
    fill: var(--white);
}

.btn-primary:hover {
    background: var(--dark-red);
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(227, 30, 36, 0.4);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary-red);
    border-color: var(--primary-red);
}

.btn-secondary svg {
    fill: var(--primary-red);
}

.btn-secondary:hover {
    background: var(--primary-red);
    color: var(--white);
}

.btn-secondary:hover svg {
    fill: var(--white);
}

.btn-call {
    background: var(--dark-red);
    color: var(--dark-gray);
}

.btn-call svg {
    fill: var(--dark-gray);
}

.btn-call:hover {
    background: #f00c0c;
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(253, 19, 19, 0.911);
}

/* ----- Hero Stats ----- */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 24px;
    background: transparent;
    border-radius: 0px;
    box-shadow: 0;
    animation: fadeInUp 0.8s ease-out 0.7s backwards;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-red);
    line-height: 1;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-light);
    line-height: 1.2;
}

.stat-divider {
    width: 0px;
    height: 0px;
    background: var(--light-gray);
}

/* ----- Hero Image ----- */
.hero-image {
    position: relative;
    animation: fadeInRight 0.8s ease-out 0.4s backwards;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-visual {
    width: 100%;
    max-width: 400px;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-illustration {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 10px 40px rgba(0, 0, 0, 0.1));
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(-80px);
    }
    50% {
        transform: translateY(-100px);
    }
}
/* =====  Brochure Hover ===== */

.hero-download {
    position: relative;
    display: block;
}

/* Overlay container */
.hero-overlay {
    position: absolute;
    inset: 0;

    display: flex;
    align-items: flex-start;   /* move to top */
    justify-content: center;

    padding-top: 20px;         /* distance from top */

    opacity: 0;
    transition: 0.3s ease;

    backdrop-filter: blur(4px);  /* subtle glass */
}

/* Stronger text */
.hero-overlay span {
    background: rgba(0, 0, 0, 0.55);  /* solid background behind text only */
    color: #ffffff;
    font-weight: 800;
    font-size: 1.1rem;
    padding: 8px 18px;
    border-radius: 999px;
    letter-spacing: 0.5px;
}

/* Hover effect */
.hero-download:hover .hero-illustration {
    opacity: 0.65;
}

.hero-download:hover .hero-overlay {
    opacity: 1;
}

/* ----- Floating Badges 
.floating-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: var(--white);
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--dark-gray);
}

.floating-badge svg {
    width: 20px;
    height: 20px;
}

.badge-1 {
    top: 10%;
    right: 10%;
    animation: fadeInScale 0.6s ease-out 1s backwards, floatBadge1 4s ease-in-out 1.5s infinite;
}

.badge-1 svg {
    fill: #25D366;
}

.badge-2 {
    top: 50%;
    right: 5%;
    animation: fadeInScale 0.6s ease-out 1.2s backwards, floatBadge2 4.5s ease-in-out 1.7s infinite;
}

.badge-2 svg {
    fill: var(--gold);
}

.badge-3 {
    bottom: 15%;
    right: 15%;
    animation: fadeInScale 0.6s ease-out 1.4s backwards, floatBadge3 5s ease-in-out 1.9s infinite;
}

.badge-3 svg {
    fill: var(--primary-red);
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes floatBadge1 {
    0%, 100% {
        transform: translateY(-100px);
    }
    50% {
        transform: translateY(-125px);
    }
}

@keyframes floatBadge2 {
    0%, 100% {
        transform: translateY(-100px);
    }
    50% {
        transform: translateY(-122px);
    }
}

@keyframes floatBadge3 {
    0%, 100% {
        transform: translateY(-100px);
    }
    50% {
        transform: translateY(-125px);
    }
}----- */

/* ----- Scroll Indicator ----- */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-dark);
    font-size: 0.875rem;
    animation: bounce 2s infinite;
}

.scroll-indicator svg {
    width: 24px;
    height: 24px;
    fill: var(--primary-red);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* ============================================
   RESPONSIVE DESIGN - HERO SECTION
   ============================================ */

@media (max-width: 992px) {
    .hero-container {
        gap: 40px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .hero-image-wrapper {
        height: 400px;
    }
    
    .hero-visual {
        max-width: 350px;
        height: 350px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        min-height: auto;
        padding: 40px 20px;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-stats {
        flex-wrap: wrap;
        gap: 16px;
        justify-content: center;
    }
    
    .stat-divider:last-of-type {
        display: none;
    }
    
    .hero-image-wrapper {
        height: 350px;
    }
    
    .hero-visual {
        max-width: 300px;
        height: 300px;
    }
    
    .floating-badge {
        padding: 10px 16px;
        font-size: 0.8rem;
    }
    
    .floating-badge svg {
        width: 18px;
        height: 18px;
    }
    
    .scroll-indicator {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-stats {
        padding: 16px;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    .stat-divider {
        height: 30px;
    }
    
    .hero-image-wrapper {
        height: 280px;
    }
    
    .hero-visual {
        max-width: 250px;
        height: 250px;
    }
    
    .badge-2 {
        display: none; /* Hide middle badge on very small screens */
    }
}

/* ============================================
   COMPONENT 3: ABOUT US SECTION
   ============================================ */

.about-section {
    padding: var(--section-padding);
    background: var(--white);
    position: relative;
    overflow: hidden;
}

/* ----- Section Header (Reusable) ----- */
.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    animation: fadeInUp 0.8s ease-out;
}

.section-label {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--primary-red);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
    position: relative;
    padding: 0 20px;
}

.section-label::before,
.section-label::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40px;
    height: 2px;
    background: var(--primary-red);
}

.section-label::before {
    left: -50px;
}

.section-label::after {
    right: -50px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 4 rem;
    font-weight: 800;
    color: var(--dark-gray);
    margin-bottom: 16px;
    line-height: 1.3;
}

.text-highlight {
    color: var(--primary-red);
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-dark);
    line-height: 1.7;
}

/* ----- About Content Layout ----- */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* ----- About Text Side ----- */
.about-text {
    display: flex;
    flex-direction: column;
    gap: 32px;
    animation: fadeInLeft 0.8s ease-out;
}

/* Story section */
.about-story {
    display: flex;
    gap: 20px;
    padding: 24px;
    background: var(--light-gray);
    border-radius: 12px;
    border-left: 4px solid var(--primary-red);
}

.story-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: var(--primary-red);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.story-icon svg {
    width: 28px;
    height: 28px;
    fill: var(--white);
}

.story-content {
    flex: 1;
}

.story-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 12px;
}

.story-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-dark);
    justify-content: space-evenly
}

.story-text strong {
    color: var(--primary-red);
    font-weight: 700;
}

/* About description */
.about-description p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 20px;
}

/* About list */
.about-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 16px;
}

.about-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: 600;
}

.about-list li svg {
    width: 24px;
    height: 24px;
    fill: var(--primary-red);
    flex-shrink: 0;
}

/* ----- Mission Box ----- */
.mission-box {
    display: flex;
    gap: 20px;
    padding: 28px;
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    border-radius: 16px;
    color: var(--white);
    box-shadow: 0 8px 30px rgba(227, 30, 36, 0.3);
}

.mission-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mission-icon svg {
    width: 32px;
    height: 32px;
    fill: var(--white);
}

.mission-content {
    flex: 1;
}

.mission-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--white);
}

.mission-text {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    font-style: italic;
    margin-bottom: 12px;
    color: var(--gold);
}

.mission-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
}

/* ----- About Features ----- */
.about-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: var(--light-gray);
    border-radius: 12px;
    transition: var(--transition-smooth);
}

.feature-item:hover {
    background: var(--white);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transform: translateY(-3px);
}

.feature-icon {
    width: 44px;
    height: 44px;
    background: var(--primary-red);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--white);
}

.feature-text h5 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 2px;
}

.feature-text p {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* ----- About Image Side ----- */
.about-image {
    position: relative;
    animation: fadeInRight 0.8s ease-out;
}

.image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.main-image {
    width: 100%;
    height: 500px;
    background: var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
}
.about-image-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;   /* fills container nicely */
    display: block;
}

.about-illustration {
    width: 100%;
    height: 100%;
}

/* Image badge */
.image-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    animation: slideInLeft 0.8s ease-out 0.5s backwards;
}

.image-badge svg {
    width: 40px;
    height: 40px;
    fill: var(--gold);
}

.badge-content {
    display: flex;
    flex-direction: column;
}

.badge-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-red);
    line-height: 1;
}

.badge-text {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-top: 4px;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ----- Owner Card ----- */
.owner-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: var(--white);
    border-radius: 16px;
    margin-top: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-left: 4px solid var(--primary-red);
    animation: fadeInUp 0.8s ease-out 0.7s backwards;
}

.owner-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.owner-icon svg {
    width: 32px;
    height: 32px;
    fill: var(--white);
}

.owner-info {
    flex: 1;
}

.owner-name {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 4px;
}

.owner-title {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* ============================================
   RESPONSIVE DESIGN - ABOUT SECTION
   ============================================ */

@media (max-width: 992px) {
    .about-content {
        gap: 50px;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .about-features {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: var(--section-padding-mobile);
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .section-label::before,
    .section-label::after {
        display: none;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-story {
        flex-direction: column;
        text-align: center;
    }
    
    .story-icon {
        margin: 0 auto;
    }
    
    .about-list {
        grid-template-columns: 1fr;
    }
    
    .mission-box {
        flex-direction: column;
        text-align: center;
    }
    
    .mission-icon {
        margin: 0 auto;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .main-image {
        height: 400px;
    }
    
    .image-badge {
        bottom: 20px;
        left: 20px;
        padding: 16px 20px;
    }
    
    .badge-number {
        font-size: 1.5rem;
    }
    
    .owner-card {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.75rem;
    }
    
    .about-story,
    .mission-box,
    .owner-card {
        padding: 20px;
    }
    
    .story-title,
    .mission-title {
        font-size: 1.1rem;
    }
    
    .main-image {
        height: 350px;
    }
    
    .image-badge {
        left: 15px;
        bottom: 15px;
        padding: 12px 16px;
    }
    
    .image-badge svg {
        width: 32px;
        height: 32px;
    }
    
    .badge-number {
        font-size: 1.3rem;
    }
}

/* ============================================
   COMPONENT 4: SERVICES OVERVIEW SECTION
   ============================================ */

.services-section {
    padding: var(--section-padding);
    background: var(--light-gray);
    position: relative;
}

/* Background decoration */
.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 300px;
    background: linear-gradient(180deg, var(--white) 0%, var(--light-gray) 100%);
    pointer-events: none;
}

/* ----- Services Grid ----- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

/* ----- Service Card ----- */
.service-card {
    background: var(--white);
    border-radius: 20px;
    padding: 36px 28px;
    transition: var(--transition-smooth);
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-red), var(--gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-smooth);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(227, 30, 36, 0.15);
    border-color: var(--primary-red);
}

.service-card:hover::before {
    transform: scaleX(1);
}

/* Service icon */
.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: var(--transition-smooth);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-icon svg {
    width: 36px;
    height: 36px;
    fill: var(--white);
}

/* Service title */
.service-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 12px;
    line-height: 1.3;
}

/* Service description */
.service-description {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 20px;
    flex-grow: 1;
}

/* Service features list */
.service-features {
    list-style: none;
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.service-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--text-dark);
    line-height: 1.5;
}

.service-features li svg {
    width: 20px;
    height: 20px;
    fill: var(--primary-red);
    flex-shrink: 0;
    margin-top: 2px;
}

/* Service link */
.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    color: var(--primary-red);
    text-decoration: none;
    transition: var(--transition-smooth);
    margin-top: auto;
}

.service-link svg {
    width: 20px;
    height: 20px;
    fill: var(--primary-red);
    transition: var(--transition-smooth);
}

.service-link:hover {
    gap: 12px;
    color: var(--dark-red);
}

.service-link:hover svg {
    fill: var(--dark-red);
    transform: translateX(4px);
}

/* ----- Services CTA Box ----- */
.services-cta {
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    border-radius: 24px;
    padding: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    box-shadow: 0 10px 40px rgba(227, 30, 36, 0.3);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease-out;
}

.services-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.cta-content {
    flex: 1;
}

.cta-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 12px;
    line-height: 1.3;
}

.cta-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.services-cta .btn {
    background: var(--white);
    color: var(--primary-red);
    border: 2px solid var(--white);
}

.services-cta .btn svg {
    fill: var(--primary-red);
}

.services-cta .btn-primary:hover {
    background: var(--gold);
    color: var(--dark-gray);
    border-color: var(--gold);
}

.services-cta .btn-primary:hover svg {
    fill: var(--dark-gray);
}

.services-cta .btn-secondary {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.services-cta .btn-secondary svg {
    fill: var(--white);
}

.services-cta .btn-secondary:hover {
    background: var(--white);
    color: var(--primary-red);
}

.services-cta .btn-secondary:hover svg {
    fill: var(--primary-red);
}

/* ----- Animation for cards on scroll ----- */
.service-card {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease-out forwards;
}

.service-card:nth-child(1) {
    animation-delay: 0.1s;
}

.service-card:nth-child(2) {
    animation-delay: 0.2s;
}

.service-card:nth-child(3) {
    animation-delay: 0.3s;
}

.service-card:nth-child(4) {
    animation-delay: 0.4s;
}

/* ============================================
   RESPONSIVE DESIGN - SERVICES SECTION
   ============================================ */

@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .services-cta {
        padding: 40px;
        gap: 32px;
    }
    
    .cta-title {
        font-size: 1.75rem;
    }
}

@media (max-width: 768px) {
    .services-section {
        padding: var(--section-padding-mobile);
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 40px;
    }
    
    .service-card {
        padding: 28px 24px;
    }
    
    .service-title {
        font-size: 1.25rem;
    }
    
    .services-cta {
        flex-direction: column;
        padding: 32px 24px;
        gap: 24px;
        text-align: center;
    }
    
    .cta-title {
        font-size: 1.5rem;
    }
    
    .cta-text {
        font-size: 1rem;
    }
    
    .cta-buttons {
        width: 100%;
        flex-direction: column;
    }
    
    .services-cta .btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .service-card {
        padding: 24px 20px;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
    }
    
    .service-icon svg {
        width: 32px;
        height: 32px;
    }
    
    .service-title {
        font-size: 1.15rem;
    }
    
    .service-description {
        font-size: 0.95rem;
    }
    
    .service-features li {
        font-size: 0.9rem;
    }
    
    .services-cta {
        padding: 28px 20px;
    }
    
    .cta-title {
        font-size: 1.3rem;
    }
}

/* ============================================
   COMPONENT 5: PRODUCTS SHOWCASE SECTION
   ============================================ */

.products-section {
    padding: var(--section-padding);
    background: var(--white);
    position: relative;
}

/* ----- Product Tabs ----- */
.product-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.tab-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--light-gray);
    border: 2px solid transparent;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-dark);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.tab-button svg {
    width: 20px;
    height: 20px;
    fill: var(--text-dark);
    transition: var(--transition-smooth);
}

.tab-button:hover {
    background: var(--white);
    border-color: var(--primary-red);
    color: var(--primary-red);
    transform: translateY(-2px);
}

.tab-button:hover svg {
    fill: var(--primary-red);
}

.tab-button.active {
    background: var(--primary-red);
    color: var(--white);
    border-color: var(--primary-red);
}

.tab-button.active svg {
    fill: var(--white);
}

/* ----- Products Grid ----- */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

/* ----- Product Card ----- */
.product-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid var(--light-gray);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    border-color: var(--primary-red);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(227, 30, 36, 0.15);
}

/* Product image */
.product-image {
    position: relative;
    height: 250px;
    background: var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-photo {
    width: 100%;
    height: 100%;
    object-fit: contain;   /* keeps full product visible */
    transition: var(--transition-smooth);
    display: block;
}

.product-card:hover .product-photo {
    transform: scale(1.05);
}


/* Product badge */
.product-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--primary-red);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Product info */
.product-info {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-name {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 10px;
    line-height: 1.3;
}

.product-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 16px;
    flex-grow: 1;
}

/* Product specs */
.product-specs {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.product-specs li {
    font-size: 0.9rem;
    color: var(--text-dark);
    padding-left: 20px;
    position: relative;
}

.product-specs li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-red);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Product button */
.product-btn {
    display: block;
    width: calc(100% - 48px);
    margin: 0 24px 24px;
    padding: 12px 24px;
    background: var(--light-gray);
    color: var(--primary-red);
    text-align: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: 8px;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.product-btn:hover {
    background: var(--primary-red);
    color: var(--white);
    transform: translateY(-2px);
}

/* ----- Products Info Box ----- */
.products-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    padding: 40px;
    background: var(--light-gray);
    border-radius: 20px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.info-item svg {
    width: 40px;
    height: 40px;
    fill: var(--primary-red);
    flex-shrink: 0;
}

.info-content h5 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 4px;
}

.info-content p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.5;
}

/* ----- Filter Animation ----- */
.product-card.hidden {
    display: none;
}

.product-card.show {
    animation: fadeInScale 0.5s ease-out;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ============================================
   RESPONSIVE DESIGN - PRODUCTS SECTION
   ============================================ */

@media (max-width: 992px) {
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
        gap: 24px;
    }
    
    .products-info {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 32px;
    }
}

@media (max-width: 768px) {
    .products-section {
        padding: var(--section-padding-mobile);
    }
    
    .product-tabs {
        gap: 8px;
    }
    
    .tab-button {
        padding: 10px 18px;
        font-size: 0.875rem;
    }
    
    .tab-button svg {
        width: 18px;
        height: 18px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 40px;
    }
    
    .product-image {
        height: 220px;
    }
    
    .product-info {
        padding: 20px;
    }
    
    .product-name {
        font-size: 1.1rem;
    }
    
    .products-info {
        padding: 24px;
    }
}

@media (max-width: 480px) {
    .product-tabs {
        flex-direction: column;
    }
    
    .tab-button {
        width: 100%;
        justify-content: center;
    }
    
    .product-image {
        height: 200px;
    }
    
    .product-badge {
        top: 12px;
        right: 12px;
        padding: 5px 12px;
        font-size: 0.7rem;
    }
    
    .info-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

/* ============================================
   COMPONENT 6: INDUSTRIES WE SERVE SECTION
   ============================================ */

.industries-section {
    padding: var(--section-padding);
    background: var(--light-gray);
    position: relative;
}

/* ----- Industries Grid ----- */
.industries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

/* ----- Industry Card ----- */
.industry-card {
    background: var(--white);
    padding: 32px 24px;
    border-radius: 16px;
    text-align: center;
    transition: var(--transition-smooth);
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.industry-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-red);
    box-shadow: 0 12px 40px rgba(227, 30, 36, 0.15);
}

/* Industry icon */
.industry-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: var(--transition-smooth);
    position: relative;
}

.industry-icon::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: inherit;
    border-radius: 50%;
    opacity: 0.3;
    transform: scale(1);
    transition: var(--transition-smooth);
}

.industry-card:hover .industry-icon {
    transform: scale(1.1) rotate(5deg);
}

.industry-card:hover .industry-icon::before {
    transform: scale(1.3);
    opacity: 0;
}

.industry-icon svg {
    width: 40px;
    height: 40px;
    fill: var(--white);
    position: relative;
    z-index: 1;
}

/* Industry name */
.industry-name {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 12px;
    line-height: 1.4;
}

/* Industry description */
.industry-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-light);
}

/* ----- Industries Stats ----- */
.industries-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 48px;
}

.stat-card {
    background: var(--white);
    padding: 32px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: var(--transition-smooth);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(227, 30, 36, 0.15);
}

.stat-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(227, 30, 36, 0.1), rgba(196, 30, 58, 0.1));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-icon svg {
    width: 36px;
    height: 36px;
    fill: var(--primary-red);
}

.stat-content {
    flex: 1;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-red);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: 600;
}

/* ----- Industries CTA ----- */
.industries-cta {
    background: linear-gradient(135deg, var(--dark-gray), #1A1A1A);
    padding: 48px;
    border-radius: 20px;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.industries-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(227, 30, 36, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.industries-cta h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.industries-cta p {
    font-size: 1.1rem;
    margin-bottom: 28px;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.industries-cta .btn {
    background: var(--primary-red);
    color: var(--white);
    position: relative;
    z-index: 1;
}

.industries-cta .btn svg {
    fill: var(--white);
}

.industries-cta .btn:hover {
    background: var(--white);
    color: var(--primary-red);
}

.industries-cta .btn:hover svg {
    fill: var(--primary-red);
}

/* ----- Animation on scroll ----- */
.industry-card {
    opacity: 0;
    transform: translateY(30px);
}

.industry-card.animated {
    animation: fadeInUp 0.6s ease-out forwards;
}

.industry-card:nth-child(1).animated { animation-delay: 0.1s; }
.industry-card:nth-child(2).animated { animation-delay: 0.15s; }
.industry-card:nth-child(3).animated { animation-delay: 0.2s; }
.industry-card:nth-child(4).animated { animation-delay: 0.25s; }
.industry-card:nth-child(5).animated { animation-delay: 0.3s; }
.industry-card:nth-child(6).animated { animation-delay: 0.35s; }
.industry-card:nth-child(7).animated { animation-delay: 0.4s; }
.industry-card:nth-child(8).animated { animation-delay: 0.45s; }

/* ============================================
   RESPONSIVE DESIGN - INDUSTRIES SECTION
   ============================================ */

@media (max-width: 1200px) {
    .industries-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .industries-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .industries-section {
        padding: var(--section-padding-mobile);
    }
    
    .industries-grid {
        grid-template-columns: 1fr;
        margin-bottom: 40px;
    }
    
    .industry-card {
        padding: 28px 20px;
    }
    
    .industry-icon {
        width: 70px;
        height: 70px;
    }
    
    .industry-icon svg {
        width: 36px;
        height: 36px;
    }
    
    .industry-name {
        font-size: 1.05rem;
    }
    
    .stat-card {
        padding: 24px;
        flex-direction: column;
        text-align: center;
    }
    
    .stat-icon {
        width: 60px;
        height: 60px;
    }
    
    .stat-icon svg {
        width: 32px;
        height: 32px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .industries-cta {
        padding: 36px 24px;
    }
    
    .industries-cta h3 {
        font-size: 1.5rem;
    }
    
    .industries-cta p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .industry-card {
        padding: 24px 16px;
    }
    
    .industry-icon {
        width: 64px;
        height: 64px;
    }
    
    .industry-icon svg {
        width: 32px;
        height: 32px;
    }
    
    .stat-card {
        padding: 20px;
    }
    
    .stat-number {
        font-size: 1.75rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
    
    .industries-cta h3 {
        font-size: 1.3rem;
    }
}

/* ============================================
   COMPONENT 7: ESTEEMED CLIENTS SECTION
   ============================================ */

.clients-section {
    padding: var(--section-padding);
    background: var(--white);
    position: relative;
}

/* ----- Trust Statement ----- */
.trust-statement {
    max-width: 900px;
    margin: 0 auto 60px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 28px 32px;
    background: var(--light-gray);
    border-radius: 16px;
    border-left: 4px solid var(--primary-red);
}

.trust-statement svg {
    width: 40px;
    height: 40px;
    fill: var(--primary-red);
    flex-shrink: 0;
}

.trust-statement p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-dark);
    font-style: italic;
}

/* ----- Clients Logo Grid ----- */
/* ----- Logo Carousel Wrapper ----- */
.logo-carousel-wrapper {
    margin: 60px 0;
    overflow: hidden;
}

.carousel-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-gray);
    text-align: center;
    margin-bottom: 40px;
}

/* ----- Logo Carousel Container ----- */
.logo-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: linear-gradient(90deg, 
        var(--white) 0%, 
        transparent 10%, 
        transparent 90%, 
        var(--white) 100%
    );
    padding: 20px 0;
    margin-bottom: 30px;
}

/* Fade edges for seamless effect */
.logo-carousel::before,
.logo-carousel::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.logo-carousel::before {
    left: 0;
    background: linear-gradient(to right, var(--white), transparent);
}

.logo-carousel::after {
    right: 0;
    background: linear-gradient(to left, var(--white), transparent);
}

/* ----- Logo Track (Scrolling Container) ----- */
.logo-track {
    display: flex;
    width: fit-content;
    animation: scroll 40s linear infinite;
}

/* Pause animation on hover */
.logo-carousel:hover .logo-track {
    animation-play-state: paused;
}

/* ----- Reverse Direction for Second Row ----- */
.logo-carousel-reverse .logo-track {
    animation: scroll-reverse 40s linear infinite;
}

/* ----- Individual Logo Item ----- */
.logo-item {
    flex-shrink: 0;
    width: 200px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    margin: 0 15px;
    background: var(--white);
    border-radius: 12px;
    border: 2px solid var(--light-gray);
    transition: var(--transition-smooth);
}

.logo-item:hover {
    border-color: var(--primary-red);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(227, 30, 36, 0.15);
    z-index: 10;
}

.logo-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: var(--transition-smooth);
}

.logo-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

/* ----- Scroll Animations ----- */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes scroll-reverse {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0);
    }
}

/* ----- Responsive Adjustments ----- */
@media (max-width: 768px) {
    .logo-item {
        width: 150px;
        height: 100px;
        padding: 15px;
        margin: 0 10px;
    }
    
    .logo-track {
        animation-duration: 30s;
    }
    
    .carousel-title {
        font-size: 1.3rem;
        margin-bottom: 30px;
    }
}

@media (max-width: 480px) {
    .logo-item {
        width: 120px;
        height: 80px;
        padding: 12px;
        margin: 0 8px;
    }
    
    .logo-track {
        animation-duration: 25s;
    }
    
    .carousel-title {
        font-size: 1.2rem;
    }
}
/* ----- Clients More Section ----- */
.clients-more {
    text-align: center;
    padding: 48px 32px;
    background: linear-gradient(135deg, var(--light-gray), var(--white));
    border-radius: 20px;
    margin-bottom: 60px;
}

.more-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    animation: pulse 2s infinite;
}

.more-icon svg {
    width: 36px;
    height: 36px;
    fill: var(--white);
}

.clients-more h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark-gray);
    margin-bottom: 12px;
}

.clients-more p {
    font-size: 1.1rem;
    color: var(--text-light);
}

/* ----- Testimonials Section ----- */
.testimonials {
    margin-top: 60px;
}

.testimonials-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark-gray);
    text-align: center;
    margin-bottom: 40px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* ----- Testimonial Card ----- */
.testimonial-card {
    background: var(--light-gray);
    padding: 32px;
    border-radius: 16px;
    position: relative;
    transition: var(--transition-smooth);
    border: 2px solid transparent;
}

.testimonial-card:hover {
    background: var(--white);
    border-color: var(--primary-red);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(227, 30, 36, 0.1);
}

/* Quote icon */
.testimonial-quote {
    width: 50px;
    height: 50px;
    background: var(--primary-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.testimonial-quote svg {
    width: 28px;
    height: 28px;
    fill: var(--white);
}

/* Testimonial text */
.testimonial-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 24px;
    font-style: italic;
}

/* Testimonial author */
.testimonial-author h5 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 4px;
}

.testimonial-author p {
    font-size: 0.875rem;
    color: var(--text-light);
}

/* ----- Animation on scroll ----- */
.client-card {
    opacity: 0;
    transform: translateY(30px);
}

.client-card.animated {
    animation: fadeInUp 0.6s ease-out forwards;
}

.client-card:nth-child(1).animated { animation-delay: 0.1s; }
.client-card:nth-child(2).animated { animation-delay: 0.2s; }
.client-card:nth-child(3).animated { animation-delay: 0.3s; }
.client-card:nth-child(4).animated { animation-delay: 0.4s; }
.client-card:nth-child(5).animated { animation-delay: 0.5s; }
.client-card:nth-child(6).animated { animation-delay: 0.6s; }

.testimonial-card {
    opacity: 0;
    transform: translateY(30px);
}

.testimonial-card.animated {
    animation: fadeInUp 0.6s ease-out forwards;
}

.testimonial-card:nth-child(1).animated { animation-delay: 0.1s; }
.testimonial-card:nth-child(2).animated { animation-delay: 0.25s; }
.testimonial-card:nth-child(3).animated { animation-delay: 0.4s; }

/* ============================================
   RESPONSIVE DESIGN - CLIENTS SECTION
   ============================================ */

@media (max-width: 992px) {
    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .clients-section {
        padding: var(--section-padding-mobile);
    }
    
    .trust-statement {
        flex-direction: column;
        text-align: center;
        padding: 24px;
        margin-bottom: 40px;
    }
    
    .trust-statement svg {
        margin: 0 auto;
    }
    
    .trust-statement p {
        font-size: 1rem;
    }
    
    .clients-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 40px;
    }
    
    .client-logo {
        height: 120px;
    }
    
    .clients-more {
        padding: 36px 24px;
        margin-bottom: 40px;
    }
    
    .clients-more h3 {
        font-size: 1.5rem;
    }
    
    .clients-more p {
        font-size: 1rem;
    }
    
    .testimonials-title {
        font-size: 1.75rem;
    }
    
    .testimonial-card {
        padding: 24px;
    }
}

@media (max-width: 480px) {
    .trust-statement {
        padding: 20px;
    }
    
    .client-logo {
        height: 100px;
    }
    
    .client-info {
        padding: 16px;
    }
    
    .client-name {
        font-size: 1rem;
    }
    
    .more-icon {
        width: 60px;
        height: 60px;
    }
    
    .more-icon svg {
        width: 30px;
        height: 30px;
    }
    
    .clients-more h3 {
        font-size: 1.3rem;
    }
    
    .testimonials-title {
        font-size: 1.5rem;
    }
    
    .testimonial-card {
        padding: 20px;
    }
    
    .testimonial-quote {
        width: 45px;
        height: 45px;
    }
    
    .testimonial-quote svg {
        width: 24px;
        height: 24px;
    }
    
    .testimonial-text {
        font-size: 0.95rem;
    }
}

/* ============================================
   COMPONENT 8: WHY CHOOSE US SECTION
   ============================================ */

.why-section {
    padding: var(--section-padding);
    background: linear-gradient(180deg, var(--light-gray) 0%, var(--white) 100%);
    position: relative;
}

/* ----- Why Features Grid ----- */
.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-bottom: 60px;
}

/* ----- Why Card ----- */
.why-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    border: 2px solid transparent;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(135deg, rgba(227, 30, 36, 0.05), rgba(196, 30, 58, 0.05));
    transition: var(--transition-smooth);
    z-index: 0;
}

.why-card:hover {
    border-color: var(--primary-red);
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(227, 30, 36, 0.15);
}

.why-card:hover::before {
    width: 100%;
}

/* Why icon */
.why-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: var(--transition-smooth);
    position: relative;
    z-index: 1;
}

.why-card:hover .why-icon {
    transform: scale(1.1) rotate(-5deg);
}

.why-icon svg {
    width: 40px;
    height: 40px;
    fill: var(--white);
}

/* Why title */
.why-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

/* Why description */
.why-description {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

/* Why features list */
.why-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
    z-index: 1;
}

.why-features li {
    font-size: 0.95rem;
    color: var(--text-dark);
    padding-left: 28px;
    position: relative;
    font-weight: 600;
}

.why-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-red);
    font-weight: bold;
    font-size: 1.2rem;
}

/* ----- Value Propositions ----- */
.value-props {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

/* Value card */
.value-card {
    background: var(--white);
    padding: 28px 24px;
    border-radius: 16px;
    border-left: 4px solid var(--primary-red);
    transition: var(--transition-smooth);
    position: relative;
}

.value-card:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Value number */
.value-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-red);
    opacity: 0.2;
    line-height: 1;
    margin-bottom: 12px;
}

.value-card h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 8px;
}

.value-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-light);
}

/* ----- Why CTA ----- */
.why-cta {
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    padding: 60px 48px;
    border-radius: 24px;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.why-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

.why-cta h3 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.why-cta p {
    font-size: 1.2rem;
    margin-bottom: 32px;
    opacity: 0.95;
    position: relative;
    z-index: 1;
}

.why-cta .cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.why-cta .btn {
    background: var(--white);
    color: var(--primary-red);
    border: 2px solid var(--white);
}

.why-cta .btn svg {
    fill: var(--primary-red);
}

.why-cta .btn-primary:hover {
    background: var(--gold);
    color: var(--dark-gray);
    border-color: var(--gold);
}

.why-cta .btn-primary:hover svg {
    fill: var(--dark-gray);
}

.why-cta .btn-secondary {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.why-cta .btn-secondary svg {
    fill: var(--white);
}

.why-cta .btn-secondary:hover {
    background: var(--white);
    color: var(--primary-red);
}

.why-cta .btn-secondary:hover svg {
    fill: var(--primary-red);
}

/* ----- Animation on scroll ----- */
.why-card {
    opacity: 0;
    transform: translateY(30px);
}

.why-card.animated {
    animation: fadeInUp 0.6s ease-out forwards;
}

.why-card:nth-child(1).animated { animation-delay: 0.1s; }
.why-card:nth-child(2).animated { animation-delay: 0.2s; }
.why-card:nth-child(3).animated { animation-delay: 0.3s; }
.why-card:nth-child(4).animated { animation-delay: 0.4s; }

.value-card {
    opacity: 0;
    transform: translateX(-20px);
}

.value-card.animated {
    animation: slideInRight 0.6s ease-out forwards;
}

.value-card:nth-child(1).animated { animation-delay: 0.1s; }
.value-card:nth-child(2).animated { animation-delay: 0.2s; }
.value-card:nth-child(3).animated { animation-delay: 0.3s; }
.value-card:nth-child(4).animated { animation-delay: 0.4s; }
.value-card:nth-child(5).animated { animation-delay: 0.5s; }
.value-card:nth-child(6).animated { animation-delay: 0.6s; }

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ============================================
   RESPONSIVE DESIGN - WHY SECTION
   ============================================ */

@media (max-width: 992px) {
    .why-grid {
        gap: 24px;
    }
    
    .value-props {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .why-section {
        padding: var(--section-padding-mobile);
    }
    
    .why-grid {
        grid-template-columns: 1fr;
        margin-bottom: 40px;
    }
    
    .why-card {
        padding: 32px 24px;
    }
    
    .why-icon {
        width: 70px;
        height: 70px;
    }
    
    .why-icon svg {
        width: 36px;
        height: 36px;
    }
    
    .why-title {
        font-size: 1.3rem;
    }
    
    .value-props {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 40px;
    }
    
    .value-card {
        padding: 24px 20px;
    }
    
    .why-cta {
        padding: 48px 32px;
    }
    
    .why-cta h3 {
        font-size: 2rem;
    }
    
    .why-cta p {
        font-size: 1.1rem;
    }
    
    .why-cta .cta-buttons {
        flex-direction: column;
    }
    
    .why-cta .btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .why-card {
        padding: 28px 20px;
    }
    
    .why-icon {
        width: 64px;
        height: 64px;
    }
    
    .why-icon svg {
        width: 32px;
        height: 32px;
    }
    
    .why-title {
        font-size: 1.2rem;
    }
    
    .why-description {
        font-size: 0.95rem;
    }
    
    .value-number {
        font-size: 2rem;
    }
    
    .value-card h4 {
        font-size: 1rem;
    }
    
    .why-cta {
        padding: 36px 24px;
    }
    
    .why-cta h3 {
        font-size: 1.6rem;
    }
    
    .why-cta p {
        font-size: 1rem;
    }
}

/* ============================================
   COMPONENT 9: CONTACT SECTION
   ============================================ */

.contact-section {
    padding: var(--section-padding);
    background: var(--white);
    position: relative;
}

/* ----- Contact Content Layout ----- */
.contact-content {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

/* ----- Contact Information ----- */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Info card */
.info-card {
    display: flex;
    gap: 20px;
    padding: 24px;
    background: var(--light-gray);
    border-radius: 16px;
    transition: var(--transition-smooth);
}

.info-card:hover {
    background: var(--white);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transform: translateX(5px);
}

.info-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon svg {
    width: 28px;
    height: 28px;
    fill: var(--white);
}

.info-content h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 8px;
}

.info-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-dark);
}

.info-content a {
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.info-content a:hover {
    color: var(--dark-red);
}

.info-label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 6px;
}

/* Quick contact buttons */
.quick-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 8px;
}

.quick-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 24px;
    border-radius: 12px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.quick-btn svg {
    width: 22px;
    height: 22px;
    transition: var(--transition-smooth);
}

.quick-btn.whatsapp {
    background: #25D366;
    color: var(--white);
}

.quick-btn.whatsapp svg {
    fill: var(--white);
}

.quick-btn.whatsapp:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

.quick-btn.phone {
    background: var(--primary-red);
    color: var(--white);
}

.quick-btn.phone svg {
    fill: var(--white);
}

.quick-btn.phone:hover {
    background: var(--dark-red);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(227, 30, 36, 0.3);
}

/* GST info */
.gst-info {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: var(--white);
    border: 2px solid var(--light-gray);
    border-radius: 12px;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.gst-info svg {
    width: 24px;
    height: 24px;
    fill: var(--primary-red);
    flex-shrink: 0;
}

/* ----- Contact Form ----- */
.contact-form-wrapper {
    background: var(--light-gray);
    padding: 40px;
    border-radius: 20px;
}

.form-header {
    margin-bottom: 32px;
}

.form-header h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--dark-gray);
    margin-bottom: 8px;
}

.form-header p {
    font-size: 1rem;
    color: var(--text-light);
}

/* Form row */
.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

/* Form group */
.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--dark-gray);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid transparent;
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-dark);
    background: var(--white);
    transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-red);
    box-shadow: 0 0 0 3px rgba(227, 30, 36, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Submit button */
.submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: var(--primary-red);
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(227, 30, 36, 0.3);
}

.submit-btn svg {
    width: 22px;
    height: 22px;
    fill: var(--white);
    transition: var(--transition-smooth);
}

.submit-btn:hover {
    background: var(--dark-red);
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(227, 30, 36, 0.4);
}

.submit-btn:hover svg {
    transform: translateX(4px);
}

/* Form note */
.form-note {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-top: 24px;
    padding: 16px;
    background: rgba(227, 30, 36, 0.05);
    border-radius: 10px;
}

.form-note svg {
    width: 20px;
    height: 20px;
    fill: var(--primary-red);
    flex-shrink: 0;
    margin-top: 2px;
}

.form-note p {
    font-size: 0.875rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* ----- Map Section ----- */
.map-section {
    margin-top: 60px;
}

.map-section h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark-gray);
    text-align: center;
    margin-bottom: 32px;
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    display: block;
    width: 100%;
}

/* ============================================
   RESPONSIVE DESIGN - CONTACT SECTION
   ============================================ */

@media (max-width: 992px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: var(--section-padding-mobile);
    }
    
    .contact-content {
        gap: 32px;
        margin-bottom: 40px;
    }
    
    .info-card {
        padding: 20px;
    }
    
    .info-icon {
        width: 50px;
        height: 50px;
    }
    
    .info-icon svg {
        width: 24px;
        height: 24px;
    }
    
    .contact-form-wrapper {
        padding: 32px 24px;
    }
    
    .form-header h3 {
        font-size: 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .map-section {
        margin-top: 40px;
    }
    
    .map-section h3 {
        font-size: 1.75rem;
    }
    
    .map-container iframe {
        height: 350px;
    }
}

@media (max-width: 480px) {
    .info-card {
        flex-direction: column;
        text-align: center;
    }
    
    .info-icon {
        margin: 0 auto;
    }
    
    .contact-form-wrapper {
        padding: 28px 20px;
    }
    
    .form-header h3 {
        font-size: 1.3rem;
    }
    
    .submit-btn {
        width: 100%;
        justify-content: center;
    }
    
    .map-container iframe {
        height: 300px;
    }
}

/* ============================================
   COMPONENT 10: FOOTER SECTION
   ============================================ */

.footer {
    background: var(--dark-gray);
    color: var(--white);
    padding: 60px 0 0;
}

/* ----- Footer Top ----- */
.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Footer column */
.footer-col {
    display: flex;
    flex-direction: column;
}

/* Footer About Column */
.footer-about .footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-about .logo-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    
}

.footer-about .logo-image img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.footer-about .logo-text {
    display: flex;
    flex-direction: column;
}

.footer-about .logo-name {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
}

.footer-about .logo-tagline {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
}

.footer-description {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}

.footer-mission {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: rgba(227, 30, 36, 0.1);
    border-left: 3px solid var(--primary-red);
    border-radius: 8px;
}

.footer-mission svg {
    width: 24px;
    height: 24px;
    fill: var(--primary-red);
    flex-shrink: 0;
}

.footer-mission span {
    font-size: 0.95rem;
    font-weight: 600;
    font-style: italic;
    color: var(--white);
}

/* Footer title */
.footer-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary-red);
}

/* Footer links */
.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links li a {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition-smooth);
    display: inline-block;
}

.footer-links li a:hover {
    color: var(--white);
    padding-left: 8px;
}

/* Footer contact */
.footer-contact {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact li svg {
    width: 20px;
    height: 20px;
    fill: var(--primary-red);
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-contact li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-contact li a:hover {
    color: var(--white);
}

/* Footer GST */
.footer-gst {
    margin-top: 16px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-gst strong {
    color: var(--white);
    margin-right: 8px;
}

/* ----- Footer Bottom ----- */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px 0;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom-left p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 4px;
}

.footer-credits {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

/* ============================================
   BACK TO TOP BUTTON
   ============================================ */

.back-to-top {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--primary-red);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    text-decoration: none;
}

.back-to-top svg {
    width: 20px;
    height: 20px;
    fill: var(--white);
    flex-shrink: 0;
    transition: var(--transition-smooth);
}

.back-to-top:hover {
    background: var(--dark-red);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(227, 30, 36, 0.4);
}

.back-to-top:hover svg {
    transform: translateY(-3px);
}

.back-to-top:active {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .back-to-top {
        width: 100%;
        justify-content: center;
    }
}
/* ============================================
   RESPONSIVE DESIGN - FOOTER SECTION
   ============================================ */

@media (max-width: 992px) {
    .footer-top {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .footer-about {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 48px 0 0;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 36px;
        padding-bottom: 36px;
    }
    
    .footer-about {
        grid-column: 1;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        padding: 24px 0;
    }
    
    .back-to-top {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-about .footer-logo {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-mission {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-contact li {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

/* ============================================
   FLOATING WHATSAPP BUTTON
   ============================================ */

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition-smooth);
    text-decoration: none;
    cursor: pointer;
    
    /* Entrance animation */
    animation: slideInUp 0.6s ease-out 1s backwards;
}

.whatsapp-float:hover {
    background: #128C7E;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-float:active {
    transform: translateY(-3px) scale(1.02);
}

/* WhatsApp icon */
.whatsapp-icon {
    width: 32px;
    height: 32px;
    fill: var(--white);
    
    /* Pulse animation */
    animation: pulse 2s infinite;
}

.whatsapp-float:hover .whatsapp-icon {
    animation: none;
}

/* Tooltip */
.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: var(--dark-gray);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: var(--transition-smooth);
    pointer-events: none;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    border: 8px solid transparent;
    border-left-color: var(--dark-gray);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* Animations */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(100px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Bounce effect on hover */
.whatsapp-float::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: #25D366;
    border-radius: 50%;
    z-index: -1;
    animation: ripple 2s infinite;
}

@keyframes ripple {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 56px;
        height: 56px;
    }
    
    .whatsapp-icon {
        width: 28px;
        height: 28px;
    }
    
    .whatsapp-tooltip {
        display: none; /* Hide tooltip on mobile */
    }
}

@media (max-width: 480px) {
    .whatsapp-float {
        bottom: 15px;
        right: 15px;
        width: 50px;
        height: 50px;
    }
    
    .whatsapp-icon {
        width: 26px;
        height: 26px;
    }
}

/* ============================================
   PORTFOLIO SLIDESHOW
   ============================================ */

.portfolio-section {
    margin: 60px 0;
    animation: fadeInUp 0.8s ease-out;
}

.portfolio-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark-gray);
    text-align: center;
    margin-bottom: 12px;
}

.portfolio-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 40px;
}

/* Slideshow Container */
.slideshow-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

/* Slides */
.portfolio-slide {
    display: none;
    position: relative;
}

.portfolio-slide.active {
    display: block;
}

.portfolio-slide img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
}

/* Slide Number */
.slide-number {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.7);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Caption */
.slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    color: var(--white);
    padding: 60px 40px 30px;
}

.slide-caption h4 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.slide-caption p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
}

/* Navigation Arrows */
.slide-prev,
.slide-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(227, 30, 36, 0.9);
    color: var(--white);
    padding: 16px 20px;
    font-size: 1.5rem;
    font-weight: bold;
    cursor: pointer;
    border-radius: 50%;
    transition: var(--transition-smooth);
    user-select: none;
    z-index: 10;
}

.slide-prev {
    left: 20px;
}

.slide-next {
    right: 20px;
}

.slide-prev:hover,
.slide-next:hover {
    background: var(--dark-red);
    transform: translateY(-50%) scale(1.1);
}

/* Dots */
.slide-dots {
    text-align: center;
    padding: 30px 0;
}

.dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    margin: 0 6px;
    background: var(--light-gray);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.dot.active {
    background: var(--primary-red);
    transform: scale(1.3);
}

.dot:hover {
    background: var(--primary-red);
    transform: scale(1.2);
}

/* Fade Animation */
.fade {
    animation: fadeIn 0.8s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Portfolio CTA */
.portfolio-cta {
    text-align: center;
    margin-top: 40px;
}

/* Responsive */
@media (max-width: 768px) {
    .portfolio-slide img {
        height: 400px;
    }
    
    .slide-caption {
        padding: 40px 20px 20px;
    }
    
    .slide-caption h4 {
        font-size: 1.2rem;
    }
    
    .slide-caption p {
        font-size: 0.9rem;
    }
    
    .slide-prev,
    .slide-next {
        padding: 12px 16px;
        font-size: 1.2rem;
    }
    
    .slide-prev {
        left: 10px;
    }
    
    .slide-next {
        right: 10px;
    }
}

@media (max-width: 480px) {
    .portfolio-slide img {
        height: 300px;
    }
    
    .slide-number {
        top: 10px;
        right: 10px;
        padding: 6px 12px;
        font-size: 0.8rem;
    }
    
    .slide-caption h4 {
        font-size: 1.1rem;
    }
    
    .dot {
        width: 10px;
        height: 10px;
        margin: 0 4px;
    }
}
/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    padding: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.95);
}

.lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.lightbox-content {
    max-width: 90%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 50px;
    color: var(--white);
    font-size: 50px;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.lightbox-close:hover {
    color: var(--primary-red);
    transform: scale(1.2);
}

.lightbox-caption {
    margin-top: 20px;
    text-align: center;
    color: var(--white);
    font-size: 1.2rem;
}

/* ============================================
   END OF COMPONENT 1 STYLES

   ============================================ */

