/*
Theme Name: Skitch PPF
Theme URI: https://skitchppf.com
Author: Ahmed Abdelnasser
Author URI: http://www.ahmedabdnasser.com
Description: Custom WordPress theme for Skitch Paint Protection Film products
Version: 1.2.1
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: skitchppf
*/

/* Bootstrap 5.3 CDN will be loaded via functions.php */

/* Custom CSS Variables - Compatible with Bootstrap */
:root {
    --skitch-red: #d3141b;
    --skitch-black: #000000;
    --skitch-white: #ffffff;
    --skitch-nav-gray: #999999;
    --bs-body-font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* Ensure Bootstrap compatibility - only reset what's necessary */
*,
*::before,
*::after {
    box-sizing: border-box;
}

/* Body styles - work with Bootstrap */
body {
    font-family: var(--bs-body-font-family);
    background-color: var(--skitch-white);
    color: var(--skitch-black);
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

body.has-hero {
    padding-top: 0;
}

/* Header Styles */
.site-header {
    background-color: transparent;
    box-shadow: none;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
    transition: all 0.3s ease;
}

.site-header.scrolled {
    background-color: var(--skitch-white);
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    position: fixed;
}

.site-header .navbar {
    padding: 1rem 0;
    background-color: transparent;
    transition: all 0.3s ease;
}

.site-header.scrolled .navbar {
    background-color: var(--skitch-white);
}

.site-header .navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    min-height: 70px;
}

/* Mobile Toggle Button */
.site-header .navbar-toggler {
    border: 2px solid var(--skitch-black);
    padding: 0.5rem 0.75rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.site-header:not(.scrolled) .navbar-toggler {
    border-color: rgba(255, 255, 255, 0.9);
    background-color: rgba(255, 255, 255, 0.1);
}

.site-header:not(.scrolled) .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.5' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.site-header .navbar-toggler:hover {
    border-color: var(--skitch-red);
    background-color: rgba(211,20,27,0.05);
}

.site-header:not(.scrolled) .navbar-toggler:hover {
    border-color: var(--skitch-white);
    background-color: rgba(255, 255, 255, 0.2);
}

.site-header .navbar-toggler:focus {
    box-shadow: 0 0 0 3px rgba(211,20,27,0.1);
    outline: none;
}

.site-header .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.5' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    width: 1.5em;
    height: 1.5em;
}

/* Logo */
.site-header .navbar-brand {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    padding: 0;
    margin: 0;
    text-decoration: none;
}

.site-header .navbar-brand img {
    max-height: 55px;
    width: auto;
    transition: transform 0.3s ease, filter 0.3s ease, opacity 0.3s ease;
    display: block;
}

/* Logo white when header is transparent (not scrolled) */
.site-header:not(.scrolled) .navbar-brand img {
    filter: brightness(0) invert(1) !important;
    opacity: 1 !important;
}

/* Logo normal when header is solid (scrolled) */
.site-header.scrolled .navbar-brand img {
    filter: none !important;
    opacity: 1 !important;
}

.site-header .navbar-brand:hover img {
    transform: scale(1.05);
}

.navbar-brand-text {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--skitch-black);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.site-header:not(.scrolled) .navbar-brand-text {
    color: var(--skitch-white);
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

.site-header.scrolled .navbar-brand-text {
    color: var(--skitch-black);
    text-shadow: none;
}

/* Desktop Navigation */
.navbar-desktop {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    position: relative;
}

.navbar-desktop .nav-left {
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: flex-start;
}

.navbar-desktop .nav-right {
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: flex-end;
}

.navbar-desktop .nav-link {
    color: var(--skitch-nav-gray);
    font-weight: 500;
    padding: 0.5rem 1.5rem;
    transition: color 0.3s ease;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.8px;
    text-decoration: none;
    white-space: nowrap;
}

.site-header:not(.scrolled) .navbar-desktop .nav-link {
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

.site-header:not(.scrolled) .navbar-desktop .nav-link:hover,
.site-header:not(.scrolled) .navbar-desktop .nav-link:focus {
    color: var(--skitch-white);
}

.navbar-desktop .nav-link:hover,
.navbar-desktop .nav-link:focus {
    color: var(--skitch-black);
}

/* Mobile Navigation */
.navbar-mobile {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 1rem 0;
}

.site-header:not(.scrolled) .navbar-mobile {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

.navbar-mobile .nav-link {
    color: var(--skitch-black);
    font-weight: 500;
    padding: 0.75rem 1rem;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.8px;
    text-decoration: none;
    display: block;
    transition: color 0.3s ease, background-color 0.3s ease;
}

.navbar-mobile .nav-link:hover {
    color: var(--skitch-red);
    background-color: rgba(211,20,27,0.05);
}

/* Mobile Contact Info */
.header-contact-mobile {
    padding: 1rem 0;
    margin-top: 1rem;
    border-top: 1px solid rgba(0,0,0,0.1);
}

.header-contact-mobile .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--skitch-black);
    font-size: 0.9rem;
}

.header-contact-mobile .contact-item:last-child {
    margin-bottom: 0;
}

.header-contact-mobile .contact-item i {
    color: var(--skitch-red);
    font-size: 1rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.header-contact-mobile .contact-item a {
    color: var(--skitch-black);
    text-decoration: none;
    transition: color 0.3s ease;
}

.header-contact-mobile .contact-item a:hover {
    color: var(--skitch-red);
}

/* Responsive - Mobile */
@media (max-width: 991.98px) {
    .site-header .navbar .container {
        flex-wrap: wrap;
        justify-content: space-between;
    }
    
    .site-header .navbar-brand {
        position: static;
        transform: none;
        margin: 0 auto;
    }
    
    .navbar-collapse {
        width: 100%;
        margin-top: 1rem;
    }
    
    .navbar-desktop {
        display: none !important;
    }
}

/* Responsive - Desktop */
@media (min-width: 992px) {
    .navbar-collapse {
        display: none !important;
    }
    
    .navbar-toggler {
        display: none !important;
    }
    
    .header-contact-mobile {
        display: none !important;
    }
    
    .navbar-mobile {
        display: none !important;
    }
    
    .navbar-desktop {
        display: flex !important;
    }
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    text-align: center;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-image: var(--hero-bg-image);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    z-index: 0;
}

/* Enhanced gradient overlay for premium look */
.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse 80% 50% at 20% 20%, rgba(211,20,27,0.3) 0%, transparent 60%),
        radial-gradient(ellipse 70% 40% at 80% 80%, rgba(0,0,0,0.7) 0%, transparent 70%),
        linear-gradient(135deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.65) 40%, rgba(0,0,0,0.55) 70%, rgba(0,0,0,0.6) 100%);
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(180deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.7) 25%, rgba(0,0,0,0.6) 50%, rgba(0,0,0,0.65) 75%, rgba(0,0,0,0.7) 100%),
        linear-gradient(135deg, rgba(211,20,27,0.2) 0%, rgba(211,20,27,0.1) 30%, transparent 60%, rgba(0,0,0,0.4) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1rem;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
    color: var(--skitch-white);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: -1px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
}

.hero-subtitle {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    color: var(--skitch-red);
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
}

.hero-description {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    color: rgba(255,255,255,0.95);
    max-width: 700px;
    margin: 0 auto 2.5rem;
    line-height: 1.8;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.btn-hero {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.btn-hero-primary {
    background-color: var(--skitch-red);
    color: var(--skitch-white);
    box-shadow: 0 4px 15px rgba(211,20,27,0.4);
}

.btn-hero-primary:hover {
    background-color: #b01015;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(211,20,27,0.5);
    color: var(--skitch-white);
}

.btn-hero-secondary {
    background-color: rgba(255,255,255,0.95);
    color: var(--skitch-black);
    border-color: rgba(255,255,255,0.95);
}

.btn-hero-secondary:hover {
    background-color: var(--skitch-white);
    color: var(--skitch-black);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255,255,255,0.4);
}

/* Products Section */
.products-section {
    padding: 6rem 0;
    background-color: var(--skitch-white);
    position: relative;
}

.products-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(211,20,27,0.3) 50%, transparent 100%);
}

.products-header {
    margin-bottom: 5rem;
}

.products-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--skitch-black);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.products-subtitle {
    font-size: 1.25rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

/* Products Grid */
/* Products Carousel */
#productsCarousel {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    position: relative;
}

/* Fade Effect */
#productsCarousel.carousel-fade .carousel-item {
    opacity: 0;
    transition-property: opacity;
    transform: none;
    transition-duration: 0.8s;
    transition-timing-function: ease-in-out;
}

#productsCarousel.carousel-fade .carousel-item.active,
#productsCarousel.carousel-fade .carousel-item-next.carousel-item-start,
#productsCarousel.carousel-fade .carousel-item-prev.carousel-item-end {
    opacity: 1;
}

#productsCarousel.carousel-fade .active.carousel-item-start,
#productsCarousel.carousel-fade .active.carousel-item-end {
    opacity: 0;
}

.product-carousel-card-wrapper {
    padding: 2rem 0;
}

.product-carousel-card-wrapper .row {
    align-items: flex-start;
}

/* Desktop/Tablet */
@media (min-width: 768px) {
    .product-carousel-card-wrapper .col-md-6 {
        display: flex;
    }
    
    /* Hide mobile controls on desktop */
    #productsCarousel .carousel-control-mobile {
        display: none !important;
    }
    
    /* Show desktop controls */
    #productsCarousel .carousel-control-desktop {
        display: flex !important;
    }
    
    /* Indicators wrapper without mobile controls on desktop */
    .carousel-indicators-wrapper {
        display: flex;
        justify-content: center;
    }
}

.product-carousel-card-wrapper .col-12 {
    display: flex;
}

.product-carousel-card-wrapper .product-card {
    width: 100%;
    max-width: 100%;
    height: auto;
}

.carousel-item {
    transition: opacity 0.8s ease-in-out;
}

/* Carousel Controls */
#productsCarousel .carousel-control-prev,
#productsCarousel .carousel-control-next {
    width: 50px;
    height: 50px;
    background: var(--skitch-red);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.9;
    transition: all 0.3s ease;
}

#productsCarousel .carousel-control-prev {
    left: 20px;
}

#productsCarousel .carousel-control-next {
    right: 20px;
}

#productsCarousel .carousel-control-prev:hover,
#productsCarousel .carousel-control-next:hover {
    opacity: 1;
    background: #b01015;
    transform: translateY(-50%) scale(1.1);
}

#productsCarousel .carousel-control-prev-icon,
#productsCarousel .carousel-control-next-icon {
    width: 20px;
    height: 20px;
}

/* Carousel Indicators Wrapper */
.carousel-indicators-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
    margin-bottom: 0;
    position: relative;
    z-index: 5;
}

/* Carousel Indicators */
#productsCarousel .carousel-indicators {
    margin: 0;
    gap: 0.5rem;
    position: relative;
}

#productsCarousel .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(211,20,27,0.3);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

#productsCarousel .carousel-indicators button.active {
    background-color: var(--skitch-red);
    width: 30px;
    border-radius: 6px;
}

#productsCarousel .carousel-indicators button:hover {
    background-color: rgba(211,20,27,0.6);
}

.product-card {
    background: var(--skitch-white);
    border: 2px solid #f0f0f0;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    position: relative;
    height: auto;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--skitch-red) 0%, #b01015 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: 1;
}

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

.product-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(211,20,27,0.2);
    border-color: var(--skitch-red);
}

.product-image-wrapper {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 300px;
}

.product-image {
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform 0.4s ease;
    display: block;
}

.product-card:hover .product-image {
    transform: none;
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.product-card:hover .product-overlay {
    opacity: 0;
}

.product-zoom {
    color: var(--skitch-white);
    font-size: 3rem;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.product-zoom:hover {
    transform: scale(1.2);
    color: var(--skitch-white);
}

.product-body {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    background: var(--skitch-white);
}

.product-header {
    margin-bottom: 0.5rem;
}

.product-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--skitch-black);
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.product-series {
    display: inline-block;
    color: var(--skitch-red);
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.2rem 0.6rem;
    background: rgba(211,20,27,0.1);
    border-radius: 4px;
}

.product-color {
    display: inline-block;
    color: #666;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
    padding: 0.25rem 0;
}

.product-description {
    color: #555;
    margin-bottom: 1rem;
    flex-grow: 1;
    line-height: 1.6;
    font-size: 0.875rem;
}

.product-actions {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: auto;
}

.btn-download {
    background-color: var(--skitch-black);
    color: var(--skitch-white);
    border: none;
    padding: 0.65rem 1.25rem;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: all 0.3s ease;
    flex: 1;
    justify-content: center;
    font-size: 0.875rem;
}

.btn-download:hover {
    background-color: #333;
    color: var(--skitch-white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.btn-download span {
    display: inline;
}

.btn-order {
    background-color: var(--skitch-red);
    color: var(--skitch-white);
    border: none;
    padding: 0.65rem 1.25rem;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: all 0.3s ease;
    flex: 1;
    justify-content: center;
    font-size: 0.875rem;
}

.btn-order:hover {
    background-color: #b01015;
    color: var(--skitch-white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(211,20,27,0.4);
}

.btn-order span {
    display: inline;
}

/* Desktop Product Layout Enhancements */
@media (min-width: 992px) {
    .product-card {
        max-width: 100%;
    }
    
    .product-image-wrapper {
        padding: 2rem;
        min-height: 400px;
    }
    
    .product-body {
        padding: 1.75rem;
    }
    
    #productsCarousel {
        max-width: 1400px;
    }
    
    .product-carousel-card-wrapper {
        min-height: auto;
        padding: 2.5rem 0;
    }
    
    .product-carousel-card-wrapper .col-md-6 {
        display: block;
    }
}

@media (min-width: 1400px) {
    #productsCarousel {
        max-width: 1500px;
    }
    
    .product-image-wrapper {
        padding: 2.5rem;
        min-height: 450px;
    }
    
    .product-body {
        padding: 2rem;
    }
}

/* Distributors Section */
.distributors-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.distributors-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(211,20,27,0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0,0,0,0.03) 0%, transparent 50%);
    pointer-events: none;
}

.section-header {
    position: relative;
    z-index: 2;
}

.section-title-main {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--skitch-black);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    position: relative;
}

.section-subtitle-main {
    font-size: 1.25rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Distributor Card */
.distributor-card {
    background: var(--skitch-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 2px solid transparent;
}

.distributor-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--skitch-red) 0%, #b01015 50%, var(--skitch-red) 100%);
    background-size: 200% 100%;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.distributor-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(211,20,27,0.2);
    border-color: rgba(211,20,27,0.1);
}

.distributor-header {
    padding: 2rem 2rem 0;
    position: relative;
}

.distributor-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--skitch-red) 0%, #b01015 100%);
    color: var(--skitch-white);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(211,20,27,0.3);
}

.distributor-badge i {
    font-size: 1rem;
}

.distributor-badge-arabic {
    font-family: 'Arial', sans-serif;
    direction: rtl;
}

.distributor-title {
    font-size: clamp(1.5rem, 3vw, 1.75rem);
    font-weight: 800;
    color: var(--skitch-black);
    margin: 1.5rem 0 0;
    padding: 0 2rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.3;
}

.distributor-title-arabic {
    font-family: 'Arial', sans-serif;
    direction: rtl;
    text-align: right;
    text-transform: none;
    font-size: clamp(1.35rem, 3vw, 1.6rem);
}

.distributor-body {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    flex: 1;
}

/* Info Grid */
.distributor-info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 12px;
    border: 2px solid #f0f0f0;
    transition: all 0.3s ease;
}

.info-item:hover {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-color: rgba(211,20,27,0.2);
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.info-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--skitch-red) 0%, #b01015 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(211,20,27,0.25);
}

.info-icon i {
    color: var(--skitch-white);
    font-size: 1.15rem;
}

.info-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.info-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.info-value {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--skitch-black);
    line-height: 1.4;
}

.info-link {
    color: var(--skitch-red);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.info-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--skitch-red);
    transition: width 0.3s ease;
}

.info-link:hover {
    color: #b01015;
}

.info-link:hover::after {
    width: 100%;
}

/* Distributor Actions */
.distributor-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: auto;
}

.btn-distributor {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.btn-distributor i {
    font-size: 1.25rem;
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #20BA5A 100%);
    color: var(--skitch-white);
}

.btn-whatsapp:hover {
    background: linear-gradient(135deg, #20BA5A 0%, #1AA84A 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    color: var(--skitch-white);
}

.btn-call {
    background: linear-gradient(135deg, var(--skitch-red) 0%, #b01015 100%);
    color: var(--skitch-white);
}

.btn-call:hover {
    background: linear-gradient(135deg, #b01015 0%, var(--skitch-red) 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(211, 20, 27, 0.4);
    color: var(--skitch-white);
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .distributors-section {
        padding: 4rem 0;
    }

    .distributor-card {
        margin-bottom: 2rem;
    }
}

@media (max-width: 767.98px) {
    .distributors-section {
        padding: 3rem 0;
    }

    .section-title-main {
        font-size: 2rem;
    }

    .section-subtitle-main {
        font-size: 1.05rem;
    }

    .distributor-header {
        padding: 1.5rem 1.5rem 0;
    }

    .distributor-title {
        padding: 0 1.5rem;
        font-size: 1.35rem;
    }

    .distributor-body {
        padding: 1.5rem;
    }

    .distributor-actions {
        grid-template-columns: 1fr;
    }

    .btn-distributor {
        padding: 1.25rem;
    }
}

@media (max-width: 575.98px) {
    .distributor-badge {
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
    }

    .info-item {
        padding: 1rem;
    }

    .info-icon {
        width: 40px;
        height: 40px;
    }

    .info-icon i {
        font-size: 1rem;
    }

    .info-value {
        font-size: 1rem;
    }
}

/* Map Section */
.map-section {
    padding: 3rem 0;
    background-color: #f8f9fa;
}

.map-section h3 {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: var(--skitch-black);
    margin-bottom: 2rem;
}

.map-container {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border: none;
}

.map-info {
    text-align: center;
    margin-top: 1.5rem;
    color: #666;
}

.map-info a {
    color: var(--skitch-red);
    text-decoration: none;
}

.map-info a:hover {
    text-decoration: underline;
}

/* New Footer - Skitch Footer */
.skitch-footer {
    background: #0a0a0a;
    color: var(--skitch-white);
    position: relative;
    overflow: hidden;
}

.skitch-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--skitch-red);
}

.skitch-footer-main {
    padding: 4rem 0 3rem;
    position: relative;
}

.skitch-footer-main .row {
    align-items: flex-start;
}

.skitch-footer-brand {
    margin-bottom: 0;
    height: 100%;
}

.skitch-footer-logo {
    max-height: 50px;
    width: auto;
    filter: brightness(0) invert(1);
    margin-bottom: 1.5rem;
}

.skitch-footer-brand-name {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--skitch-white);
    margin: 0 0 1.5rem 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.skitch-footer-tagline {
    color: #b0b0b0;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

.skitch-footer-email {
    margin-top: 1.5rem;
}

.skitch-email-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    color: var(--skitch-white);
    text-decoration: none;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}

.skitch-email-link i {
    color: var(--skitch-red);
    font-size: 1.5rem;
}

.skitch-email-link:hover {
    background: var(--skitch-red);
    border-color: var(--skitch-red);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(211,20,27,0.4);
    color: var(--skitch-white);
}

.skitch-email-link:hover i {
    color: var(--skitch-white);
}

.skitch-footer-nav,
.skitch-footer-products,
.skitch-footer-contact {
    margin-bottom: 0;
    height: 100%;
}

/* Ensure consistent spacing between sections */
.skitch-footer-nav + .skitch-footer-products {
    margin-top: 0;
}

.skitch-footer-heading {
    color: var(--skitch-white);
    margin-bottom: 1.25rem;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 0.75rem;
}

.skitch-footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 2px;
    background: var(--skitch-red);
}

.skitch-footer-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.skitch-footer-nav-list li {
    margin: 0;
    padding: 0;
}

.skitch-footer-nav-list a {
    color: #b0b0b0;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    font-size: 0.9rem;
    position: relative;
    line-height: 1.6;
    padding: 0.25rem 0;
}

.skitch-footer-nav-list a::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--skitch-red);
    transition: width 0.3s ease;
}

.skitch-footer-nav-list a:hover {
    color: var(--skitch-red);
    padding-left: 12px;
    transform: translateX(4px);
}

.skitch-footer-nav-list a:hover::before {
    width: 20px;
}

/* Improve grid spacing and alignment */
.skitch-footer-main .col-lg-3,
.skitch-footer-main .col-lg-2,
.skitch-footer-main .col-lg-5 {
    display: flex;
    flex-direction: column;
}

.skitch-footer-main .col-lg-3 > *,
.skitch-footer-main .col-lg-2 > *,
.skitch-footer-main .col-lg-5 > * {
    flex: 1;
}

.skitch-footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.skitch-contact-entry {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.5rem 0;
    transition: transform 0.3s ease;
}

.skitch-contact-entry:hover {
    transform: translateX(4px);
}

.skitch-contact-entry i {
    color: var(--skitch-red);
    font-size: 1.2rem;
    margin-top: 0.15rem;
    flex-shrink: 0;
    width: 24px;
    text-align: center;
}

.skitch-contact-entry > div {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    flex: 1;
}

.skitch-contact-entry span,
.skitch-contact-entry a {
    color: #b0b0b0;
    font-size: 0.9rem;
    line-height: 1.5;
    text-decoration: none;
    transition: color 0.3s ease;
}

.skitch-contact-entry a:hover {
    color: var(--skitch-red);
}

.skitch-footer-bar {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 1.5rem 0;
    background: rgba(0,0,0,0.4);
}

.skitch-footer-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    flex-direction: row;
}

@media (min-width: 992px) {
    .skitch-footer-bar-inner {
        flex-direction: row;
    }
    
    .skitch-copyright {
        order: 1;
    }
    
    .skitch-footer-legal {
        order: 2;
    }
    
    .skitch-footer-credit {
        order: 3;
    }
}

.skitch-copyright {
    color: #888;
    font-size: 0.85rem;
    margin: 0;
    order: 1;
}

.skitch-copyright strong {
    color: var(--skitch-white);
    font-weight: 700;
}

.skitch-footer-legal {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    order: 2;
}

.skitch-footer-legal a {
    color: #888;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.skitch-footer-legal a:hover {
    color: var(--skitch-red);
}

.skitch-sep {
    color: #555;
    font-size: 0.85rem;
}

.skitch-footer-credit {
    color: #888;
    font-size: 0.85rem;
    margin: 0;
    order: 3;
}

.skitch-footer-credit a {
    color: var(--skitch-red);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.skitch-footer-credit a:hover {
    color: var(--skitch-white);
    text-decoration: underline;
}

/* Footer Responsive Grid */
/* Large screens (lg) - 4 column layout */
@media (min-width: 992px) {
    .skitch-footer-main .col-lg-3 {
        flex: 0 0 25%;
        max-width: 25%;
    }
    
    .skitch-footer-main .col-lg-2 {
        flex: 0 0 16.666667%;
        max-width: 16.666667%;
    }
    
    .skitch-footer-main .col-lg-5 {
        flex: 0 0 41.666667%;
        max-width: 41.666667%;
    }
}

/* Medium screens (md) - 2x2 grid */
@media (min-width: 768px) and (max-width: 991.98px) {
    .skitch-footer-main {
        padding: 3.5rem 0 2.5rem;
    }
    
    .skitch-footer-main .row > div {
        margin-bottom: 2.5rem;
    }
    
    .skitch-footer-main .row > div:last-child {
        margin-bottom: 0;
    }
    
    /* Brand and Navigation side by side */
    .skitch-footer-main .col-md-6:first-child,
    .skitch-footer-main .col-md-3:first-child {
        margin-bottom: 2rem;
    }
    
    /* Contact takes full width on medium screens */
    .skitch-footer-main .col-md-12 {
        margin-top: 1rem;
    }
}

/* Small screens (sm) - 2 column grid */
@media (min-width: 576px) and (max-width: 767.98px) {
    .skitch-footer-main {
        padding: 3rem 0 2rem;
    }
    
    .skitch-footer-main .row > div {
        margin-bottom: 2.5rem;
    }
    
    .skitch-footer-main .row > div:last-child {
        margin-bottom: 0;
    }
    
    .skitch-footer-brand,
    .skitch-footer-nav,
    .skitch-footer-products,
    .skitch-footer-contact {
        text-align: center;
    }
    
    .skitch-footer-nav-list {
        display: inline-block;
        text-align: left;
    }
    
    .skitch-footer-contact-list {
        align-items: center;
    }
}

/* Extra small screens (xs) - Single column */
@media (max-width: 575.98px) {
    .skitch-footer-main {
        padding: 2.5rem 0 2rem;
    }
    
    .skitch-footer-main .row > div {
        margin-bottom: 2.5rem;
        text-align: center;
    }
    
    .skitch-footer-main .row > div:last-child {
        margin-bottom: 0;
    }
    
    .skitch-footer-brand,
    .skitch-footer-nav,
    .skitch-footer-products,
    .skitch-footer-contact {
        text-align: center;
    }
    
    .skitch-footer-nav-list {
        display: inline-block;
        text-align: left;
    }
    
    .skitch-footer-contact-list {
        align-items: center;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .skitch-footer-heading {
        text-align: center;
    }
    
    .skitch-footer-heading::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .skitch-footer-tagline {
        text-align: center;
        font-size: 0.85rem;
    }
    
    .skitch-footer-email {
        display: flex;
        justify-content: center;
    }
}

/* Improve footer bar responsiveness */
@media (max-width: 767.98px) {
    .skitch-footer-bar-inner {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .skitch-copyright,
    .skitch-footer-legal,
    .skitch-footer-credit {
        order: 0;
        width: 100%;
    }
    
    .skitch-footer-legal {
        justify-content: center;
    }
}

/* Contact Hero */
.contact-hero {
    background: linear-gradient(135deg, rgba(211,20,27,0.08) 0%, rgba(0,0,0,0.08) 100%);
    padding: 6rem 0 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(211,20,27,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0,0,0,0.08) 0%, transparent 50%);
    z-index: 1;
}

.contact-hero-content {
    position: relative;
    z-index: 2;
}

.contact-hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--skitch-black);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.contact-hero-content p {
    font-size: 1.25rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto 2rem;
    line-height: 1.8;
}

.product-inquiry-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--skitch-white);
    padding: 1rem 2rem;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    margin-top: 1rem;
    font-size: 1rem;
    color: var(--skitch-black);
}

.product-inquiry-badge i {
    color: var(--skitch-red);
    font-size: 1.25rem;
}

.product-inquiry-badge strong {
    color: var(--skitch-red);
    font-weight: 700;
}

/* Contact Section */
.contact-section {
    padding: 6rem 0;
    background-color: var(--skitch-white);
}

.contact-section .row {
    align-items: stretch;
}

/* Contact Info Card */
.contact-info-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    height: 100%;
    position: sticky;
    top: 100px;
}

.contact-info-card h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--skitch-black);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-intro {
    color: #666;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.contact-info-items {
    margin-bottom: 2.5rem;
}

.contact-info-items .row {
    margin-bottom: 0;
}

.contact-info-item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    padding: 1.25rem;
    background: rgba(255,255,255,0.6);
    border-radius: 10px;
    transition: all 0.3s ease;
    margin-bottom: 0;
}

.contact-info-item:hover {
    background: rgba(255,255,255,0.9);
    transform: translateX(5px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--skitch-red) 0%, #b01015 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(211,20,27,0.3);
}

.contact-icon i {
    color: var(--skitch-white);
    font-size: 1.25rem;
}

.contact-details h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--skitch-black);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-details p {
    color: #666;
    margin: 0;
    line-height: 1.6;
}

.contact-details a {
    color: var(--skitch-red);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: #b01015;
    text-decoration: underline;
}

/* Contact Form Wrapper */
.contact-form-wrapper {
    background: var(--skitch-white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.form-submit-wrapper {
    margin-top: auto;
    padding-top: 1.5rem;
}

.contact-form-wrapper h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--skitch-black);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-intro {
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.contact-form {
    margin-top: 1.5rem;
}

.form-group {
    margin-bottom: 1.75rem;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
    color: var(--skitch-black);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group label i {
    color: var(--skitch-red);
    font-size: 1.1rem;
}

/* Bootstrap Form Control Overrides - Specific to Contact Form */
.contact-form .form-control {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: #f8f9fa;
    color: var(--skitch-black);
}

.contact-form .form-control:focus {
    outline: none;
    border-color: var(--skitch-red);
    background-color: var(--skitch-white);
    box-shadow: 0 0 0 4px rgba(211,20,27,0.1);
}

.contact-form .form-control::placeholder {
    color: #999;
    opacity: 0.7;
}

/* Bootstrap form controls work by default - only override in contact form */

textarea.form-control {
    resize: vertical;
    min-height: 150px;
    font-family: inherit;
}

.btn-submit {
    background: linear-gradient(135deg, var(--skitch-red) 0%, #b01015 100%);
    color: var(--skitch-white);
    border: none;
    padding: 1.25rem 3rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    box-shadow: 0 4px 15px rgba(211,20,27,0.3);
}

.btn-submit:hover {
    background: linear-gradient(135deg, #b01015 0%, var(--skitch-red) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(211,20,27,0.4);
}

.btn-submit:active {
    transform: translateY(0);
}

.alert {
    padding: 1.25rem 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
}

.alert i {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.alert-success,
.form-alert.alert-success {
    background-color: #d4edda;
    color: #155724;
    border: 2px solid #c3e6cb;
}

.alert-success i,
.form-alert.alert-success i {
    color: #28a745;
}

.alert-error,
.form-alert.alert-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 2px solid #f5c6cb;
}

.alert-error i,
.form-alert.alert-error i {
    color: #dc3545;
}

.form-control.is-invalid {
    border-color: #dc3545;
    box-shadow: 0 0 0 4px rgba(220, 53, 69, 0.1);
}

/* Contact Map Section */
.contact-map-section {
    padding: 5rem 0;
    background-color: #f8f9fa;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--skitch-black);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
}

.contact-map-section .map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* About Us & Policies */
.content-section {
    padding: 5rem 0;
    background-color: var(--skitch-white);
}

.content-section h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--skitch-black);
    margin-bottom: 2rem;
}

.content-section h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--skitch-black);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.content-section p {
    margin-bottom: 1rem;
    color: #666;
    line-height: 1.8;
}

.content-section ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.content-section li {
    margin-bottom: 0.5rem;
    color: #666;
}

/* Policies Page Styling */
.policies-hero {
    background: linear-gradient(135deg, rgba(211,20,27,0.08) 0%, rgba(0,0,0,0.08) 100%);
    padding: 5rem 0 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.policies-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(211,20,27,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0,0,0,0.08) 0%, transparent 50%);
    z-index: 1;
}

.policies-hero-content {
    position: relative;
    z-index: 2;
}

.policies-hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--skitch-black);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.policies-hero-content p {
    font-size: 1.25rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

.policies-content {
    padding: 4rem 0;
    background-color: var(--skitch-white);
}

.policies-content h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--skitch-black);
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
    border-left: 4px solid var(--skitch-red);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.policies-content h2:first-of-type {
    margin-top: 0;
}

.policies-content p {
    margin-bottom: 1.25rem;
    color: #555;
    line-height: 1.8;
    font-size: 1.05rem;
}

.policies-content ul {
    margin-left: 0;
    margin-bottom: 2rem;
    list-style: none;
    padding: 0;
}

.policies-content ul li {
    margin-bottom: 0.75rem;
    color: #555;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.7;
    font-size: 1.05rem;
}

.policies-content ul li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--skitch-red);
    font-weight: 700;
}

.policies-content ul li strong {
    color: var(--skitch-black);
    font-weight: 700;
}

.policies-content a {
    color: var(--skitch-red);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.policies-content a:hover {
    color: #b01015;
    text-decoration: underline;
}

/* About Us Hero */
.about-hero {
    background: linear-gradient(135deg, rgba(211,20,27,0.08) 0%, rgba(0,0,0,0.08) 100%);
    padding: 6rem 0 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(211,20,27,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0,0,0,0.08) 0%, transparent 50%);
    z-index: 1;
}

.about-hero-content {
    position: relative;
    z-index: 2;
}

.about-hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--skitch-black);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.about-hero-subtitle {
    font-size: 1.5rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* About Section Styles */
.about-section {
    margin-bottom: 4rem;
}

.about-content-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-content-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.section-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--skitch-red) 0%, #b01015 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(211,20,27,0.3);
}

.section-icon i {
    color: var(--skitch-white);
    font-size: 2rem;
}

.about-content-card h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--skitch-black);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.about-content-card p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin: 0;
}

.section-title-with-icon {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--skitch-black);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
}

.section-title-with-icon i {
    color: var(--skitch-red);
    font-size: 2.5rem;
}

.section-intro {
    font-size: 1.2rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Product Series Cards */
.product-series-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    height: 100%;
    border: 2px solid #f0f0f0;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.product-series-card:hover {
    border-color: var(--skitch-red);
    box-shadow: 0 8px 30px rgba(211,20,27,0.15);
    transform: translateY(-5px);
}

.series-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #e0e0e0;
}

.series-header h3 {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--skitch-black);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.series-badge {
    background: var(--skitch-red);
    color: var(--skitch-white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.series-description {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1.05rem;
}

.series-products {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.series-products li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: #555;
    line-height: 1.6;
}

.series-products li i {
    color: var(--skitch-red);
    font-size: 1.1rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.series-features {
    background: rgba(211,20,27,0.05);
    padding: 1.5rem;
    border-radius: 12px;
    margin-top: auto;
}

.series-features h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--skitch-black);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.series-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.series-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: #555;
    line-height: 1.6;
}

.series-features li i {
    color: var(--skitch-red);
    font-size: 1.1rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

/* Feature Cards */
.feature-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(211,20,27,0.15);
    border-color: var(--skitch-red);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--skitch-red) 0%, #b01015 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 15px rgba(211,20,27,0.3);
}

.feature-icon i {
    color: var(--skitch-white);
    font-size: 2.5rem;
}

.feature-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--skitch-black);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.feature-card p {
    color: #666;
    line-height: 1.7;
    margin: 0;
    font-size: 0.95rem;
    flex-grow: 1;
}

/* Location Card */
.location-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 2px solid #f0f0f0;
    transition: all 0.3s ease;
}

.location-card:hover {
    border-color: var(--skitch-red);
    box-shadow: 0 8px 30px rgba(211,20,27,0.15);
}

.location-card .section-icon {
    margin-bottom: 1.5rem;
}

.location-card h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--skitch-black);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.location-card p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.location-address {
    font-size: 1.25rem;
    color: var(--skitch-black);
    margin: 1.5rem 0;
    line-height: 1.8;
}

.btn-contact-us {
    background: linear-gradient(135deg, var(--skitch-red) 0%, #b01015 100%);
    color: var(--skitch-white);
    padding: 1.25rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(211,20,27,0.3);
}

.btn-contact-us:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(211,20,27,0.4);
    color: var(--skitch-white);
}

/* Responsive */
@media (max-width: 992px) {
    .hero-section {
        min-height: 100vh;
        height: auto;
        padding: 2rem 0;
    }
    
    .hero-background {
        background-attachment: scroll;
    }
    
    .hero-buttons {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 1rem;
        justify-content: center;
    }
    
    .btn-hero {
        flex: 1 1 auto;
        min-width: 140px;
        max-width: 200px;
        justify-content: center;
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 0.75rem 0;
    }
    
    .navbar-brand img {
        max-height: 50px;
    }
    
    .hero-section {
        min-height: 100vh;
        height: auto;
        padding: 2rem 0;
    }
    
    .hero-background {
        background-attachment: scroll;
    }
    
    .products-section {
        padding: 4rem 0;
    }
    
    .products-header {
        margin-bottom: 3rem;
    }
    
    .products-title {
        font-size: 2rem;
    }
    
    .products-subtitle {
        font-size: 1.1rem;
    }
    
    #productsCarousel {
        padding: 0 0.5rem;
    }
    
    .product-carousel-card-wrapper {
        min-height: 550px;
        padding: 1rem 0;
    }
    
    .product-card {
        max-width: 100%;
    }
    
    /* Hide desktop controls on mobile */
    #productsCarousel .carousel-control-desktop {
        display: none;
    }
    
    /* Show mobile controls (integrated with indicators) */
    #productsCarousel .carousel-control-mobile {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Update indicators wrapper spacing on mobile */
    .carousel-indicators-wrapper {
        margin-top: 2rem;
    }
    
    #productsCarousel .carousel-indicators {
        margin: 0;
    }
    
    .product-image-wrapper {
        padding: 1.25rem;
        min-height: 250px;
    }
    
    .product-image {
        max-height: none;
    }
    
    .product-body {
        padding: 1.25rem;
    }
    
    .product-title {
        font-size: 1.5rem;
    }
    
    .product-actions {
        flex-direction: column;
    }
    
    .btn-download,
    .btn-order {
        width: 100%;
        justify-content: center;
    }
    
    .btn-download span,
    .btn-order span {
        display: inline;
    }
    
    .map-container iframe {
        height: 300px;
    }
    
    .skitch-footer-main {
        padding: 3rem 0 2rem;
    }
    
    .skitch-footer-brand,
    .skitch-footer-nav,
    .skitch-footer-products,
    .skitch-footer-contact {
        margin-bottom: 2.5rem;
        text-align: center;
    }
    
    .skitch-footer-heading::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .skitch-footer-email {
        text-align: center;
    }
    
    .skitch-email-link {
        justify-content: center;
    }
    
    .skitch-contact-entry {
        justify-content: center;
        text-align: center;
    }
    
    .skitch-contact-entry > div {
        align-items: center;
    }
    
    .skitch-footer-bar-inner {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .skitch-copyright,
    .skitch-footer-legal,
    .skitch-footer-credit {
        order: 0;
    }
    
    .skitch-footer-legal {
        justify-content: center;
    }
    
    .policies-hero {
        padding: 3rem 0 2rem;
    }
    
    .policies-hero-content h1 {
        font-size: 2rem;
    }
    
    .policies-content {
        padding: 3rem 0;
    }
    
    .policies-content h1 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .policies-content h2 {
        font-size: 1.5rem;
        margin-top: 2rem;
        padding-left: 1rem;
    }
    
    .contact-info-card {
        position: static;
        margin-bottom: 2rem;
    }
    
    .contact-info-item {
        padding: 1rem;
    }
    
    .contact-form-wrapper {
        padding: 2rem 1.5rem;
    }
    
    .form-submit-wrapper {
        padding-top: 1rem;
    }
    
    .contact-hero {
        padding: 3rem 0 2rem;
    }
    
    .contact-hero-content h1 {
        font-size: 2rem;
    }
    
    .product-inquiry-badge {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .about-hero {
        padding: 4rem 0 3rem;
    }
    
    .about-hero-content h1 {
        font-size: 2rem;
    }
    
    .about-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .about-content-card {
        padding: 2rem;
        margin-bottom: 2rem;
    }
    
    .section-title-with-icon {
        font-size: 1.75rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .section-title-with-icon i {
        font-size: 2rem;
    }
    
    .section-intro {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .location-card .col-lg-4 {
        margin-top: 1.5rem;
    }
    
    .product-series-card {
        padding: 2rem;
        margin-bottom: 2rem;
    }
    
    .series-features {
        margin-top: 1.5rem;
    }
    
    .series-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .feature-card {
        padding: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .location-card {
        padding: 2rem;
    }
    
    .btn-contact-us {
        width: 100%;
        justify-content: center;
    }
}

/* Bootstrap Compatibility - Let Bootstrap handle core classes */
/* Only add specific overrides where absolutely necessary */


/* Bootstrap utilities are handled by Bootstrap - no need to redefine */

/* Ensure Bootstrap icons display correctly */
[class^="bi-"]::before,
[class*=" bi-"]::before {
    display: inline-block;
    font-family: "bootstrap-icons" !important;
    font-style: normal;
    font-weight: normal !important;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    vertical-align: -0.125em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Smooth scrolling for better UX */
html {
    scroll-behavior: smooth;
}

/* Ensure images are responsive */
img {
    max-width: 100%;
    height: auto;
}

/* Better focus states for accessibility */
a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus {
    outline: 2px solid var(--skitch-red);
    outline-offset: 2px;
}

/* Print styles - Scoped to avoid conflicts */
@media print {
    .site-header,
    .skitch-footer,
    .hero-buttons,
    .btn-hero,
    .btn-download,
    .btn-order,
    .btn-submit,
    .btn-contact-us,
    .site-header .navbar {
        display: none !important;
    }
}

