/* ============================================
   SIRATIM - COMPONENT STYLES
   ============================================ */

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100%;
    background: var(--bg-white);
    z-index: 1000;
    transition: var(--transition-base);
    border-bottom: 1px solid transparent;
    overflow-x: hidden;
}

.header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--brand-red) 20%, var(--brand-red) 80%, transparent);
    opacity: 0.4;
}

.header.scrolled {
    box-shadow: 0 2px 8px var(--shadow);
    border-bottom-color: var(--divider);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
    transition: var(--transition-base);
}

.header.scrolled .header-content {
    height: var(--header-height-scrolled);
}

.logo a {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #1a1a1a 0%, var(--brand-red) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Navigation */
.nav {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.nav-link {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--secondary-text);
    padding: 0.5rem 0;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--brand-red);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--brand-red);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--primary-text);
    transition: var(--transition-base);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 90vh;
    padding-top: calc(var(--header-height) + 3rem);
    padding-bottom: var(--spacing-md);
    padding-left: 0;
    padding-right: 0;
    margin-top: 0;
    display: flex;
    align-items: center;
    overflow: hidden;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    background: linear-gradient(135deg, #FAFAFA 0%, #FFFFFF 50%, #FAFAFA 100%);
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(164, 22, 26, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(164, 22, 26, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--brand-red) 20%, var(--brand-red) 80%, transparent);
    z-index: 1;
    opacity: 0.4;
}

.hero-grid {
    align-items: center;
    min-height: 70vh;
    margin-top: 0;
}

.hero-text-col {
    display: flex;
    align-items: center;
    z-index: 2;
    position: relative;
    padding-right: var(--spacing-lg);
    padding-top: 0;
    margin-top: 0;
}

@media (max-width: 991px) {
    .hero-text-col {
        padding-right: 0;
    }
}

.hero-3d-col {
    position: relative;
    height: 100%;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-3d {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 500px;
    border-radius: var(--radius-lg);
    overflow: visible;
    background: transparent;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    border-radius: var(--radius-lg);
    position: relative;
    z-index: 1;
    opacity: 0;
    transform: scale(0.9) translateY(30px);
    filter: none;
    animation: heroImageFadeIn 1s ease-out 0.5s forwards, heroImageFloat 6s ease-in-out 1.5s infinite;
    will-change: transform;
    transition: filter 0.3s ease;
}

@keyframes heroImageFadeIn {
    0% {
        opacity: 0;
        transform: scale(0.9) translateY(30px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes heroImageFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-15px) rotate(1deg);
    }
    50% {
        transform: translateY(-10px) rotate(0deg);
    }
    75% {
        transform: translateY(-20px) rotate(-1deg);
    }
}

.hero-image:hover {
    animation: heroImageFloat 3s ease-in-out infinite, heroImagePulse 2s ease-in-out infinite;
}

@keyframes heroImagePulse {
    0%, 100% {
        filter: none;
    }
    50% {
        filter: none;
    }
}

#threejs-canvas {
    width: 100%;
    height: 100%;
    display: none;
    position: relative;
    z-index: 2;
}

#threejs-canvas.active {
    display: block;
}

.hero-video-fallback {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: none;
    border-radius: var(--radius-lg);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
}

.hero-video-fallback.active {
    display: block;
}

.hero-text {
    max-width: 100%;
}

.hero-label {
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--brand-red);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: var(--spacing-md);
    opacity: 0;
    transform: translateY(20px);
    position: relative;
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: rgba(164, 22, 26, 0.08);
    border-radius: 50px;
    border: 1px solid rgba(164, 22, 26, 0.15);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.75rem, 6vw, 4.5rem);
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    background: linear-gradient(135deg, #1a1a1a 0%, var(--brand-red) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.15;
    opacity: 0;
    transform: translateX(-50px);
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: clamp(1.125rem, 2.2vw, 1.375rem);
    margin-bottom: var(--spacing-xl);
    color: var(--secondary-text);
    line-height: 1.75;
    max-width: 550px;
    opacity: 0;
    transform: translateY(30px);
    font-weight: 400;
}

.hero-cta {
    display: flex;
    gap: var(--spacing-md);
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(30px);
    align-items: center;
}

.hero-cta .btn-primary {
    box-shadow: 0 8px 24px rgba(164, 22, 26, 0.25);
    position: relative;
    overflow: hidden;
}

.hero-cta .btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.hero-cta .btn-primary:hover::before {
    left: 100%;
}

.hero-cta .btn-secondary {
    border-width: 2px;
    font-weight: 500;
}

@media (max-width: 991px) {
    .hero {
        min-height: auto;
        padding-top: calc(var(--header-height) + 2.5rem);
        padding-bottom: 3rem;
        padding-left: 0;
        padding-right: 0;
        margin-top: 0;
    }
    
    .hero-grid {
        min-height: auto;
        gap: var(--spacing-lg);
    }
    
    .hero-text-col {
        padding-right: 0;
        text-align: center;
    }
    
    .hero-label {
        margin: 0 auto var(--spacing-md);
    }
    
    .hero-title {
        text-align: center;
    }
    
    .hero-subtitle {
        max-width: 100%;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-cta {
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .hero {
        min-height: auto;
        padding-top: calc(var(--header-height) + 2rem);
        padding-bottom: 2rem;
        padding-left: 0;
        padding-right: 0;
        margin-top: 0;
    }
    
    .hero-grid {
        min-height: auto;
        gap: var(--spacing-md);
    }
    
    .hero-3d-col {
        min-height: 350px;
        margin-top: var(--spacing-md);
    }
    
    .hero-3d {
        min-height: 350px;
    }
    
    .hero-text {
        text-align: center;
    }
    
    .hero-label {
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
        margin-bottom: 1rem;
    }
    
    .hero-title {
        font-size: clamp(2rem, 8vw, 2.5rem);
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        max-width: 100%;
        margin-bottom: 1.5rem;
        line-height: 1.6;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .hero-cta .btn {
        width: 100%;
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .hero-image {
        filter: none;
    }
}

/* About Us Section */
.about-section {
    position: relative;
    background: var(--bg-white);
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

.about-divider {
    width: 0;
    height: 2px;
    background: var(--brand-red);
    margin: 0 auto var(--spacing-xl);
    opacity: 0;
    max-width: 1200px;
}

.about-grid {
    align-items: flex-start;
    gap: var(--spacing-xl);
}

.about-story {
    padding-right: var(--spacing-lg);
    opacity: 0;
    transform: translateY(20px);
}

.about-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.about-label {
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--brand-red);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--spacing-sm);
    opacity: 0;
    transform: translateY(20px);
}

.about-content {
    position: relative;
}

.about-subheading {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    color: var(--brand-red);
    line-height: 1.3;
}

.about-text {
    font-family: var(--font-body);
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--secondary-text);
    max-width: 550px;
    margin-bottom: var(--spacing-md);
}

.about-text-mobile {
    display: none;
}

.about-text:last-of-type {
    margin-bottom: var(--spacing-lg);
}

.about-stats {
    display: flex;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
    padding-top: var(--spacing-lg);
    border-top: 1px solid var(--divider);
}

.about-stat-item {
    text-align: center;
    opacity: 0;
    transform: scale(0.9);
}

.stat-number {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--brand-red);
    line-height: 1;
    margin-bottom: var(--spacing-xs);
}

.stat-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--secondary-text);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.about-trust {
    display: flex;
    align-items: center;
}

.trust-cards {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    width: 100%;
}

.trust-card {
    padding: var(--spacing-lg);
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--divider);
    box-shadow: 0 2px 8px var(--shadow);
    transition: var(--transition-base);
    opacity: 0;
    transform: translateY(20px);
    position: relative;
    overflow: hidden;
}

.trust-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--brand-red);
    transform: scaleY(0);
    transition: transform 0.3s ease;
    transform-origin: top;
}

.trust-card:hover::before {
    transform: scaleY(1);
}

.trust-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 24px var(--hover-shadow);
    border-color: var(--brand-red);
}

.trust-card-icon {
    font-size: 2rem;
    margin-bottom: var(--spacing-sm);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.trust-card-title {
    font-family: var(--font-heading);
    font-size: 1.375rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    background: linear-gradient(135deg, #1a1a1a 0%, var(--brand-red) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.trust-card-text {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--secondary-text);
    margin: 0;
}

/* About Section Responsive */
@media (max-width: 767px) {
    .about-story {
        padding-right: 0;
        margin-bottom: var(--spacing-lg);
    }

    .about-stats {
        flex-direction: column;
        gap: var(--spacing-md);
        align-items: center;
    }

    .about-stat-item {
        width: 100%;
        max-width: 200px;
    }

    .trust-card-icon {
        font-size: 1.5rem;
    }
}

@media (max-width: 767px) {
    .about-story {
        padding-right: 0;
        margin-bottom: var(--spacing-lg);
    }
    
    .about-text {
        max-width: 100%;
    }
    
    .about-trust {
        margin-top: var(--spacing-md);
    }
}

/* Features */
.feature-card {
    text-align: center;
    padding: var(--spacing-lg);
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    box-shadow: 0 2px 8px var(--shadow);
    transition: var(--transition-base);
    height: 100%;
}

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

.feature-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-md);
}

.feature-title {
    margin-bottom: var(--spacing-sm);
}

.feature-text {
    color: var(--muted-text);
}

/* Section Header Styles - Consistent with Footer */
.section-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    background: linear-gradient(135deg, #1a1a1a 0%, var(--brand-red) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--spacing-sm);
    line-height: 1.2;
}

.section-description {
    font-family: var(--font-body);
    font-size: 1.125rem;
    color: var(--secondary-text);
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
}

/* Service Cards */
.service-card {
    padding: var(--spacing-lg);
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    box-shadow: 0 2px 8px var(--shadow);
    transition: var(--transition-base);
    height: 100%;
}

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

.service-card-title {
    margin-bottom: var(--spacing-sm);
    color: var(--brand-red);
}

.service-card-text {
    margin-bottom: var(--spacing-md);
    color: var(--secondary-text);
}

.service-card-link {
    color: var(--brand-red);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.service-card-link:hover {
    gap: 1rem;
}

/* New Service Cards (Section 3) */
.services-divider {
    width: 0;
    height: 2px;
    background: var(--brand-red);
    margin: 0 auto var(--spacing-xl);
    opacity: 0;
    max-width: 1200px;
}

.services-section {
    background: linear-gradient(to bottom, var(--bg-white) 0%, #FAFAFA 100%);
    position: relative;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

.services-grid {
    gap: 2rem;
    margin-top: 3rem;
}

.service-card-new {
    position: relative;
    background: var(--bg-white);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    border: 1px solid #F0F0F0;
}

.service-card-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--brand-red);
    width: 100%;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card-new:hover .service-card-accent {
    transform: scaleX(1);
}

.service-card-icon {
    font-size: 3.5rem;
    margin-bottom: 1.25rem;
    display: inline-block;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.1));
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    line-height: 1;
}

.service-card-new:hover .service-card-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-card-new:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    border-color: var(--brand-red);
}

.service-card-title-new {
    font-family: var(--font-heading);
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    font-weight: 700;
    margin-bottom: 1.25rem;
    background: linear-gradient(135deg, #1a1a1a 0%, var(--brand-red) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.service-card-bullets {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    flex-grow: 1;
}

.service-card-bullets li {
    font-family: var(--font-body);
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    color: #666666;
    font-size: 1rem;
    line-height: 1.7;
    transition: color 0.3s ease;
}

.service-card-new:hover .service-card-bullets li {
    color: #333333;
}

.service-card-bullets li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--brand-red);
    font-weight: 600;
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.service-card-new:hover .service-card-bullets li::before {
    transform: scale(1.2);
}

.service-card-link-new {
    font-family: var(--font-body);
    color: var(--brand-red);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    margin-top: auto;
    transition: all 0.3s ease;
    padding-top: 1rem;
    border-top: 1px solid #F0F0F0;
}

.service-card-new:hover .service-card-link-new {
    border-top-color: rgba(164, 22, 26, 0.2);
    color: var(--brand-red);
}

.service-card-link-new::after {
    content: '→';
    margin-left: 0.5rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.service-card-link-new:hover {
    gap: 0.5rem;
}

.service-card-link-new:hover::after {
    margin-left: 0.75rem;
    transform: translateX(4px);
}

@media (max-width: 991px) {
    .services-grid {
        gap: 1.5rem;
    }
}

@media (max-width: 767px) {
    .services-grid {
        gap: 1.5rem;
    }
    
    .service-card-new {
        padding: 2rem 1.5rem;
        margin-bottom: 0;
    }
    
    .service-card-icon {
        font-size: 3rem;
        margin-bottom: 1rem;
    }
    
    .service-card-title-new {
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }
    
    .service-card-bullets li {
        font-size: 0.9375rem;
        padding-left: 1.25rem;
    }
}

/* Process / How It Works Section */
.process-divider {
    width: 0;
    height: 2px;
    background: var(--brand-red);
    margin: 0 auto var(--spacing-xl);
    opacity: 0;
    max-width: 1200px;
}

.process-section {
    background: linear-gradient(to bottom, var(--bg-white) 0%, #FAFAFA 100%);
    position: relative;
    padding: 6rem 0;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

.process-section .section-header {
    margin-bottom: 4rem;
    text-align: center;
}

.process-timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem 0;
}

.timeline-line {
    position: absolute;
    left: 50px;
    top: 80px;
    bottom: 80px;
    width: 3px;
    background: linear-gradient(to bottom, var(--divider), var(--divider));
    transform-origin: top;
    transform: scaleY(0);
    transition: background 0.4s ease;
    border-radius: 2px;
}

.timeline-line.active {
    background: linear-gradient(to bottom, var(--brand-red), var(--brand-red));
    box-shadow: 0 0 12px rgba(164, 22, 26, 0.3);
}

.process-step {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 3.5rem;
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.process-step:last-child {
    margin-bottom: 0;
}

.process-step.active {
    opacity: 1;
    transform: translateX(0);
}

.step-number-wrapper {
    flex-shrink: 0;
    position: relative;
    z-index: 3;
}

.step-number {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--bg-white);
    border: 4px solid #E0E0E0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 700;
    color: #999999;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.process-step.active .step-number {
    background: linear-gradient(135deg, var(--brand-red), #C4121F);
    border-color: var(--brand-red);
    color: var(--bg-white);
    box-shadow: 0 8px 32px rgba(164, 22, 26, 0.4);
    transform: scale(1.05);
}

.process-step.active .step-number::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid var(--brand-red);
    opacity: 0.3;
    animation: pulse-ring 2s ease-out infinite;
}

@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 0.3;
    }
    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}

.step-content-card {
    flex: 1;
    background: var(--bg-white);
    border-radius: 20px;
    padding: 2rem 2.5rem;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    border: 1px solid #F0F0F0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.process-step.active .step-content-card {
    border-color: rgba(164, 22, 26, 0.2);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    transform: translateX(12px);
    background: linear-gradient(to right, #FFFFFF 0%, #FAFAFA 100%);
}

.step-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: inline-block;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
    transition: transform 0.4s ease;
}

.process-step.active .step-icon {
    transform: scale(1.1) rotate(5deg);
}

.step-title {
    font-family: var(--font-heading);
    font-size: clamp(1.375rem, 2.5vw, 1.75rem);
    font-weight: 700;
    margin-bottom: 0.75rem;
    background: linear-gradient(135deg, #1a1a1a 0%, var(--brand-red) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.4s ease;
    letter-spacing: -0.01em;
}

.process-step.active .step-title {
    background: linear-gradient(135deg, var(--brand-red) 0%, #8B1115 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transform: translateX(4px);
}

.step-description {
    font-family: var(--font-body);
    font-size: 1.0625rem;
    line-height: 1.7;
    color: #666666;
    margin: 0;
    transition: color 0.3s ease;
}

.process-step.active .step-description {
    color: #333333;
}

/* Turnaround Time Box */
.turnaround-box {
    max-width: 600px;
    margin: 4rem auto 0;
    padding: 2.5rem 2rem;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transform: translateY(20px);
    position: relative;
    overflow: hidden;
}

.turnaround-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--brand-red);
}

.turnaround-icon {
    font-size: 3rem;
    flex-shrink: 0;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
}

.turnaround-box:hover .turnaround-icon {
    transform: scale(1.1) rotate(10deg);
}

.turnaround-content {
    flex: 1;
}

.turnaround-title {
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--bg-white);
    letter-spacing: -0.01em;
}

.turnaround-text {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

@media (max-width: 767px) {
    .process-timeline {
        padding: var(--spacing-md) 0;
    }
    
    .timeline-line {
        left: 20px;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .process-step {
        gap: var(--spacing-sm);
        margin-bottom: var(--spacing-lg);
    }
    
    .step-title {
        font-size: 1.125rem;
    }
    
    .process-section {
        padding: 4rem 0;
    }
    
    .process-timeline {
        padding: 1.5rem 0;
    }
    
    .timeline-line {
        left: 35px;
        width: 2px;
        top: 60px;
        bottom: 60px;
    }
    
    .step-number {
        width: 70px;
        height: 70px;
        font-size: 1.5rem;
        border-width: 3px;
    }
    
    .process-step {
        gap: 1.25rem;
        margin-bottom: 2.5rem;
    }
    
    .step-content-card {
        padding: 1.5rem;
    }
    
    .step-icon {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }
    
    .step-title {
        font-size: 1.25rem;
        margin-bottom: 0.5rem;
    }
    
    .step-description {
        font-size: 0.9375rem;
    }
    
    .turnaround-box {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1.5rem;
        margin-top: 3rem;
    }
    
    .turnaround-icon {
        font-size: 2.5rem;
    }
    
    .turnaround-title {
        font-size: 1.125rem;
    }
    
    .turnaround-text {
        font-size: 0.9375rem;
    }
}

/* Products Section */
.products-divider {
    width: 0;
    height: 2px;
    background: var(--brand-red);
    margin: 0 auto var(--spacing-xl);
    opacity: 0;
    max-width: 1200px;
}

.products-section {
    background: linear-gradient(to bottom, #FAFAFA 0%, var(--bg-white) 100%);
    position: relative;
    padding: 6rem 0;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

.products-section .section-header {
    margin-bottom: 3rem;
    text-align: center;
}

.product-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.filter-chip {
    padding: 0.75rem 1.5rem;
    border: 2px solid #E0E0E0;
    background: var(--bg-white);
    border-radius: 2rem;
    font-size: 0.9375rem;
    font-weight: 600;
    color: #666666;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.filter-chip::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--brand-red);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
    z-index: 0;
}

.filter-chip span {
    position: relative;
    z-index: 1;
}

.filter-chip:hover,
.filter-chip.active {
    color: var(--bg-white);
    border-color: var(--brand-red);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(164, 22, 26, 0.2);
}

.filter-chip.active::before,
.filter-chip:hover::before {
    transform: scaleX(1);
}

.products-grid {
    gap: 2rem;
}

.product-card-wrapper {
    opacity: 1;
    transition: var(--transition-base);
}

.product-card-wrapper.hidden {
    display: none;
}

.product-card {
    background: var(--bg-white);
    border-radius: 20px;
    padding: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(30px);
    transform-style: preserve-3d;
    border: 1px solid #F0F0F0;
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--brand-red);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: 2;
}

.product-card:hover::before {
    transform: scaleX(1);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    border-color: var(--brand-red);
}

.product-badge {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background: linear-gradient(135deg, var(--brand-red), #C4121F);
    color: var(--bg-white);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 3;
    box-shadow: 0 4px 12px rgba(164, 22, 26, 0.3);
}

.product-preview {
    width: 100%;
    height: 280px;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #F8F8F8 0%, #E8E8E8 100%);
    border-radius: 20px 20px 0 0;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.product-card:hover .product-preview {
    background: linear-gradient(135deg, #F0F0F0 0%, #E0E0E0 100%);
}

.product-image-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    transition: transform 0.4s ease;
}

.product-card:hover .product-image-placeholder {
    transform: scale(1.05);
}

.bottle-icon {
    font-size: 5rem;
    filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.15));
    transition: transform 0.4s ease;
}

.product-card:hover .bottle-icon {
    transform: scale(1.1) rotate(5deg);
}

.bottle-size {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-text);
    letter-spacing: 0.05em;
}

.product-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 2rem;
}

.product-title {
    font-size: clamp(1.5rem, 2.5vw, 1.75rem);
    font-weight: 700;
    margin-bottom: 0.75rem;
    background: linear-gradient(135deg, #1a1a1a 0%, var(--brand-red) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.01em;
}

.product-description {
    font-size: 1rem;
    line-height: 1.7;
    color: #666666;
    margin-bottom: 1.25rem;
}

.product-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.product-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9375rem;
    color: #666666;
}

.feature-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--brand-red);
    color: var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    flex-shrink: 0;
}

.product-label-options {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #FAFAFA;
    border-radius: 12px;
    font-size: 0.9375rem;
}

.label-option {
    font-weight: 600;
    color: var(--primary-text);
}

.label-separator {
    color: #CCCCCC;
    font-weight: 300;
}

.product-cta {
    margin-top: auto;
    width: 100%;
    padding: 1rem;
    font-weight: 600;
    border-radius: 12px;
}

@media (max-width: 991px) {
    .products-section {
        padding: 4rem 0;
    }
    
    .product-filters {
        gap: 0.5rem;
        margin-bottom: 2rem;
    }
    
    .filter-chip {
        padding: 0.625rem 1.25rem;
        font-size: 0.875rem;
    }
}

@media (max-width: 767px) {
    .products-section {
        padding: 3rem 0;
    }
    
    .products-grid {
        gap: 1.5rem;
    }
    
    .product-preview {
        height: 220px;
    }
    
    .bottle-icon {
        font-size: 4rem;
    }
    
    .bottle-size {
        font-size: 1.25rem;
    }
    
    .product-info {
        padding: 1.5rem;
    }
    
    .product-title {
        font-size: 1.375rem;
    }
    
    .product-description {
        font-size: 0.9375rem;
        margin-bottom: 1rem;
    }
    
    .product-features {
        margin-bottom: 1.25rem;
    }
    
    .product-feature {
        font-size: 0.875rem;
    }
    
    .product-badge {
        top: 1rem;
        right: 1rem;
        padding: 0.375rem 0.75rem;
        font-size: 0.6875rem;
    }
}

/* Why Choose Us Section */
.why-choose-divider {
    width: 0;
    height: 2px;
    background: var(--brand-red);
    margin: 0 auto var(--spacing-xl);
    opacity: 0;
    max-width: 1200px;
}

.why-choose-section {
    background: var(--bg-white);
    position: relative;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

.why-choose-header {
    text-align: center;
    margin-bottom: var(--spacing-xxl);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.why-choose-title {
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    font-weight: 700;
    background: linear-gradient(135deg, #1a1a1a 0%, var(--brand-red) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    line-height: 1.2;
    opacity: 0;
    transform: translateY(30px);
    letter-spacing: -0.02em;
}

.why-choose-subtitle {
    font-size: clamp(1.125rem, 2.5vw, 1.375rem);
    color: #666666;
    line-height: 1.6;
    font-weight: 400;
    opacity: 0;
    transform: translateY(20px);
    margin: 0;
}

.why-choose-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.why-choose-card {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 3rem 2rem;
    text-align: center;
    border: 1px solid #E5E5E5;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(40px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.why-choose-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--brand-red);
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: left;
}

.why-choose-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
    border-color: var(--brand-red);
}

.why-choose-card:hover::before {
    transform: scaleX(1);
}

.why-card-title {
    font-size: clamp(1.375rem, 2.5vw, 1.75rem);
    font-weight: 700;
    background: linear-gradient(135deg, #1a1a1a 0%, var(--brand-red) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.why-card-description {
    font-size: 1rem;
    color: #666666;
    line-height: 1.6;
    margin: 0;
    max-width: 100%;
}

@media (max-width: 991px) {
    .why-choose-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 767px) {
    .why-choose-card {
        padding: 2rem 1.5rem;
    }
    
    .why-card-title {
        font-size: 1.25rem;
    }
    
    .why-card-description {
        font-size: 0.9375rem;
    }
}

@media (max-width: 767px) {
    .product-filters {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: var(--spacing-xs);
    }
    
    .filter-chip {
        flex-shrink: 0;
    }
    
    .product-preview {
        height: 200px;
    }
    
    .why-choose-content,
    .why-choose-stats {
        transform: translateY(20px);
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-card-featured {
        grid-column: span 1;
    }

    .why-choose-bullets li {
        padding: var(--spacing-sm);
    }

    .bullet-icon {
        width: 28px;
        height: 28px;
        font-size: 0.875rem;
    }

    .bullet-content strong {
        font-size: 1rem;
    }

    .bullet-content span {
        font-size: 0.875rem;
    }
}

/* Industries We Serve Section */
.industries-divider {
    width: 0;
    height: 2px;
    background: var(--brand-red);
    margin: 0 auto var(--spacing-xl);
    opacity: 0;
    max-width: 1200px;
}

.industries-section {
    background: var(--bg-white);
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

.industries-grid {
    gap: var(--spacing-md);
}

.industry-tile {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    padding: var(--spacing-lg);
    box-shadow: 0 2px 8px var(--shadow);
    transition: var(--transition-base);
    cursor: pointer;
    opacity: 0;
    transform: translateY(30px);
    position: relative;
    overflow: hidden;
}

.industry-tile::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--brand-red);
    transition: var(--transition-base);
}

.industry-tile:hover::after {
    width: 100%;
}

.industry-tile:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px var(--hover-shadow);
}

.industry-title {
    font-size: 1.25rem;
    font-weight: 600;
    background: linear-gradient(135deg, #1a1a1a 0%, var(--brand-red) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--spacing-xs);
    transition: var(--transition-base);
}

.industry-tile:hover .industry-title {
    color: var(--brand-red);
}

.industry-description {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--secondary-text);
    margin: 0;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 0.3s ease, max-height 0.3s ease, margin 0.3s ease;
}

.industry-tile:hover .industry-description {
    opacity: 1;
    max-height: 100px;
    margin-top: var(--spacing-xs);
}

.portfolio-divider {
    width: 0;
    height: 2px;
    background: var(--brand-red);
    margin: 0 auto var(--spacing-xl);
    opacity: 0;
    max-width: 1200px;
}

/* Portfolio Section */
.portfolio-section {
    background: var(--bg-white);
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

.portfolio-toggle {
    display: flex;
    justify-content: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-xl);
}

.toggle-btn {
    padding: 0.625rem 1.5rem;
    border: 2px solid var(--divider);
    background: var(--bg-white);
    border-radius: 2rem;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--secondary-text);
    cursor: pointer;
    transition: var(--transition-base);
}

.toggle-btn.active,
.toggle-btn:hover {
    background: var(--brand-red);
    color: var(--bg-white);
    border-color: var(--brand-red);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: var(--spacing-md);
    grid-auto-rows: 250px;
}

.portfolio-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    opacity: 0;
    transform: scale(0.9);
}

.portfolio-item.hidden {
    display: none;
}

.portfolio-image {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #F5F5F5 0%, #E8E8E8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.portfolio-placeholder {
    color: var(--muted-text);
    font-size: 0.875rem;
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-base);
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-view-btn {
    padding: 0.75rem 1.5rem;
    background: var(--brand-red);
    color: var(--bg-white);
    border: none;
    border-radius: var(--radius-md);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-base);
}

.portfolio-view-btn:hover {
    transform: scale(1.05);
}

/* Portfolio Modal */
.portfolio-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(4px);
}

.modal-content {
    position: relative;
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    max-width: 800px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    z-index: 10001;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.portfolio-modal.active .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: var(--spacing-md);
    right: var(--spacing-md);
    width: 40px;
    height: 40px;
    border: none;
    background: var(--bg-white);
    border-radius: 50%;
    font-size: 1.5rem;
    color: var(--primary-text);
    cursor: pointer;
    z-index: 10002;
    box-shadow: 0 2px 8px var(--shadow);
    transition: var(--transition-base);
}

.modal-close:hover {
    background: var(--brand-red);
    color: var(--bg-white);
}

.modal-body {
    padding: var(--spacing-xl);
}

.modal-image {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #F5F5F5 0%, #E8E8E8 100%);
    border-radius: var(--radius-md);
    margin-bottom: var(--spacing-lg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-info {
    text-align: center;
}

.modal-brand {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    color: var(--primary-text);
}

.modal-details {
    text-align: left;
    max-width: 500px;
    margin: 0 auto;
}

.modal-details p {
    margin-bottom: var(--spacing-sm);
    color: var(--secondary-text);
}

.modal-details strong {
    color: var(--primary-text);
}

/* Testimonials Section */
.testimonials-divider {
    width: 0;
    height: 2px;
    background: var(--brand-red);
    margin: 0 auto var(--spacing-xl);
    opacity: 0;
    max-width: 1200px;
}

.testimonials-section {
    background: var(--bg-white);
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

.testimonials-carousel {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.testimonials-track {
    position: relative;
    overflow: hidden;
}

.testimonial-slide {
    display: none;
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.testimonial-slide.active {
    display: block;
    opacity: 1;
    transform: translateX(0);
}

.testimonial-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    box-shadow: 0 2px 8px var(--shadow);
    text-align: center;
}

.testimonial-rating {
    font-size: 1.5rem;
    color: #FFD700;
    margin-bottom: var(--spacing-md);
    letter-spacing: 2px;
}

.testimonial-quote {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--secondary-text);
    font-style: italic;
    margin-bottom: var(--spacing-lg);
}

.testimonial-author {
    margin-top: var(--spacing-md);
}

.testimonial-name {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
    color: var(--primary-text);
}

.testimonial-business {
    font-size: 0.9375rem;
    color: var(--muted-text);
    margin: 0;
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border: none;
    background: var(--bg-white);
    border-radius: 50%;
    font-size: 2rem;
    color: var(--primary-text);
    cursor: pointer;
    box-shadow: 0 2px 8px var(--shadow);
    transition: var(--transition-base);
    z-index: 10;
}

.carousel-arrow:hover {
    background: var(--brand-red);
    color: var(--bg-white);
}

.carousel-prev {
    left: -25px;
}

.carousel-next {
    right: -25px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: var(--spacing-xs);
    margin-top: var(--spacing-lg);
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: var(--divider);
    cursor: pointer;
    transition: var(--transition-base);
}

.carousel-dot.active {
    background: var(--brand-red);
    width: 30px;
    border-radius: 5px;
}

/* FAQ Section */
.faq-divider {
    width: 0;
    height: 2px;
    background: var(--brand-red);
    margin: 0 auto var(--spacing-xl);
    opacity: 0;
    max-width: 1200px;
}

.faq-section {
    background: var(--bg-white);
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--divider);
    margin-bottom: var(--spacing-sm);
}

.faq-question {
    width: 100%;
    padding: var(--spacing-md);
    background: none;
    border: none;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--primary-text);
    transition: var(--transition-base);
}

.faq-question:hover {
    color: var(--brand-red);
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--brand-red);
    transition: var(--transition-base);
    flex-shrink: 0;
    margin-left: var(--spacing-md);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 var(--spacing-md);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 var(--spacing-md) var(--spacing-md);
}

.faq-answer p {
    color: var(--secondary-text);
    line-height: 1.8;
    margin: 0;
}

/* New CTA Section */
.cta-section-new {
    background: var(--bg-white);
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

.cta-box {
    max-width: 800px;
    margin: 0 auto;
    padding: var(--spacing-xl);
    border: 3px solid var(--brand-red);
    border-radius: var(--radius-lg);
    text-align: center;
    background: var(--bg-white);
    box-shadow: 0 4px 16px var(--shadow);
}

.cta-box-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    color: var(--primary-text);
}

.cta-box-subtitle {
    font-size: 1.125rem;
    color: var(--secondary-text);
    margin-bottom: var(--spacing-lg);
    line-height: 1.6;
}

.cta-box-buttons {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 767px) {
    .carousel-arrow {
        display: none;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 200px;
    }
    
    .cta-box {
        padding: var(--spacing-lg);
    }
    
    .cta-box-buttons {
        flex-direction: column;
    }
    
    .cta-box-buttons .btn {
        width: 100%;
    }
}

/* Contact Section */
.contact-section {
    background: var(--bg-white);
}

.contact-grid {
    gap: var(--spacing-xl);
    align-items: flex-start;
}

.contact-info-col {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.contact-info-block {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    box-shadow: 0 2px 8px var(--shadow);
}

.contact-info-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: var(--spacing-lg);
    color: var(--primary-text);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.contact-detail-item {
    display: flex;
    gap: var(--spacing-md);
    align-items: flex-start;
}

.contact-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.contact-text strong {
    display: block;
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
    color: var(--primary-text);
}

.contact-text p {
    margin: 0;
    color: var(--secondary-text);
    line-height: 1.6;
}

.contact-text a {
    color: var(--brand-red);
    text-decoration: none;
}

.contact-text a:hover {
    text-decoration: underline;
}

.contact-map {
    width: 100%;
    height: 300px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 2px 8px var(--shadow);
}

.map-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #F5F5F5 0%, #E8E8E8 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--muted-text);
    text-align: center;
    padding: var(--spacing-md);
}

.contact-form-col {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    box-shadow: 0 2px 8px var(--shadow);
}

.contact-form-main {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.form-group {
    position: relative;
}

.form-label {
    display: block;
    margin-bottom: var(--spacing-xs);
    font-weight: 500;
    color: var(--primary-text);
    font-size: 0.9375rem;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid var(--divider);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition-base);
    background: var(--bg-white);
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--brand-red);
    box-shadow: 0 0 0 3px rgba(164, 22, 26, 0.1);
}

.form-input.error,
.form-textarea.error {
    border-color: #dc3545;
}

.form-error {
    display: block;
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: var(--spacing-xs);
    min-height: 1.25rem;
}

.form-success {
    margin-top: var(--spacing-md);
    padding: var(--spacing-md);
    background: #d4edda;
    border: 1px solid #c3e6cb;
    border-radius: var(--radius-md);
    color: #155724;
    text-align: center;
    opacity: 0;
    transform: translateY(-10px);
}

.form-success.show {
    opacity: 1;
    transform: translateY(0);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--brand-red) 0%, #8B1115 100%);
    color: var(--bg-white);
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    color: var(--bg-white);
    margin-bottom: var(--spacing-md);
}

.cta-text {
    font-size: 1.125rem;
    color: var(--bg-white);
    opacity: 0.95;
    margin-bottom: var(--spacing-lg);
}

.cta-section .btn-primary {
    background: var(--bg-white);
    color: var(--brand-red);
}

.cta-section .btn-primary:hover {
    background: #F5F5F5;
}

/* ============================================
   SIRATIM - NEW LUXURY FOOTER
   Clean, White-Dominant, Premium Design
   ============================================ */

.footer-new {
    background: #FFFFFF;
    border-top: 1px solid #EAEAEA;
    padding: 80px 0 0;
    margin-top: 0;
    position: relative;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.footer-new-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    margin-bottom: 60px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.footer-new-col {
    width: 100%;
    max-width: 100%;
}

.footer-new-heading {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: #121212;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
    letter-spacing: 0.05em;
}

.footer-logo-new {
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-logo-new a {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #1a1a1a 0%, var(--brand-red) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.footer-logo-new a:hover {
    color: #8B1115;
    transform: translateY(-2px);
}

.footer-logo-new::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: #A4161A;
}

.footer-new-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: #A4161A;
}

.footer-new-text {
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    line-height: 1.7;
    color: #555555;
    margin: 0;
    max-width: 300px;
}

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

.footer-new-links li {
    margin-bottom: 0.75rem;
}

.footer-new-links li:last-child {
    margin-bottom: 0;
}

.footer-new-links a {
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    color: #555555;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    position: relative;
}

.footer-new-links a:hover {
    color: #A4161A;
    transform: translateX(2px);
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-contact-item-new {
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    line-height: 1.7;
    color: #555555;
}

.footer-contact-item-new a {
    color: #555555;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-item-new a:hover {
    color: #A4161A;
}

.footer-contact-item-new.footer-address {
    color: #555555;
    line-height: 1.8;
}

.footer-new-bottom {
    border-top: 1px solid #EAEAEA;
    padding: 2rem 0;
    text-align: center;
}

.footer-new-bottom p {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    color: #555555;
    margin: 0;
    transition: color 0.3s ease;
}

.footer-new-bottom:hover p {
    color: #121212;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--brand-red) 20%, var(--brand-red) 80%, transparent);
    opacity: 0.4;
}

.footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: var(--brand-red);
    opacity: 0.6;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
}

.footer-brand {
    grid-column: span 12;
    position: relative;
}

.footer-brand::after {
    content: '';
    position: absolute;
    bottom: -1.5rem;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--brand-red);
    opacity: 0.3;
}

@media (min-width: 768px) {
    .footer-brand::after {
        display: none;
    }
}

/* Tablet Footer Styles */
@media (min-width: 768px) and (max-width: 991px) {
    .footer {
        padding: 3.5rem 0 2rem;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
    
    .footer-brand {
        grid-column: span 2;
        text-align: center;
        padding-bottom: 2rem;
        border-bottom: 1px solid var(--divider);
    }
    
    .footer-logo {
        font-size: 1.625rem;
    }
    
    .footer-tagline {
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .footer-links {
        grid-column: span 1;
        text-align: left;
    }
    
    .footer-services {
        grid-column: span 1;
        text-align: left;
    }
    
    .footer-contact {
        grid-column: span 2;
        text-align: center;
    }
    
    .footer-heading {
        font-size: 0.8125rem;
    }
    
    .footer-list {
        align-items: flex-start;
    }
    
    .footer-list a {
        text-align: left;
        justify-content: flex-start;
    }
    
    .footer-contact .footer-list {
        align-items: center;
    }
    
    .footer-contact .footer-list a {
        text-align: center;
        justify-content: center;
    }
    
    .footer-bottom {
        gap: var(--spacing-lg);
    }
    
    .footer-right {
        padding-left: var(--spacing-lg);
    }
}

/* Desktop Footer Styles */
@media (min-width: 992px) {
    .footer-brand {
        grid-column: span 4;
    }
    .footer-links {
        grid-column: span 2;
    }
    .footer-services {
        grid-column: span 3;
    }
    .footer-contact {
        grid-column: span 3;
    }
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    color: var(--brand-red);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    transition: var(--transition-base);
}

.footer-logo:hover {
    transform: translateY(-2px);
    color: #8B1115;
}

.footer-logo::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--brand-red);
    opacity: 0.6;
    transition: width 0.3s ease;
}

.footer-logo:hover::after {
    width: 100%;
}

.footer-tagline {
    color: var(--secondary-text);
    font-size: 0.9375rem;
    font-weight: 400;
    margin-top: var(--spacing-md);
    line-height: 1.7;
    max-width: 300px;
    font-style: italic;
    position: relative;
    padding-left: 1.5rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
    box-sizing: border-box;
}

.footer-tagline::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -2px;
    font-size: 1.5rem;
    color: var(--brand-red);
    opacity: 0.3;
    font-family: Georgia, serif;
}

.footer-heading {
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    color: var(--primary-text);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    position: relative;
    padding-bottom: 0.75rem;
    display: inline-block;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--brand-red);
    opacity: 0.4;
    transition: width 0.3s ease;
}

.footer-heading:hover::after {
    width: 100%;
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
    overflow: hidden;
}

.footer-list li {
    width: 100%;
    overflow: visible;
    margin-bottom: var(--spacing-sm);
}

.footer-list li:last-child {
    margin-bottom: 0;
}

.footer-list a {
    color: var(--secondary-text);
    font-size: 0.9375rem;
    text-decoration: none;
    transition: var(--transition-base);
    display: block;
    position: relative;
    padding: 0.25rem 0;
    padding-left: 1rem;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.footer-list a::before {
    content: '→';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    color: var(--brand-red);
    transition: all 0.3s ease;
    font-size: 0.875rem;
}

.footer-list a:hover {
    color: var(--brand-red);
    transform: translateX(4px);
    padding-left: 1.25rem;
}

.footer-list a:hover::before {
    opacity: 1;
    left: 0.25rem;
}

/* Footer Contact Icons */
.footer-contact-item {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 0.75rem;
    color: var(--secondary-text);
    text-decoration: none;
    transition: var(--transition-base);
    padding: 0.25rem 0;
    width: 100%;
    max-width: 100%;
    white-space: normal !important;
    word-wrap: normal !important;
    overflow-wrap: normal !important;
    overflow: visible;
    writing-mode: horizontal-tb !important;
}

.footer-contact-item:hover {
    color: var(--brand-red);
    transform: translateX(4px);
}

.footer-contact-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    transition: var(--transition-base);
}

.footer-contact-item:hover .footer-contact-icon {
    stroke: var(--brand-red);
    transform: scale(1.1);
}

.footer-contact .footer-list a::before {
    display: none;
}

.footer-contact .footer-list a {
    padding-left: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    white-space: normal;
    word-wrap: break-word;
    overflow-wrap: break-word;
    width: 100%;
    max-width: 100%;
    overflow: visible;
    writing-mode: horizontal-tb;
}

.footer-contact .footer-list li {
    white-space: normal;
}

.footer-contact .footer-list li.footer-contact-item {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 0.75rem;
    color: var(--secondary-text);
    padding: 0.25rem 0;
    width: 100%;
    max-width: 100%;
    list-style: none;
    visibility: visible !important;
    opacity: 1 !important;
    overflow: visible;
    writing-mode: horizontal-tb;
}

.footer-contact .footer-list li.footer-contact-item span {
    display: block !important;
    color: var(--secondary-text);
    flex: 1 1 auto;
    white-space: normal !important;
    word-wrap: normal !important;
    overflow-wrap: normal !important;
    word-break: normal !important;
    min-width: 150px;
    max-width: 100%;
    width: auto;
    writing-mode: horizontal-tb !important;
    text-orientation: mixed !important;
    line-height: 1.6;
    text-align: left;
    overflow: visible;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--spacing-lg);
    border-top: 1px solid var(--divider);
    flex-wrap: wrap;
    gap: 0;
    margin-top: var(--spacing-md);
    position: relative;
}

.footer-bottom .footer-legal {
    flex: 0 0 auto;
    min-width: 0;
}

.footer-bottom .footer-right {
    flex: 0 0 auto;
    margin-left: auto;
    min-width: 0;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--brand-red), transparent);
    opacity: 0.3;
}

.footer-social {
    display: flex;
    gap: var(--spacing-sm);
    align-items: center;
}

.social-link {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--divider);
    color: var(--secondary-text);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 1px solid transparent;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: var(--brand-red);
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
    z-index: 0;
}

.social-link svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.social-link:hover {
    color: var(--bg-white);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 20px rgba(164, 22, 26, 0.3);
    border-color: var(--brand-red);
}

.social-link:hover::before {
    width: 100%;
    height: 100%;
}

.social-link:hover svg {
    transform: scale(1.1);
}

.social-link:active {
    transform: translateY(-1px) scale(1.02);
}

.footer-legal {
    display: flex;
    gap: var(--spacing-md);
    align-items: center;
    color: var(--muted-text);
    font-size: 0.875rem;
    flex-wrap: wrap;
}

.footer-legal p {
    margin: 0;
    font-weight: 400;
}

.footer-right {
    display: flex;
    align-items: center;
    gap: var(--spacing-xl);
    flex-wrap: wrap;
    margin-left: auto;
    padding-left: 8rem;
    justify-content: flex-end;
    flex-shrink: 0;
}

.footer-privacy {
    color: var(--muted-text);
    text-decoration: none;
    transition: var(--transition-base);
    position: relative;
    padding: 0.25rem 0;
    font-size: 0.875rem;
    font-weight: 400;
    margin-right: var(--spacing-xl);
    display: none;
}

.footer-privacy::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--brand-red);
    transition: width 0.3s ease;
}

.footer-privacy:hover {
    color: var(--brand-red);
}

.footer-privacy:hover::after {
    width: 100%;
}

/* Page Content */
.page-content {
    padding-top: calc(var(--header-height) + var(--spacing-lg));
    min-height: calc(100vh - var(--header-height));
}

.page-header {
    text-align: center;
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, #FAFAFA 0%, var(--bg-white) 100%);
}

.page-title {
    margin-bottom: var(--spacing-sm);
}

.page-subtitle {
    font-size: 1.125rem;
    color: var(--muted-text);
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   NEW FOOTER RESPONSIVE STYLES
   ============================================ */

/* Tablet Footer Styles */
@media (min-width: 768px) and (max-width: 991px) {
    .footer-new {
        padding: 60px 0 0;
    }
    
    .footer-new-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px;
        margin-bottom: 50px;
    }
    
    .footer-logo-new a {
        font-size: 1.875rem;
    }
    
    .footer-contact-new {
        grid-column: span 2;
    }
}

/* Mobile Footer Styles */
@media (max-width: 767px) {
    .footer-new {
        padding: 50px 0 0;
    }
    
    .footer-new-content {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 40px;
    }
    
    .footer-new-col {
        text-align: center;
    }
    
    .footer-logo-new {
        text-align: center;
    }
    
    .footer-logo-new a {
        font-size: 1.75rem;
    }
    
    .footer-logo-new::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-new-heading {
        text-align: center;
    }
    
    .footer-new-heading::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-new-text {
        max-width: 100%;
        text-align: center;
    }
    
    .footer-new-links {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-contact-info {
        align-items: center;
    }
    
    .footer-new-bottom {
        padding: 1.5rem 0;
    }
}

/* Small Mobile Footer Styles */
@media (max-width: 480px) {
    .footer-logo-new a {
        font-size: 1.5rem;
    }
    
    /* Hero Section - Small Mobile */
    .hero {
        padding: calc(80px + 0.1rem) 0 0.5rem;
    }
    
    .hero .container {
        padding: 0 0.75rem;
    }
    
    .hero-grid {
        gap: 0.375rem;
        max-height: 280px;
    }
    
    .hero-text-col {
        padding-right: 0.375rem;
    }
    
    .hero-label {
        font-size: 0.4375rem;
        padding: 0.1rem 0.375rem;
    }
    
    .hero-title {
        font-size: clamp(0.75rem, 3.5vw, 0.9375rem);
        margin-bottom: 0.25rem;
    }
    
    .hero-subtitle {
        font-size: 0.5625rem;
        margin-bottom: 0.375rem;
        line-height: 1.3;
    }
    
    .hero-cta {
        gap: 0.25rem;
    }
    
    .hero-cta .btn {
        min-width: 70px;
        padding: 0.25rem 0.4375rem;
        font-size: 0.5625rem;
    }
    
    .hero-cta .btn-large {
        padding: 0.25rem 0.4375rem;
        font-size: 0.5625rem;
    }
    
    .hero-3d-col {
        min-height: 220px;
        max-height: 280px;
    }
    
    .hero-3d {
        min-height: 220px;
        max-height: 280px;
    }
    
    .hero-image {
        max-height: 280px;
    }
    
    /* About Section - Small Mobile */
    .about-section {
        padding: 2rem 0;
    }
    
    .about-header {
        padding: 0 0.75rem;
    }
    
    .about-label {
        font-size: 0.6875rem;
    }
    
    .about-header .section-title {
        font-size: clamp(1.25rem, 6vw, 1.5rem);
    }
    
    .about-divider {
        margin: 0.5rem auto 1.25rem;
        width: 50px;
    }
    
    .about-content {
        padding: 0 0.75rem;
    }
    
    .about-text-mobile {
        font-size: 0.875rem;
        line-height: 1.5;
        padding: 0;
    }
    
    .about-trust {
        padding: 0 0.75rem;
    }
    
    .trust-cards {
        gap: 0.875rem;
    }
    
    .trust-card {
        padding: 1.25rem 1rem;
    }
    
    .trust-card-icon {
        font-size: 1.5rem;
        margin-bottom: 0.625rem;
    }
    
    .trust-card-title {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .trust-card-text {
        font-size: 0.875rem;
        line-height: 1.5;
    }
    
    .footer-new {
        padding: 50px 0 0;
    }
    
    .footer-new-content {
        gap: 40px;
        margin-bottom: 40px;
    }
    
    .footer-logo-new a {
        font-size: 1.5rem;
    }
    
    .footer-new-heading {
        font-size: 1.25rem;
        margin-bottom: 1.5rem;
    }
    
    .footer-new-text {
        font-size: 1rem;
    }
    
    .footer-new-links a {
        font-size: 1rem;
    }
    
    .footer-contact-item-new {
        font-size: 1rem;
    }
    
    .footer-new-bottom p {
        font-size: 0.8125rem;
    }
}

/* ============================================
   COMPREHENSIVE MOBILE RESPONSIVE STYLES
   ============================================ */

/* Tablet Responsive (768px - 991px) */
@media (max-width: 991px) {
    .container {
        padding: 0 var(--spacing-sm);
    }
    
    .section-padding {
        padding: var(--spacing-xl) 0;
    }
    
    .section-header {
        margin-bottom: var(--spacing-lg);
    }
    
    .hero-grid {
        gap: var(--spacing-lg);
    }
    
    .about-grid {
        gap: var(--spacing-lg);
    }
    
    .services-grid {
        gap: 1.5rem;
    }
    
    .products-grid {
        gap: 1.5rem;
    }
    
    .industries-grid {
        gap: 1.5rem;
    }
}

/* Mobile Responsive (max-width: 767px) */
@media (max-width: 767px) {
    /* Container & Spacing */
    .container {
        padding: 0 1rem;
    }
    
    .section-padding {
        padding: 3rem 0;
    }
    
    .section-header {
        margin-bottom: var(--spacing-md);
    }
    
    .section-title {
        font-size: clamp(1.75rem, 6vw, 2.25rem);
        margin-bottom: 0.75rem;
    }
    
    .section-description {
        font-size: 1rem;
        padding: 0 0.5rem;
    }
    
    /* Header & Navigation */
    .header {
        padding: 0 1rem;
    }
    
    .header-content {
        height: 80px;
    }
    
    .logo a {
        font-size: 1.75rem;
    }
    
    .nav {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: var(--bg-white);
        flex-direction: column;
        padding: var(--spacing-md);
        box-shadow: 0 4px 16px var(--shadow);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition-base);
        z-index: 999;
        max-height: calc(100vh - 80px);
        overflow-y: auto;
    }

    .nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-link {
        padding: 0.75rem 0;
        width: 100%;
        text-align: center;
        border-bottom: 1px solid var(--divider);
    }
    
    .nav-link:last-child {
        border-bottom: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .header .btn-primary {
        display: none;
    }
    
    /* Hero Section - Mobile Responsive */
    .hero {
        min-height: auto;
        padding: calc(80px + 0.1rem) 0 0.5rem;
        margin-top: -0.25rem;
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
        box-sizing: border-box;
    }
    
    .hero .container {
        width: 100%;
        max-width: 100%;
        padding: 0 1rem;
        box-sizing: border-box;
        overflow-x: hidden;
    }
    
    .hero-grid {
        min-height: auto;
        gap: 0.5rem;
        display: grid !important;
        grid-template-columns: 1.4fr 0.6fr !important;
        align-items: flex-start;
        height: auto;
        max-height: 280px;
        margin-top: -0.15rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        overflow-x: hidden;
    }
    
    .hero-text-col {
        order: 1 !important;
        padding-right: 0.5rem;
        padding-left: 0;
        padding-top: 0;
        text-align: left;
        grid-column: 1 !important;
        width: 100% !important;
        max-width: 100% !important;
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;
        height: 100%;
        box-sizing: border-box;
        overflow-x: hidden;
    }
    
    .hero-text-col.col-12 {
        grid-column: 1 !important;
        width: auto !important;
        max-width: 100%;
    }
    
    .hero-3d-col {
        order: 2 !important;
        min-height: 220px;
        max-height: 280px;
        margin-top: -0.1rem;
        grid-column: 2 !important;
        width: 100% !important;
        max-width: 100% !important;
        display: flex;
        align-items: flex-start;
        justify-content: center;
        height: 100%;
        padding-top: 0;
        padding-left: 0;
        padding-right: 0;
        box-sizing: border-box;
        overflow-x: hidden;
    }
    
    .hero-3d-col.col-12 {
        grid-column: 2 !important;
        width: auto !important;
        max-width: 100%;
    }
    
    .hero-3d {
        min-height: 220px;
        max-height: 280px;
        width: 100%;
        height: 100%;
        max-width: 100%;
        box-sizing: border-box;
        overflow-x: hidden;
    }
    
    .hero-image {
        width: 100%;
        height: 100%;
        object-fit: contain;
        max-height: 280px;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .hero-text {
        text-align: left;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        overflow-x: hidden;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .hero-label {
        font-size: 0.5rem;
        margin-bottom: 0.1875rem;
        padding: 0.125rem 0.4375rem;
        display: inline-block;
        line-height: 1.2;
        word-wrap: break-word;
        overflow-wrap: break-word;
        max-width: 100%;
    }
    
    .hero-title {
        font-size: clamp(0.8125rem, 3vw, 1rem);
        margin-bottom: 0.3125rem;
        line-height: 1.2;
        text-align: left;
        word-wrap: break-word;
        overflow-wrap: break-word;
        max-width: 100%;
        width: 100%;
    }
    
    .hero-subtitle {
        font-size: 0.625rem;
        max-width: 100%;
        width: 100%;
        margin-bottom: 0.4375rem;
        line-height: 1.35;
        text-align: left;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .hero-cta {
        flex-direction: row;
        gap: 0.25rem;
        flex-wrap: wrap;
        width: 100%;
        max-width: 100%;
        margin-top: 0;
        box-sizing: border-box;
        overflow-x: hidden;
    }
    
    .hero-cta .btn {
        flex: 1;
        min-width: 75px;
        padding: 0.3125rem 0.5rem;
        font-size: 0.625rem;
        line-height: 1.2;
        max-width: 100%;
        box-sizing: border-box;
        word-wrap: break-word;
        overflow-wrap: break-word;
        white-space: nowrap;
        text-overflow: ellipsis;
    }
    
    .hero-cta .btn-large {
        padding: 0.3125rem 0.5rem;
        font-size: 0.625rem;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    /* About Section */
    /* About Section - Mobile Responsive */
    .about-section {
        padding: 2.5rem 0;
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .about-header {
        margin-bottom: 0;
        position: relative;
        width: 100%;
        max-width: 100%;
        text-align: center;
        padding: 0 1rem;
    }
    
    .about-label {
        font-size: 0.75rem;
        margin-bottom: 0.5rem;
    }
    
    .about-header .section-title {
        font-size: clamp(1.5rem, 5vw, 1.75rem);
        margin-bottom: 0.75rem;
    }
    
    .about-header .section-description {
        display: none;
    }
    
    .about-divider {
        margin: 0.75rem auto 1.5rem;
        width: 60px;
        opacity: 1;
    }
    
    .about-grid {
        gap: 1.5rem;
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .about-story {
        padding-right: 0;
        margin-bottom: 1.5rem;
        text-align: center;
        width: 100%;
        max-width: 100%;
    }
    
    .about-content {
        text-align: center;
        width: 100%;
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .about-subheading {
        display: none;
    }
    
    .about-text {
        display: none;
    }
    
    .about-text-mobile {
        display: block;
        font-size: 0.9375rem;
        max-width: 100%;
        margin-bottom: 0;
        line-height: 1.6;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
        color: var(--secondary-text);
        font-family: var(--font-body);
        padding: 0;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .about-stats {
        display: none;
    }
    
    .about-stat-item {
        width: 100%;
        max-width: 200px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.8125rem;
    }
    
    .about-trust {
        margin-top: 0;
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .trust-cards {
        gap: 1rem;
        width: 100%;
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .trust-card {
        padding: 1.5rem 1.25rem;
        width: 100%;
        max-width: 100%;
        margin-bottom: 0;
        box-sizing: border-box;
        overflow-x: hidden;
    }
    
    .trust-card:last-child {
        margin-bottom: 0;
    }
    
    .trust-card-icon {
        font-size: 1.75rem;
        margin-bottom: 0.75rem;
    }
    
    .trust-card-title {
        font-size: 1.125rem;
        margin-bottom: 0.625rem;
        line-height: 1.3;
        word-wrap: break-word;
    }
    
    .trust-card-text {
        font-size: 0.9375rem;
        line-height: 1.6;
        word-wrap: break-word;
        overflow-wrap: break-word;
        margin: 0;
    }
    
    /* Services Section */
    .services-section {
        padding: 3rem 0;
    }
    
    .services-divider {
        margin: var(--spacing-sm) auto var(--spacing-md);
        width: 60px;
        opacity: 1;
    }
    
    .services-grid {
        gap: 1.25rem;
    }
    
    .service-card-new {
        padding: 1.75rem 1.25rem;
        margin-bottom: 0;
    }
    
    .service-card-icon {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .service-card-title-new {
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }
    
    .service-card-bullets {
        font-size: 0.9375rem;
        margin-bottom: 1rem;
    }
    
    .service-card-bullets li {
        margin-bottom: 0.5rem;
        padding-left: 1.25rem;
    }
    
    .service-card-link-new {
        font-size: 0.9375rem;
    }
    
    /* Process/How It Works Section */
    .process-section {
        padding: 3rem 0;
    }
    
    .process-divider {
        margin: var(--spacing-sm) auto var(--spacing-md);
        width: 60px;
        opacity: 1;
    }
    
    .process-timeline {
        padding: var(--spacing-md) 0;
    }
    
    .timeline-line {
        left: 20px;
        display: none;
    }
    
    .process-step {
        flex-direction: row;
        align-items: flex-start;
        gap: 1rem;
        margin-bottom: var(--spacing-md);
    }
    
    .step-number-wrapper {
        flex-shrink: 0;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 0.875rem;
    }
    
    .step-content-card {
        flex: 1;
        padding: 1.25rem;
    }
    
    .step-icon {
        font-size: 1.75rem;
        margin-bottom: 0.75rem;
    }
    
    .step-title {
        font-size: 1.125rem;
        margin-bottom: 0.5rem;
    }
    
    .step-description {
        font-size: 0.9375rem;
        line-height: 1.6;
    }
    
    .turnaround-box {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
        margin-top: var(--spacing-md);
    }
    
    .turnaround-icon {
        font-size: 2rem;
        margin-bottom: 0.75rem;
        margin-right: 0;
    }
    
    .turnaround-title {
        font-size: 1.125rem;
        margin-bottom: 0.5rem;
    }
    
    .turnaround-text {
        font-size: 0.9375rem;
    }
    
    /* Products Section */
    .products-section {
        padding: 3rem 0;
    }
    
    .products-divider {
        margin: var(--spacing-sm) auto var(--spacing-md);
        width: 60px;
        opacity: 1;
    }
    
    .products-grid {
        gap: 1.5rem;
    }
    
    .product-filters {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: var(--spacing-xs);
        gap: 0.5rem;
        margin-bottom: var(--spacing-md);
        -webkit-overflow-scrolling: touch;
    }
    
    .filter-chip {
        flex-shrink: 0;
        padding: 0.625rem 1.25rem;
        font-size: 0.875rem;
        white-space: nowrap;
    }
    
    .product-card {
        padding: 1.5rem;
    }
    
    .product-preview {
        height: 200px;
        margin-bottom: 1rem;
    }
    
    .product-title {
        font-size: 1.25rem;
        margin-bottom: 0.5rem;
    }
    
    .product-description {
        font-size: 0.9375rem;
        margin-bottom: 1rem;
    }
    
    .product-features {
        gap: 0.5rem;
        margin-bottom: 1rem;
    }
    
    .product-feature {
        font-size: 0.875rem;
    }
    
    .product-cta {
        width: 100%;
        padding: 0.875rem 1.5rem;
    }
    
    /* Why Choose Section */
    .why-choose-section {
        padding: 3rem 0;
    }
    
    .why-choose-divider {
        margin: var(--spacing-sm) auto var(--spacing-md);
        width: 60px;
        opacity: 1;
    }
    
    .why-choose-header {
        margin-bottom: var(--spacing-md);
    }
    
    .why-choose-title {
        font-size: clamp(1.75rem, 6vw, 2.25rem);
        margin-bottom: 0.75rem;
    }
    
    .why-choose-subtitle {
        font-size: 1rem;
    }
    
    .why-choose-cards {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .why-choose-card {
        padding: 1.75rem 1.25rem;
    }
    
    .why-card-title {
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }
    
    .why-card-description {
        font-size: 0.9375rem;
        line-height: 1.6;
    }
    
    /* Industries Section */
    .industries-section {
        padding: 3rem 0;
    }
    
    .industries-divider {
        margin: var(--spacing-sm) auto var(--spacing-md);
        width: 60px;
        opacity: 1;
    }
    
    .industries-grid {
        gap: 1rem;
    }
    
    .industry-tile {
        padding: 1.5rem 1.25rem;
    }
    
    .industry-title {
        font-size: 1.125rem;
        margin-bottom: 0.5rem;
    }
    
    .industry-description {
        font-size: 0.9375rem;
        line-height: 1.6;
    }
    
    /* Portfolio Section */
    .portfolio-section {
        padding: 3rem 0;
    }
    
    .portfolio-divider {
        margin: var(--spacing-sm) auto var(--spacing-md);
        width: 60px;
        opacity: 1;
    }
    
    .portfolio-toggle {
        margin-bottom: var(--spacing-md);
        gap: 0.5rem;
    }
    
    .toggle-btn {
        flex: 1;
        padding: 0.75rem 1rem;
        font-size: 0.9375rem;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 250px;
        gap: 1rem;
    }
    
    .portfolio-item {
        border-radius: var(--radius-md);
    }
    
    .portfolio-view-btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9375rem;
    }
    
    /* Testimonials Section */
    .testimonials-section {
        padding: 3rem 0;
    }
    
    .testimonials-carousel {
        margin-bottom: var(--spacing-md);
    }
    
    .carousel-arrow {
        display: none;
    }
    
    .testimonials-track {
        gap: 0;
    }
    
    .testimonial-card {
        padding: 1.75rem 1.25rem;
    }
    
    .testimonial-rating {
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }
    
    .testimonial-quote {
        font-size: 1rem;
        line-height: 1.7;
        margin-bottom: 1.25rem;
    }
    
    .testimonial-name {
        font-size: 1.125rem;
        margin-bottom: 0.25rem;
    }
    
    .testimonial-business {
        font-size: 0.875rem;
    }
    
    .carousel-dots {
        gap: 0.5rem;
        margin-top: var(--spacing-md);
    }
    
    .carousel-dot {
        width: 8px;
        height: 8px;
    }
    
    .testimonials-divider {
        margin: var(--spacing-sm) auto var(--spacing-md);
        width: 60px;
        opacity: 1;
    }
    
    /* FAQ Section */
    .faq-section {
        padding: 3rem 0;
    }
    
    .faq-divider {
        margin: var(--spacing-sm) auto var(--spacing-md);
        width: 60px;
        opacity: 1;
    }
    
    .faq-list {
        max-width: 100%;
    }
    
    .faq-item {
        margin-bottom: 0.75rem;
    }
    
    .faq-question {
        padding: 1rem 1.25rem;
        font-size: 0.9375rem;
        text-align: left;
    }
    
    .faq-icon {
        font-size: 1.25rem;
        width: 24px;
        height: 24px;
    }
    
    .faq-answer {
        padding: 0 1.25rem 1rem;
    }
    
    .faq-answer p {
        font-size: 0.9375rem;
        line-height: 1.7;
    }
    
    /* CTA Section */
    .cta-section-new {
        padding: 3rem 0;
    }
    
    .cta-box {
        padding: 2rem 1.5rem;
    }
    
    .cta-box-title {
        font-size: clamp(1.5rem, 6vw, 2rem);
        margin-bottom: 0.75rem;
    }
    
    .cta-box-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .cta-box-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .cta-box-buttons .btn {
        width: 100%;
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    /* Footer */
    .footer {
        padding: 2rem 0 1.5rem;
        margin-top: 2rem;
        overflow-x: hidden;
        width: 100%;
        max-width: 100%;
    }
    
    .footer::after {
        width: 50px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.75rem;
        margin-bottom: 1.5rem;
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .footer-brand {
        margin-bottom: 0;
        text-align: center;
        padding-bottom: 1.5rem;
        border-bottom: 1px solid var(--divider);
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .footer-brand::after {
        left: 50%;
        transform: translateX(-50%);
        width: 50px;
    }
    
    .footer-logo {
        font-size: 1.625rem;
        margin-bottom: 0.75rem;
        display: block;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
        letter-spacing: 0.1em;
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
        word-wrap: break-word;
    }
    
    .footer-logo::after {
        left: 50%;
        transform: translateX(-50%);
        width: 50px;
    }
    
    .footer-tagline {
        font-size: 0.875rem;
        max-width: 100%;
        width: 100%;
        margin: 0.75rem auto 0;
        text-align: center;
        padding: 0 1rem;
        line-height: 1.6;
        word-wrap: break-word;
        overflow-wrap: break-word;
        white-space: normal;
        box-sizing: border-box;
    }
    
    .footer-tagline::before {
        display: none;
    }
    
    .footer-links,
    .footer-services,
    .footer-contact {
        text-align: center;
        padding-bottom: 1.5rem;
        border-bottom: 1px solid var(--divider);
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
        box-sizing: border-box;
    }
    
    .footer-contact {
        border-bottom: none;
        padding-bottom: 0;
    }
    
    .footer-heading {
        font-size: 0.8125rem;
        margin-bottom: 1rem;
        font-weight: 600;
        letter-spacing: 0.1em;
        display: inline-block;
        text-align: center;
        width: 100%;
        max-width: 100%;
        word-wrap: break-word;
    }
    
    .footer-heading::after {
        left: 50%;
        transform: translateX(-50%);
        width: 40px;
    }
    
    .footer-list {
        display: flex;
        flex-direction: column;
        gap: 0.625rem;
        align-items: center;
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
        padding: 0;
        margin: 0;
        list-style: none;
    }
    
    .footer-list li {
        font-size: 0.875rem;
        margin-bottom: 0;
        width: 100%;
        max-width: 100%;
        text-align: center;
        box-sizing: border-box;
        overflow: visible;
        word-wrap: break-word;
        overflow-wrap: break-word;
        writing-mode: horizontal-tb;
    }
    
    .footer-list a {
        font-size: 0.875rem;
        padding: 0.625rem 1rem;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        width: 100%;
        max-width: 100%;
        text-align: center;
        white-space: normal;
        word-wrap: break-word;
        overflow-wrap: break-word;
        overflow: visible;
        box-sizing: border-box;
        text-decoration: none;
        writing-mode: horizontal-tb;
    }
    
    .footer-list a::before {
        display: none;
    }
    
    .footer-list a:hover {
        transform: none;
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1.25rem;
        padding-top: 1.75rem;
        margin-top: 1.25rem;
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
        box-sizing: border-box;
    }
    
    .footer-bottom::before {
        width: 60px;
    }
    
    .footer-legal {
        width: 100%;
        max-width: 100%;
        justify-content: center;
        text-align: center;
        overflow-x: hidden;
        box-sizing: border-box;
    }
    
    .footer-legal p {
        font-size: 0.8125rem;
        margin: 0;
        color: var(--muted-text);
        line-height: 1.5;
        word-wrap: break-word;
        overflow-wrap: break-word;
        white-space: normal;
        width: 100%;
        max-width: 100%;
    }
    
    .footer-right {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        max-width: 100%;
        align-items: center;
        padding-left: 0;
        overflow-x: hidden;
        box-sizing: border-box;
    }
    
    .footer-privacy {
        font-size: 0.8125rem;
        padding: 0.5rem 0;
        margin-right: 0;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .footer-social {
        justify-content: center;
        gap: 0.875rem;
        width: 100%;
        max-width: 100%;
        flex-wrap: wrap;
        overflow-x: hidden;
        box-sizing: border-box;
    }
    
    .social-link {
        width: 42px;
        height: 42px;
        flex-shrink: 0;
        box-sizing: border-box;
    }
    
    .social-link svg {
        width: 18px;
        height: 18px;
    }
    
    .footer-contact-item {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        gap: 0.75rem;
        padding: 0.625rem 1rem;
        border-radius: 4px;
        transition: background-color 0.2s ease;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        overflow: visible !important;
        word-wrap: normal !important;
        overflow-wrap: normal !important;
        white-space: normal !important;
        visibility: visible !important;
        opacity: 1 !important;
        writing-mode: horizontal-tb !important;
    }
    
    .footer-contact-item:active {
        background-color: rgba(164, 22, 26, 0.05);
    }
    
    .footer-contact-icon {
        width: 18px;
        height: 18px;
        flex-shrink: 0;
        display: block;
    }
    
    .footer-contact .footer-list {
        gap: 0.75rem;
        width: 100%;
        max-width: 100%;
    }
    
    .footer-contact .footer-list a {
        padding: 0.625rem 1rem;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 0.75rem;
        text-align: center;
        width: 100%;
        max-width: 100%;
        white-space: normal;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .footer-contact .footer-list li {
        width: 100%;
        max-width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .footer-contact .footer-list li.footer-contact-item {
        justify-content: center;
        text-align: center;
        padding: 0.625rem 1rem;
        width: 100% !important;
        max-width: 100% !important;
        min-width: 250px;
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        overflow: visible;
        writing-mode: horizontal-tb !important;
        box-sizing: border-box;
    }
    
    .footer-contact .footer-list li.footer-contact-item span {
        text-align: center;
        word-wrap: normal !important;
        overflow-wrap: normal !important;
        font-size: 0.875rem;
        line-height: 1.6;
        display: block !important;
        max-width: 100%;
        width: auto;
        white-space: normal !important;
        word-break: normal !important;
        hyphens: none;
        flex: 1 1 auto;
        min-width: 200px;
        writing-mode: horizontal-tb !important;
        text-orientation: mixed !important;
        overflow: visible;
    }
    
    .footer-contact .footer-list li.footer-contact-item a {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.75rem;
        width: 100%;
        max-width: 100%;
    }
    
    .footer-contact .footer-list li.footer-contact-item a span {
        font-size: 0.875rem;
        text-align: center;
        word-wrap: break-word;
        overflow-wrap: break-word;
        white-space: normal;
        word-break: normal;
        display: inline-block;
        flex: 1;
        min-width: 0;
        max-width: 100%;
        width: auto;
        writing-mode: horizontal-tb;
        text-orientation: mixed;
    }
    
    /* Buttons */
    .btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.9375rem;
    }
    
    .btn-large {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    /* Portfolio Modal */
    .modal-content {
        max-width: 95%;
        max-height: 90vh;
        margin: 1rem;
    }
    
    .modal-body {
        flex-direction: column;
        padding: 1.5rem;
    }
    
    .modal-image {
        min-height: 200px;
        margin-bottom: 1rem;
    }
    
    .modal-info {
        padding-left: 0;
    }
    
    .modal-brand {
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }
    
    .modal-details {
        font-size: 0.9375rem;
    }
    
    .modal-close {
        top: 0.5rem;
        right: 0.5rem;
        width: 32px;
        height: 32px;
        font-size: 1.5rem;
    }
}

/* Small Mobile (max-width: 480px) */
@media (max-width: 480px) {
    .container {
        padding: 0 0.75rem;
    }
    
    .section-padding {
        padding: 2.5rem 0;
    }
    
    .hero {
        padding: calc(70px + 1.5rem) 0 1.5rem;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-subtitle {
        font-size: 0.9375rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .service-card-new,
    .trust-card,
    .why-choose-card,
    .product-card {
        padding: 1.5rem 1rem;
    }
    
    .cta-box {
        padding: 1.75rem 1.25rem;
    }
    
    /* Footer - Small Mobile */
    .footer {
        padding: 2rem 0 1.25rem;
        margin-top: 2rem;
        overflow-x: hidden;
        width: 100%;
        max-width: 100%;
    }
    
    .footer-content {
        gap: 1.5rem;
        margin-bottom: 1.25rem;
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .footer-brand {
        padding-bottom: 1.25rem;
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .footer-logo {
        font-size: 1.375rem;
        margin-bottom: 0.625rem;
        letter-spacing: 0.06em;
        width: 100%;
        max-width: 100%;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .footer-logo::after {
        width: 40px;
    }
    
    .footer-tagline {
        font-size: 0.8125rem;
        padding: 0 0.75rem;
        line-height: 1.5;
        width: 100%;
        max-width: 100%;
        word-wrap: break-word;
        overflow-wrap: break-word;
        white-space: normal;
        box-sizing: border-box;
    }
    
    .footer-tagline::before {
        display: none;
    }
    
    .footer-links,
    .footer-services,
    .footer-contact {
        padding-bottom: 1.25rem;
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
        box-sizing: border-box;
    }
    
    .footer-heading {
        font-size: 0.75rem;
        margin-bottom: 0.875rem;
        letter-spacing: 0.1em;
        width: 100%;
        max-width: 100%;
        word-wrap: break-word;
    }
    
    .footer-heading::after {
        width: 30px;
    }
    
    .footer-list {
        gap: 0.5rem;
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .footer-list li {
        font-size: 0.8125rem;
        width: 100%;
        max-width: 100%;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .footer-list a {
        font-size: 0.8125rem;
        padding: 0.5rem 0.75rem;
        width: 100%;
        max-width: 100%;
        word-wrap: break-word;
        overflow-wrap: break-word;
        white-space: normal;
    }
    
    .footer-bottom {
        padding-top: 1.25rem;
        margin-top: 1rem;
        gap: 1rem;
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
        box-sizing: border-box;
    }
    
    .footer-legal {
        justify-content: center;
        text-align: center;
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .footer-legal p {
        font-size: 0.75rem;
        line-height: 1.5;
        word-wrap: break-word;
        overflow-wrap: break-word;
        white-space: normal;
        width: 100%;
        max-width: 100%;
    }
    
    .footer-right {
        gap: 0.75rem;
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
        box-sizing: border-box;
    }
    
    .footer-privacy {
        font-size: 0.75rem;
        padding: 0.375rem 0;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .footer-social {
        gap: 0.75rem;
        justify-content: center;
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
        flex-wrap: wrap;
    }
    
    .social-link {
        width: 38px;
        height: 38px;
        flex-shrink: 0;
    }
    
    .social-link svg {
        width: 16px;
        height: 16px;
    }
    
    .footer-contact-item {
        gap: 0.5rem;
        padding: 0.5rem 0.75rem;
        width: 100%;
        max-width: 100%;
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: center !important;
        word-wrap: normal !important;
        overflow-wrap: normal !important;
        white-space: normal !important;
        word-break: normal !important;
        box-sizing: border-box;
        visibility: visible !important;
        opacity: 1 !important;
        overflow: visible !important;
        writing-mode: horizontal-tb !important;
    }
    
    .footer-contact-icon {
        width: 14px;
        height: 14px;
        flex-shrink: 0;
    }
    
    .footer-contact .footer-list li.footer-contact-item {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 220px;
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        overflow: visible;
        writing-mode: horizontal-tb !important;
        box-sizing: border-box;
    }
    
    .footer-contact .footer-list li.footer-contact-item span {
        font-size: 0.8125rem;
        word-wrap: normal !important;
        overflow-wrap: normal !important;
        white-space: normal !important;
        word-break: normal !important;
        display: block !important;
        flex: 1 1 auto;
        min-width: 180px;
        max-width: 100%;
        width: auto;
        writing-mode: horizontal-tb !important;
        text-orientation: mixed !important;
        overflow: visible;
    }
    
    .footer-contact .footer-list a {
        width: 100%;
        max-width: 100%;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        white-space: normal;
        word-wrap: break-word;
        overflow-wrap: break-word;
        overflow: visible;
        writing-mode: horizontal-tb;
    }
    
    .footer-contact .footer-list a span {
        font-size: 0.8125rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
        white-space: normal;
        word-break: normal;
        display: inline-block;
        flex: 1;
        min-width: 0;
        max-width: 100%;
        width: auto;
        writing-mode: horizontal-tb;
        text-orientation: mixed;
    }
}

/* ============================================
   COOKIE CONSENT BANNER
   ============================================ */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100%;
    background: var(--bg-white);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    z-index: 10000;
    padding: var(--spacing-md);
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-top: 2px solid var(--divider);
}

.cookie-consent.show {
    transform: translateY(0);
}

.cookie-consent-content {
    max-width: var(--container-max-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.cookie-consent-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a1a1a 0%, var(--brand-red) 100%);
    border-radius: var(--radius-md);
    color: var(--bg-white);
}

.cookie-consent-icon svg {
    width: 24px;
    height: 24px;
}

.cookie-consent-text {
    flex: 1;
    min-width: 250px;
}

.cookie-consent-title {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary-text);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.cookie-consent-description {
    font-family: var(--font-body);
    font-size: 0.9375rem;
    color: var(--secondary-text);
    line-height: 1.6;
    margin: 0;
}

.cookie-consent-buttons {
    display: flex;
    gap: var(--spacing-sm);
    flex-shrink: 0;
}

.cookie-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.cookie-btn svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.cookie-btn-accept {
    background: linear-gradient(135deg, #1a1a1a 0%, var(--brand-red) 100%);
    color: var(--bg-white);
    box-shadow: 0 2px 8px rgba(164, 22, 26, 0.2);
}

.cookie-btn-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(164, 22, 26, 0.3);
}

.cookie-btn-reject {
    background: var(--bg-white);
    color: var(--primary-text);
    border: 2px solid var(--divider);
}

.cookie-btn-reject:hover {
    border-color: var(--brand-red);
    color: var(--brand-red);
    transform: translateY(-2px);
}

/* Mobile Responsive */
@media (max-width: 767px) {
    .cookie-consent {
        padding: var(--spacing-sm);
    }

    .cookie-consent-content {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--spacing-sm);
    }

    .cookie-consent-icon {
        width: 40px;
        height: 40px;
    }

    .cookie-consent-icon svg {
        width: 20px;
        height: 20px;
    }

    .cookie-consent-text {
        min-width: 100%;
        width: 100%;
    }

    .cookie-consent-title {
        font-size: 1rem;
        margin-bottom: 0.375rem;
    }

    .cookie-consent-description {
        font-size: 0.875rem;
    }

    .cookie-consent-buttons {
        width: 100%;
        flex-direction: column;
        gap: 0.75rem;
    }

    .cookie-btn {
        width: 100%;
        justify-content: center;
        padding: 0.875rem 1.25rem;
        font-size: 0.9375rem;
    }
}

@media (max-width: 480px) {
    .cookie-consent {
        padding: 1rem;
    }

    .cookie-consent-icon {
        width: 36px;
        height: 36px;
    }

    .cookie-consent-icon svg {
        width: 18px;
        height: 18px;
    }

    .cookie-consent-title {
        font-size: 0.9375rem;
    }

    .cookie-consent-description {
        font-size: 0.8125rem;
    }

    .cookie-btn {
        padding: 0.75rem 1rem;
        font-size: 0.875rem;
    }
}

