/* ============================================
   PETROFEU ÉQUIPEMENTS - Professional Website
   Modern, Animated, Fire Safety Theme
   Updated: 2025-11-29 - New Hero Background
   ============================================ */

/* ===== CSS Variables ===== */
:root {
    /* Colors */
    --primary: #E63946;
    --primary-dark: #B91C1C;
    --primary-light: #FCA5A5;
    --secondary: #0A0A0A;
    --secondary-light: #1a1a1a;
    --accent: #F97316;
    --accent-light: #FDBA74;
    
    /* Neutrals */
    --white: #FFFFFF;
    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray-400: #9CA3AF;
    --gray-500: #6B7280;
    --gray-600: #4B5563;
    --gray-700: #374151;
    --gray-800: #1F2937;
    --gray-900: #111827;
    --black: #0A0A0A;
    
    /* Gradients */
    --gradient-fire: linear-gradient(135deg, #E63946 0%, #F97316 50%, #FBBF24 100%);
    --gradient-dark: linear-gradient(135deg, #0A0A0A 0%, #000000 100%);
    --gradient-overlay: linear-gradient(180deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.8) 100%);
    
    /* Typography */
    --font-display: 'Bebas Neue', sans-serif;
    --font-body: 'Montserrat', sans-serif;
    
    /* Spacing */
    --section-padding: 100px 0;
    --container-width: 1200px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1);
    --shadow-2xl: 0 25px 50px -12px rgba(0,0,0,0.25);
    --shadow-fire: 0 0 40px rgba(230, 57, 70, 0.3);
}

/* ===== Reset & Base ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.6;
    color: var(--gray-700);
    background-color: var(--white);
    overflow-x: hidden;
    position: relative;
    width: 100%;
    max-width: 100vw;
}

/* Global - prevent scrollbars on all sections */
body > section,
body > main > section,
#outer-wrap section {
    overflow: visible !important;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

body > section::-webkit-scrollbar,
body > main > section::-webkit-scrollbar {
    display: none;
}

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

ul {
    list-style: none;
}

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

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

.section {
    padding: var(--section-padding);
    position: relative;
    z-index: 1;
    background: var(--white);
    overflow: visible;
}

/* ===== Preloader ===== */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.5s, visibility 0.5s;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader {
    text-align: center;
}

.fire-icon {
    font-size: 4rem;
    color: var(--primary);
    animation: pulse 1.5s ease-in-out infinite;
}

.loader-text {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--white);
    margin-top: 1rem;
    letter-spacing: 0.5em;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

/* ===== Navigation ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition-normal);
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    box-shadow: var(--shadow-lg);
}

.nav-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-logo .logo-img {
    height: 45px;
    width: auto;
    object-fit: contain;
}

.nav-logo span {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--white);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    color: var(--white);
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition-normal);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-btn {
    background: var(--primary);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-normal);
}

.nav-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-fire);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
    background: rgba(230, 57, 70, 0.9);
    border-radius: 8px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 3px;
    background: var(--white);
    transition: var(--transition-normal);
    border-radius: 2px;
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: url('images/hero-bg.jpg') center center / cover no-repeat;
    padding: 80px 20px 30px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(10, 10, 10, 0.88) 0%,
        rgba(10, 10, 10, 0.8) 40%,
        rgba(230, 57, 70, 0.75) 100%
    );
    z-index: 1;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-video {
    display: none;
}

.hero-overlay {
    display: none;
}

.hero-content {
    text-align: center;
    color: var(--white);
    max-width: 900px;
    padding: 0 20px;
    z-index: 10;
    position: relative;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 15px;
    border: 2px solid rgba(255,255,255,0.3);
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero-badge i {
    color: #FBBF24;
    font-size: 1.1rem;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 10vw, 6.5rem);
    line-height: 0.95;
    margin-bottom: 15px;
}

.title-line {
    display: block;
}

.title-line.highlight {
    color: #FBBF24;
    text-shadow: 0 0 30px rgba(251, 191, 36, 0.5);
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.4rem);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 12px;
    color: #FBBF24;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero-description {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 30px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: var(--transition-normal);
}

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

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-fire);
}

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

.btn-outline:hover {
    background: var(--white);
    color: var(--secondary);
    transform: translateY(-3px);
}

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

.btn-white:hover {
    background: var(--gray-100);
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    color: #FBBF24;
    text-shadow: 0 0 15px rgba(251, 191, 36, 0.4);
}

.stat-number::after {
    content: '+';
}

.stat-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.stat-divider {
    width: 1px;
    height: 35px;
    background: rgba(255,255,255,0.3);
}

/* Scroll Indicator - Hidden to avoid overlap */
.scroll-indicator {
    display: none;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--white);
    border-radius: 20px;
    position: relative;
}

.wheel {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 10px;
    background: var(--white);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% { opacity: 1; top: 10px; }
    100% { opacity: 0; top: 30px; }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* ===== Section Headers ===== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header.light .section-title,
.section-header.light .section-tag {
    color: var(--white);
}

.section-tag {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--primary);
    margin-bottom: 15px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--secondary);
    margin-bottom: 20px;
}

.section-line {
    width: 80px;
    height: 4px;
    background: var(--gradient-fire);
    margin: 0 auto;
    border-radius: 2px;
}

.section-subtitle {
    max-width: 600px;
    margin: 20px auto 0;
    font-size: 1.1rem;
    color: var(--gray-600);
}

/* ===== About Section ===== */
.about {
    background: var(--gray-50);
    position: relative;
    z-index: 1;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-content h3 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 20px;
}

.about-content .lead {
    font-size: 1.2rem;
    color: var(--gray-700);
    margin-bottom: 20px;
    font-weight: 500;
}

.about-content p {
    margin-bottom: 30px;
    color: var(--gray-600);
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-fire);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.feature-text h4 {
    font-size: 1rem;
    color: var(--secondary);
    margin-bottom: 3px;
}

.feature-text p {
    font-size: 0.9rem;
    color: var(--gray-500);
    margin: 0;
}

/* About Images */
.about-images {
    position: relative;
}

.image-stack {
    position: relative;
    height: 500px;
}

.stack-img {
    position: absolute;
    border-radius: 20px;
    box-shadow: var(--shadow-2xl);
    object-fit: cover;
}

.stack-img.img-1 {
    width: 70%;
    height: 350px;
    top: 0;
    left: 0;
    z-index: 2;
}

.stack-img.img-2 {
    width: 60%;
    height: 300px;
    bottom: 0;
    right: 0;
    z-index: 1;
}

.experience-badge {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-fire);
    color: var(--white);
    padding: 20px 30px;
    border-radius: 15px;
    text-align: center;
    z-index: 3;
    box-shadow: var(--shadow-fire);
}

.exp-number {
    display: block;
    font-family: var(--font-display);
    font-size: 3rem;
    line-height: 1;
}

.exp-text {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* ===== Mission Banner ===== */
.mission-banner {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
    background: linear-gradient(135deg, #0A0A0A 0%, #000000 100%);
    z-index: 1;
}

.mission-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Simple hexagon grid pattern */
    background: url("data:image/svg+xml,%3Csvg width='50' height='43' viewBox='0 0 50 43' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23ffffff' stroke-opacity='0.04' stroke-width='1'%3E%3Cpath d='M25 0l25 14.5v14L25 43 0 28.5v-14z'/%3E%3C/g%3E%3C/svg%3E");
    z-index: 0;
}

.mission-banner::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(230, 57, 70, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.mission-bg {
    display: none;
}

.mission-content {
    position: relative;
    z-index: 1;
}

.mission-content i {
    font-size: 3.5rem;
    color: #FBBF24;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 20px rgba(251, 191, 36, 0.5));
}

.mission-content h2 {
    font-family: var(--font-display);
    font-size: 3rem;
    margin-bottom: 15px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.mission-content p {
    font-size: 1.4rem;
    opacity: 1;
    color: rgba(255,255,255,0.9);
}

.mission-content {
    text-align: center;
    color: var(--white);
}

.mission-content i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.mission-content h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.mission-content p {
    font-size: 1.3rem;
    opacity: 0.9;
}

/* ===== Services Section ===== */
.services {
    background: var(--white);
    position: relative;
    z-index: 1;
}

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

.service-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-fire);
    transform: scaleX(0);
    transition: var(--transition-normal);
}

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

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

.service-card.featured {
    background: var(--gradient-dark);
    color: var(--white);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--primary);
    color: var(--white);
    padding: 5px 40px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    transform: rotate(45deg);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-fire);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: var(--white);
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--secondary);
}

.service-card.featured h3 {
    color: var(--white);
}

.service-card p {
    font-size: 0.95rem;
    margin-bottom: 20px;
    color: var(--gray-600);
}

.service-card.featured p {
    color: var(--gray-300);
}

.service-list {
    text-align: left;
}

.service-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.9rem;
    color: var(--gray-600);
}

.service-card.featured .service-list li {
    color: var(--gray-300);
}

.service-list i {
    color: var(--primary);
    font-size: 0.8rem;
}

/* Service Download Button */
.service-download {
    text-align: center;
    margin-top: 50px;
}

.btn-download {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--white);
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(230, 57, 70, 0.3);
    transition: all 0.3s ease;
}

.btn-download:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(230, 57, 70, 0.4);
}

.btn-download i {
    font-size: 1.3rem;
}

/* ===== Values Section ===== */
.values {
    background: linear-gradient(160deg, #0A0A0A 0%, #000000 50%, #0A0A0A 100%);
    position: relative;
    overflow: visible;
    z-index: 1;
}

.values::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Simple dots grid pattern */
    background: url("data:image/svg+xml,%3Csvg width='30' height='30' viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='15' cy='15' r='1.5' fill='%23ffffff' fill-opacity='0.04'/%3E%3C/svg%3E");
}

.values::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(230, 57, 70, 0.2) 0%, transparent 60%);
    border-radius: 50%;
    z-index: 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}

.value-card {
    background: linear-gradient(145deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.02) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition-normal);
    position: relative;
    overflow: visible;
    z-index: 1;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #E63946, #FBBF24);
    opacity: 0;
    transition: var(--transition-normal);
}

.value-card:hover {
    background: linear-gradient(145deg, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0.05) 100%);
    transform: translateY(-10px);
    border-color: rgba(230, 57, 70, 0.5);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.value-card:hover::before {
    opacity: 1;
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #E63946 0%, #FBBF24 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: var(--white);
    box-shadow: 0 10px 30px rgba(230, 57, 70, 0.4);
}

.value-card h3 {
    font-size: 1.4rem;
    color: var(--white);
    margin-bottom: 12px;
    font-weight: 700;
}

.value-card p {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
}

/* ===== Safety Rules Section ===== */
.safety-rules {
    background: var(--gray-50);
    position: relative;
    z-index: 1;
}

.rules-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.rule-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    position: relative;
    transition: var(--transition-normal);
}

.rule-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-2xl);
}

.rule-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-family: var(--font-display);
    font-size: 3rem;
    color: #E63946;
    opacity: 0.3;
    line-height: 1;
}

.rule-icon {
    width: 70px;
    height: 70px;
    background: var(--primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: var(--white);
}

.rule-card h3 {
    font-size: 1.2rem;
    color: var(--secondary);
    margin-bottom: 10px;
}

.rule-card p {
    font-size: 0.95rem;
    color: var(--gray-600);
}

/* ===== Gallery Section ===== */
.gallery {
    background: var(--white);
    position: relative;
    z-index: 1;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 1;
}

.gallery-item.large {
    grid-column: span 1;
    grid-row: span 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(230, 57, 70, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-normal);
}

.gallery-overlay i {
    color: var(--white);
    font-size: 2rem;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

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

/* ===== Testimonial Section ===== */
.testimonial {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(135deg, #0A0A0A 0%, #000000 100%);
    overflow: visible;
    z-index: 1;
}

.testimonial::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Simple plus/cross pattern */
    background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23ffffff' stroke-opacity='0.03' stroke-width='1'%3E%3Cpath d='M20 10v20M10 20h20'/%3E%3C/g%3E%3C/svg%3E");
    z-index: 0;
}

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

/* Testimonials Carousel */
.testimonials-wrapper {
    position: relative;
    overflow: hidden;
    padding: 20px 0;
    /* Break out of container to full width */
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(-50vw + 50%);
    left: 0;
    right: 0;
}

.testimonials-fade {
    display: none;
}

.testimonials-track {
    display: flex;
    gap: 30px;
    animation: scrollTestimonials 30s linear infinite;
    width: max-content;
}

.testimonials-track:hover {
    animation-play-state: paused;
}

/* Faster animation on tablets */
@media (max-width: 992px) {
    .testimonials-track {
        animation-duration: 12s;
        gap: 15px;
    }
}

/* Even faster on mobile */
@media (max-width: 576px) {
    .testimonials-track {
        animation-duration: 8s;
        gap: 10px;
    }
}

@keyframes scrollTestimonials {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.testimonial-card {
    flex-shrink: 0;
    width: 380px;
    background: linear-gradient(145deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.03) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: rgba(230, 57, 70, 0.5);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.testimonial-card .stars {
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
}

.testimonial-card .stars i {
    color: #FBBF24;
    font-size: 1rem;
}

.testimonial-card blockquote {
    font-size: 0.95rem;
    font-style: italic;
    line-height: 1.7;
    color: rgba(255,255,255,0.9);
    margin-bottom: 25px;
    min-height: 100px;
}

.testimonial-footer {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
}

.testimonial-card .testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-card .author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #E63946, #FBBF24);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
}

.testimonial-card .author-info {
    text-align: left;
}

.testimonial-card .author-info h4 {
    font-size: 1rem;
    margin-bottom: 3px;
    font-weight: 700;
    color: #fff;
}

.testimonial-card .author-info p {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.6);
}

/* ===== Partners Section ===== */
.partners {
    background: var(--white);
    position: relative;
    z-index: 1;
}

.partners-marquee {
    display: flex;
    overflow: hidden;
    padding: 30px 0;
    background: var(--gray-50);
    border-radius: 15px;
}

.partners-track {
    display: flex;
    align-items: center;
    gap: 50px;
    padding: 15px 0;
    animation: scrollPartners 45s linear infinite;
    width: max-content;
}

.partners-marquee:hover .partners-track {
    animation-play-state: paused;
}

@keyframes scrollPartners {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Faster scrolling on mobile */
@media (max-width: 992px) {
    .partners-track {
        animation-duration: 30s;
        gap: 35px;
    }
    
    .partner-item img {
        height: 60px;
        max-width: 120px;
    }
    
    .partner-item span {
        font-size: 0.7rem;
    }
}

@media (max-width: 576px) {
    .partners-track {
        animation-duration: 20s;
        gap: 25px;
    }
    
    .partner-item {
        min-width: 100px;
        padding: 12px 18px;
    }
    
    .partner-item img {
        height: 50px;
        max-width: 100px;
    }
    
    .partner-item span {
        font-size: 0.65rem;
    }
}

.partner-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 20px 30px;
    min-width: 150px;
    transition: var(--transition-normal);
    flex-shrink: 0;
}

.partner-item img {
    height: 80px;
    width: auto;
    max-width: 160px;
    object-fit: contain;
    transition: var(--transition-normal);
}

.partner-item span {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    text-align: center;
}

.partner-item:hover img {
    transform: scale(1.1);
}

.partner-item:hover span {
    color: var(--primary);
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ===== CTA Section ===== */
.cta {
    position: relative;
    padding: 100px 0;
    z-index: 1;
    text-align: center;
    background: linear-gradient(135deg, #0A0A0A 0%, #000000 100%);
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Simple diagonal lines pattern */
    background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23ffffff' stroke-opacity='0.03' stroke-width='1'%3E%3Cpath d='M0 40L40 0M-10 10L10 -10M30 50L50 30'/%3E%3C/g%3E%3C/svg%3E");
    z-index: 0;
}

.cta::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(230, 57, 70, 0.15) 0%, transparent 50%);
    border-radius: 50%;
    z-index: 0;
}

.cta-bg {
    display: none;
}

.cta-content {
    color: var(--white);
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-family: var(--font-display);
    font-size: 3.5rem;
    margin-bottom: 20px;
    background: linear-gradient(90deg, #fff, #FBBF24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 35px;
    color: rgba(255,255,255,0.85);
    line-height: 1.7;
}

.cta .btn-white {
    background: linear-gradient(135deg, #fff 0%, #f0f0f0 100%);
    color: #E63946;
    padding: 16px 40px;
    font-size: 1.05rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.cta .btn-white:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

/* ===== Contact Section ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--secondary);
    margin-bottom: 15px;
}

.contact-info > p {
    color: var(--gray-600);
    margin-bottom: 30px;
}

.info-items {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 30px;
}

.info-item {
    display: flex;
    gap: 15px;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-fire);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.info-content h4 {
    font-size: 1rem;
    color: var(--secondary);
    margin-bottom: 5px;
}

.info-content p {
    font-size: 0.95rem;
    color: var(--gray-600);
}

.info-content a {
    color: var(--gray-600);
}

.info-content a:hover {
    color: var(--primary);
}

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

.social-link {
    width: 45px;
    height: 45px;
    background: var(--gray-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-600);
    font-size: 1.1rem;
    transition: var(--transition-normal);
}

.social-link:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-xl);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

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

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid var(--gray-200);
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition-normal);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(230, 57, 70, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* ===== Map Section ===== */
.map-section {
    height: 400px;
}

.map-section iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(100%);
    transition: var(--transition-normal);
}

.map-section iframe:hover {
    filter: grayscale(0%);
}

@media (max-width: 768px) {
    .map-section {
        height: 350px;
    }
}

@media (max-width: 480px) {
    .map-section {
        height: 300px;
    }
}

/* ===== Footer ===== */
.footer {
    background: #0A0A0A;
    padding: 80px 0 0;
    color: var(--gray-400);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo .logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.footer-logo span {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--white);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.footer-brand p {
    font-size: 0.95rem;
    line-height: 1.8;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 0.95rem;
    transition: var(--transition-normal);
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.footer-contact i {
    color: var(--primary);
}

.footer-app-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary);
    color: var(--white);
    padding: 12px 25px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 15px;
    transition: var(--transition-normal);
}

.footer-app-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding: 25px 0;
}

.footer-bottom p {
    font-size: 0.9rem;
}

/* ===== Back to Top ===== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-5px);
}

/* ===== Lightbox ===== */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 3rem;
    color: var(--white);
    background: none;
    border: none;
    cursor: pointer;
    transition: var(--transition-normal);
}

.lightbox-close:hover {
    color: var(--primary);
    transform: rotate(90deg);
}

.lightbox-img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
}

/* ===== Responsive Design ===== */

/* Large tablets and small desktops */
@media (max-width: 1200px) {
    .services-grid,
    .values-grid,
    .rules-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .gallery-item.large {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    .partners-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Tablets */
@media (max-width: 992px) {
    /* Navigation */
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--secondary);
        flex-direction: column;
        padding: 100px 30px;
        gap: 20px;
        transition: var(--transition-normal);
        z-index: 1000;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-toggle {
        display: flex !important;
        z-index: 1001;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -6px);
    }
    
    .nav-logo span {
        font-size: 1.1rem;
    }
    
    .nav-logo .logo-img {
        height: 35px;
    }
    
    /* Ensure menu is hidden by default on tablet/mobile */
    .nav-menu {
        display: flex;
    }
    
    /* Hero */
    .hero {
        height: auto;
        min-height: 100vh;
        padding: 100px 20px 50px;
    }
    
    .hero-title {
        font-size: clamp(2.5rem, 8vw, 4rem);
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    /* About */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-images {
        order: 1; /* Keep images BELOW text on mobile */
    }
    
    .about-content {
        order: 0; /* Text first */
    }
    
    .image-stack {
        height: 350px;
    }
    
    /* Contact */
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .footer-logo span {
        font-size: 1rem;
    }
    
    /* Partners */
    .partners-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    /* Testimonials */
    .testimonial-card {
        min-width: 320px;
        padding: 25px;
        margin: 0 10px;
    }
}

/* Mobile landscape / small tablets */
@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
    }
    
    /* Hero Stats */
    .hero-stats {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 15px;
        justify-content: center;
    }
    
    .stat-item {
        flex: 1 1 80px;
        min-width: 80px;
    }
    
    .stat-number {
        font-size: 1.6rem;
    }
    
    .stat-label {
        font-size: 0.6rem;
    }
    
    .stat-divider {
        display: none;
    }
    
    /* About section - fix image layout */
    .about {
        padding-bottom: 50px;
    }
    
    .image-stack {
        height: auto;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    
    .stack-img {
        position: relative !important;
        width: 100% !important;
        height: 200px !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
    }
    
    .experience-badge {
        position: relative;
        left: auto;
        bottom: auto;
        transform: none;
        margin: 20px auto 0;
        width: fit-content;
    }
    
    /* Grids */
    .services-grid,
    .values-grid,
    .rules-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .gallery-item.large {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    /* Form */
    .form-row {
        grid-template-columns: 1fr;
    }
    
    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .footer-logo span {
        font-size: 1.1rem;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-contact p {
        justify-content: center;
    }
    
    /* Partners */
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .partner-logo {
        padding: 15px;
    }
    
    /* Mission Banner */
    .mission-content h2 {
        font-size: 2.5rem;
    }
    
    .mission-content p {
        font-size: 1.1rem;
    }
    
    /* CTA Section */
    .cta-content h2 {
        font-size: 2.5rem;
    }
    
    /* Testimonials */
    .testimonial-card {
        min-width: 280px;
        padding: 20px;
        margin: 0 8px;
    }
    
    .testimonial-card p {
        font-size: 0.95rem;
    }
    
    /* Rules */
    .rule-card {
        padding: 25px 20px;
    }
    
    .rule-number {
        font-size: 2.5rem;
    }
    
    /* Values */
    .value-card {
        padding: 30px 20px;
    }
    
    /* Services */
    .service-card {
        padding: 30px 20px;
    }
}

/* Mobile portrait */
@media (max-width: 576px) {
    /* PREVENT HORIZONTAL SCROLL */
    html, body {
        overflow-x: hidden !important;
        max-width: 100vw !important;
        width: 100% !important;
    }
    
    * {
        max-width: 100vw;
    }
    
    .container {
        padding: 0 15px;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    /* Navbar */
    .navbar {
        padding: 10px 0;
        width: 100%;
        max-width: 100vw;
    }
    
    .nav-container {
        padding: 0 12px;
        width: 100%;
        max-width: 100%;
    }
    
    .nav-toggle {
        display: flex !important;
    }
    
    /* Show company name on mobile */
    .nav-logo {
        display: flex !important;
        align-items: center;
        gap: 8px;
        flex-shrink: 1;
        min-width: 0;
    }
    
    .nav-logo span {
        display: block !important;
        font-size: 0.85rem;
        max-width: 180px;
        line-height: 1.2;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        font-weight: 600;
    }
    
    .nav-logo .logo-img {
        height: 32px;
        flex-shrink: 0;
    }
    
    /* Back to top button */
    .back-to-top {
        right: 15px;
        bottom: 15px;
    }
    
    /* Hero */
    .hero {
        padding: 90px 15px 40px;
    }
    
    .hero-badge {
        padding: 8px 15px;
        font-size: 0.75rem;
    }
    
    .hero-title {
        font-size: clamp(2rem, 10vw, 3rem);
        line-height: 1;
        margin-bottom: 10px;
    }
    
    .hero-subtitle {
        font-size: 0.85rem;
        letter-spacing: 0.1em;
        margin-bottom: 10px;
    }
    
    .hero-description {
        font-size: 0.9rem;
        margin-bottom: 20px;
        line-height: 1.6;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 10px;
        margin-bottom: 25px;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
        padding: 12px 25px;
        font-size: 0.9rem;
    }
    
    .hero-stats {
        gap: 10px;
        margin-top: 5px;
    }
    
    .stat-item {
        flex: 0 1 90px;
    }
    
    .stat-number {
        font-size: 1.4rem;
    }
    
    .stat-label {
        font-size: 0.55rem;
        letter-spacing: 0.03em;
    }
    
    /* Gallery - Keep 2 columns on mobile */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    
    .gallery-item.large {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    /* Testimonials */
    .testimonial-section {
        padding: 40px 0;
    }
    
    .testimonial-card {
        min-width: 260px;
        padding: 18px;
        margin: 0 6px;
    }
    
    .testimonial-card p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .client-name {
        font-size: 0.9rem;
    }
    
    .client-title {
        font-size: 0.75rem;
    }
    
    /* Contact Form */
    .contact-form-wrapper {
        padding: 20px;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 12px;
        font-size: 0.95rem;
    }
    
    /* Section Titles */
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 0.8rem;
    }
    
    /* About - Images below text on mobile */
    .about-images {
        order: 1;
    }
    
    .about-content {
        order: 0;
    }
    
    /* Fix image stack on mobile - side by side instead of overlapping */
    .image-stack {
        height: auto;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        position: relative;
    }
    
    .stack-img {
        position: relative !important;
        width: 100% !important;
        height: 180px !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
    }
    
    .stack-img.img-1,
    .stack-img.img-2 {
        position: relative !important;
        width: 100% !important;
        height: 180px !important;
    }
    
    .experience-badge {
        position: relative;
        left: auto;
        bottom: auto;
        transform: none;
        margin: 15px auto 0;
        width: fit-content;
        padding: 12px 20px;
    }
    
    .exp-number {
        font-size: 2rem;
    }
    
    .exp-text {
        font-size: 0.7rem;
    }
    
    /* Add spacing below about section */
    .about {
        padding-bottom: 60px;
        margin-bottom: 0;
    }
    
    /* Mission */
    .mission-banner {
        padding: 50px 0;
    }
    
    .mission-content h2 {
        font-size: 2rem;
    }
    
    .mission-content p {
        font-size: 1rem;
    }
    
    /* Values */
    .value-card {
        padding: 25px 15px;
    }
    
    .value-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .value-card h3 {
        font-size: 1.1rem;
    }
    
    /* Services */
    .service-card {
        padding: 25px 15px;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    /* Rules */
    .rule-card {
        padding: 20px 15px;
    }
    
    .rule-number {
        font-size: 2rem;
    }
    
    .rule-card h3 {
        font-size: 1rem;
    }
    
    /* CTA */
    .cta-section {
        padding: 50px 0;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
    
    /* Footer */
    .footer {
        padding: 50px 0 0;
    }
    
    .footer-logo .logo-img {
        height: 40px;
    }
    
    .footer-logo span {
        font-size: 1rem;
    }
    
    /* Partners */
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .partner-logo {
        padding: 12px;
        font-size: 0.7rem;
    }
    
    /* Back to top */
    .back-to-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
        font-size: 1rem;
    }
    
    /* Map */
    .map-section {
        height: 300px;
    }
}

/* Mobile - REMOVE ALL SCROLLBARS from sections */
@media (max-width: 768px) {
    /* Hide ALL scrollbars from sections - only main page scrollbar allowed */
    .section,
    .about,
    .services,
    .mission-banner,
    .values,
    .safety-rules,
    .gallery,
    .testimonial,
    .partners,
    .cta-section,
    .contact,
    .container,
    .services-grid,
    .values-grid,
    .rules-grid,
    .gallery-grid {
        overflow: visible !important;
        overflow-x: visible !important;
        overflow-y: visible !important;
        -ms-overflow-style: none !important;
        scrollbar-width: none !important;
        max-height: none !important;
        height: auto !important;
    }
    
    /* Hide webkit scrollbars */
    .section::-webkit-scrollbar,
    .about::-webkit-scrollbar,
    .services::-webkit-scrollbar,
    .mission-banner::-webkit-scrollbar,
    .values::-webkit-scrollbar,
    .safety-rules::-webkit-scrollbar,
    .gallery::-webkit-scrollbar,
    .testimonial::-webkit-scrollbar,
    .partners::-webkit-scrollbar,
    .cta-section::-webkit-scrollbar,
    .contact::-webkit-scrollbar,
    .container::-webkit-scrollbar {
        display: none !important;
        width: 0 !important;
        height: 0 !important;
    }
    
    /* Testimonials wrapper needs hidden for carousel ONLY */
    .testimonials-wrapper {
        overflow: hidden !important;
    }
    
    /* Partners marquee needs hidden for carousel ONLY */
    .partners-marquee {
        overflow: hidden !important;
    }
    
    /* Cards should fit within their containers */
    .service-card {
        width: 100%;
        max-width: 100%;
        overflow: hidden !important;
    }
    
    .value-card,
    .rule-card {
        width: 100%;
        max-width: 100%;
        overflow: visible !important;
    }
}

/* Very small devices */
@media (max-width: 360px) {
    /* Prevent horizontal scroll */
    html, body {
        overflow-x: hidden !important;
    }
    
    .nav-toggle {
        display: flex !important;
    }
    
    .nav-logo span {
        display: block !important;
        font-size: 0.7rem;
        max-width: 120px;
    }
    
    .nav-logo .logo-img {
        height: 28px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 0.75rem;
    }
    
    .hero-description {
        font-size: 0.85rem;
    }
    
    .stat-number {
        font-size: 1.2rem;
    }
    
    .stat-label {
        font-size: 0.5rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .testimonial-card {
        min-width: 220px;
        width: 220px;
    }
    
    /* About images on very small screens */
    .image-stack {
        grid-template-columns: 1fr;
    }
    
    .stack-img.img-1,
    .stack-img.img-2 {
        height: 150px !important;
    }
}

