/* ========================================
   CSS Variables / Custom Properties
======================================== */
:root {
    --primary-color: #e0201c;
    --secondary-color: #6a6866;
    --dark-color: #000000;
    --dark-gray: #1a1a1a;
    --medium-gray: #333333;
    --light-gray: #666666;
    --section-gray: #f0f0f0;
    --white: #ffffff;
    --transition: all 0.3s ease;
    --shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    --shadow-hover: 0 10px 30px rgba(0, 0, 0, 0.4);
    --red-glow: 0 0 20px rgba(224, 32, 28, 0.3);
}

/* ========================================
   Global Styles
======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--light-gray);
    background-color: var(--dark-color);
    overflow-x: hidden;
}

/* Prevent automatic phone number detection and blue links */
a[href^="tel:"] {
    color: inherit;
    text-decoration: none;
}

/* Override any automatic phone number styling */
.contact-info p,
.footer-contact span,
.contact-item span {
    color: inherit !important;
}

.contact-info p a,
.footer-contact span a,
.contact-item span a {
    color: inherit !important;
    text-decoration: none !important;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========================================
   Typography
======================================== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--white);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }

/* ========================================
   Navigation
======================================== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: var(--dark-color);
    border-bottom: 2px solid var(--primary-color);
    box-shadow: 0 2px 20px rgba(224, 32, 28, 0.3);
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    background-color: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(10px);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.nav-brand {
    display: flex;
    align-items: center;
}

.company-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--white) !important;
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
}

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

.nav-link:hover {
    color: var(--primary-color);
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    position: relative;
    width: 30px;
    height: 30px;
    justify-content: center;
    align-items: center;
    background: transparent;
    border: none;
    z-index: 1001;
}

.nav-toggle:before,
.nav-toggle:after,
.nav-toggle span {
    content: '';
    display: block;
    width: 25px;
    height: 3px;
    background: linear-gradient(45deg, var(--white), rgba(255, 255, 255, 0.8));
    border-radius: 2px;
    position: absolute;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 2px 4px rgba(224, 32, 28, 0.3);
}

.nav-toggle:before {
    top: 8px;
    transform-origin: center;
}

.nav-toggle span {
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
}

.nav-toggle:after {
    bottom: 8px;
    transform-origin: center;
}

.nav-toggle:hover:before,
.nav-toggle:hover:after,
.nav-toggle:hover span {
    background: linear-gradient(45deg, var(--primary-color), rgba(224, 32, 28, 0.8));
    box-shadow: 0 3px 8px rgba(224, 32, 28, 0.5);
    transform: scale(1.05);
}

.nav-toggle:hover span {
    transform: translateY(-50%) scale(1.05);
}

.nav-toggle:focus {
    outline: none;
}

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

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
    z-index: -2;
}

.hero-image {
    flex: 1 1 33.333%;
    width: 33.333%;
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.5s ease;
    position: relative;
    aspect-ratio: 3/4;
}

.hero-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    transition: background 0.3s ease;
}

.hero-image:hover::after {
    background: rgba(0, 0, 0, 0.1);
}

.hero-image:nth-child(1) {
    background-image: url('../images/20250508_133056.jpg?v=2');
    background-position: center 20%;
}

.hero-image:nth-child(2) {
    background-image: url('../images/20250119_151226.jpg?v=2');
    background-position: center;
}

.hero-image:nth-child(3) {
    background-image: url('../images/20241101_163456.jpg?v=2');
    background-position: center 30%;
}

.hero-image:hover {
    transform: scale(1.05);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: -1;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23e0201c" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,186.7C384,213,480,235,576,218.7C672,203,768,149,864,144C960,139,1056,181,1152,197.3C1248,213,1344,203,1392,197.3L1440,192L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    opacity: 0.1;
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
}

.hero-content {
    text-align: center;
    z-index: 1;
    padding: 2rem;
}

.hero-title {
    color: var(--white);
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease;
}

.highlight-red {
    font-family: 'Orbitron', monospace;
    background-color: #e0201c;
    padding: 0 0.3em;
    display: inline-block;
    font-weight: 900;
    letter-spacing: 1px;
    margin-right: 0.3em;
    box-shadow: 0 4px 15px rgba(224, 32, 28, 0.4);
    border-radius: 0;
    transform: skew(-15deg);
}

.company-name .highlight-red {
    padding: 0 0.25em;
    font-size: 0.9em;
    margin-right: 0.2em;
    box-shadow: 0 2px 8px rgba(224, 32, 28, 0.3);
    border-radius: 0;
    transform: skew(-15deg);
    display: inline-block;
}

.hero-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.25rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.4s both;
}

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

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

/* ========================================
   Buttons
======================================== */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    box-shadow: var(--red-glow);
    border: 1px solid var(--primary-color);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(224, 32, 28, 0.6);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

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

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    box-shadow: var(--red-glow);
}

/* ========================================
   About Us Section
======================================== */
.about {
    padding: 5rem 0;
    background-color: var(--dark-color);
}

.about-content {
    margin-top: 3rem;
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.about-intro h3 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 2rem;
}

.lead {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    font-weight: 500;
    text-align: center;
}

.about-story h4,
.about-stats-section h4 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    text-align: center;
}

.about-story p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    text-align: center;
}

.about-stats-inline {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.about-stats-inline .stat-item {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, var(--dark-gray), var(--medium-gray));
    border-radius: 15px;
    border: 2px solid var(--primary-color);
    transition: var(--transition);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.about-stats-inline .stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(224, 32, 28, 0.4);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    text-shadow: 0 0 10px rgba(224, 32, 28, 0.3);
}

.stat-label {
    color: var(--white);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Mobile responsiveness for About section */
@media (max-width: 768px) {
    .about-stats-inline {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .about {
        padding: 0.5rem 0;
        margin-top: -2rem;
    }
    
    .about-content {
        margin-top: 1rem;
    }
    
    .about-intro h3 {
        font-size: 1.6rem;
    }
    
    .lead {
        font-size: 1.1rem;
    }
    
    .about-stats-inline .stat-item {
        padding: 1.5rem;
    }
}

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

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

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

.preloader-spinner {
    margin-bottom: 1rem;
}

.spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(224, 32, 28, 0.1);
    border-top: 4px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

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

/* ========================================
   Smooth Loading Animations
======================================== */
.service-card,
.gallery-item,
.comment-card,
.about-stats-inline .stat-item,
.info-item,
.contact-form {
    opacity: 0;
    transform: translateY(20px);
    animation: smoothFadeIn 0.8s ease forwards;
}

.service-card {
    animation-delay: 0.1s;
}

.service-card:nth-child(2) {
    animation-delay: 0.2s;
}

.service-card:nth-child(3) {
    animation-delay: 0.3s;
}

.gallery-item:nth-child(1) { animation-delay: 0.1s; }
.gallery-item:nth-child(2) { animation-delay: 0.2s; }
.gallery-item:nth-child(3) { animation-delay: 0.3s; }
.gallery-item:nth-child(4) { animation-delay: 0.4s; }
.gallery-item:nth-child(5) { animation-delay: 0.5s; }
.gallery-item:nth-child(6) { animation-delay: 0.6s; }
.gallery-item:nth-child(7) { animation-delay: 0.7s; }

.about-stats-inline .stat-item:nth-child(1) { animation-delay: 0.1s; }
.about-stats-inline .stat-item:nth-child(2) { animation-delay: 0.2s; }
.about-stats-inline .stat-item:nth-child(3) { animation-delay: 0.3s; }

.info-item:nth-child(1) { animation-delay: 0.1s; }
.info-item:nth-child(2) { animation-delay: 0.2s; }
.info-item:nth-child(3) { animation-delay: 0.3s; }

/* Page load fade-in for main sections */
.hero-content,
.section-header,
.about-text,
.contact-content {
    opacity: 0;
    animation: smoothFadeIn 1s ease forwards;
}

.hero-content {
    animation-delay: 0.3s;
}

.section-header {
    animation-delay: 0.2s;
}

/* ========================================
   Services Section
======================================== */
.services {
    padding: 5rem 0;
    background-color: var(--dark-color);
}

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

.section-header .section-title,
.section-title {
    color: var(--white) !important;
    margin-bottom: 1rem;
}

.section-header .section-subtitle,
.section-subtitle {
    color: var(--white) !important;
    font-size: 1.1rem;
}

/* Ultra-aggressive section title color override */
section .section-title,
.section .section-title,
h2.section-title,
.section-header h2,
.section-header .section-title,
.section-title {
    color: #ffffff !important;
    margin-bottom: 1rem;
}

section .section-subtitle,
.section .section-subtitle,
p.section-subtitle,
.section-header p,
.section-header .section-subtitle,
.section-subtitle {
    color: #ffffff !important;
    font-size: 1.1rem;
}

/* Ensure section titles stay white on all screen sizes */
@media (max-width: 768px) {
    section .section-title,
    .section .section-title,
    h2.section-title,
    .section-header h2,
    .section-header .section-title,
    .section-title {
        color: #ffffff !important;
    }
    
    section .section-subtitle,
    .section .section-subtitle,
    p.section-subtitle,
    .section-header p,
    .section-header .section-subtitle,
    .section-subtitle {
        color: #ffffff !important;
    }
}

@media (max-width: 480px) {
    section .section-title,
    .section .section-title,
    h2.section-title,
    .section-header h2,
    .section-header .section-title,
    .section-title {
        color: #ffffff !important;
    }
    
    section .section-subtitle,
    .section .section-subtitle,
    p.section-subtitle,
    .section-header p,
    .section-header .section-subtitle,
    .section-subtitle {
        color: #ffffff !important;
    }
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background-color: var(--dark-gray);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    border: 1px solid var(--medium-gray);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: var(--primary-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-color);
}

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

.service-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(224, 32, 28, 0.15);
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: var(--transition);
    box-shadow: 0 0 15px rgba(224, 32, 28, 0.3);
}

.service-card:hover .service-icon {
    background-color: var(--primary-color);
    box-shadow: 0 0 25px rgba(224, 32, 28, 0.6);
    transform: scale(1.05);
}

.service-icon i {
    font-size: 2rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.service-card:hover .service-icon i {
    color: var(--white);
    transform: scale(1.1);
}

.service-card h3 {
    margin-bottom: 1rem;
    color: var(--white);
}

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

.service-features {
    list-style: none;
    margin-top: 1.5rem;
}

.service-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--white);
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* ========================================
   Gallery Section
======================================== */
.gallery {
    padding: 5rem 0;
    background-color: var(--dark-gray);
}

.gallery-scroll-indicator {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
    opacity: 0.7;
}

.scroll-hint {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--white);
    font-size: 1rem;
    font-weight: 500;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    animation: fadeInOut 2s ease-in-out infinite;
}

.scroll-hint i {
    color: var(--primary-color);
    font-size: 1.4rem;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3));
}

@keyframes fadeInOut {
    0%, 100% { opacity: 0.9; }
    50% { opacity: 1; }
}

.gallery-blocks-container {
    margin-top: 3rem;
}

.gallery-blocks-scroll {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) var(--dark-color);
    padding-bottom: 1rem;
    scroll-behavior: smooth;
    padding: 0 1rem;
}

.gallery-blocks-scroll::-webkit-scrollbar {
    height: 8px;
}

.gallery-blocks-scroll::-webkit-scrollbar-track {
    background: var(--dark-color);
    border-radius: 4px;
}

.gallery-blocks-scroll::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

.gallery-blocks-scroll::-webkit-scrollbar-thumb:hover {
    background: #b01c18;
}

.gallery-block {
    position: relative;
    width: 450px;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    cursor: pointer;
    flex-shrink: 0;
    border: 3px solid transparent;
    background-color: var(--dark-color);
}

.gallery-block:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-color);
}

.block-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    height: 100%;
    gap: 2px;
}

.block-image {
    position: relative;
    overflow: hidden;
    background-color: var(--dark-color);
}

.block-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-block:hover .block-image img {
    transform: scale(1.05);
}



.gallery-progress {
    margin-top: 2rem;
    height: 4px;
    background-color: var(--medium-gray);
    border-radius: 2px;
    overflow: hidden;
    position: relative;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), #ff3530);
    border-radius: 2px;
    width: 0%;
    transition: width 0.3s ease;
}

/* ========================================
   Gallery Lightbox with Swipe
======================================== */
.gallery-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: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

.lightbox-container {
    position: relative;
    width: 90%;
    height: 90%;
    max-width: 800px;
    max-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-images {
    display: flex;
    transition: transform 0.3s ease;
    height: 100%;
}

.lightbox-image {
    min-width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.lightbox-nav:hover {
    background: rgba(224, 32, 28, 0.8);
    border-color: var(--primary-color);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-nav i {
    color: var(--white);
    font-size: 1.2rem;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.lightbox-close:hover {
    background: rgba(224, 32, 28, 0.8);
    border-color: var(--primary-color);
    transform: scale(1.1);
}

.lightbox-close i {
    color: var(--white);
    font-size: 1.2rem;
}



 /* ========================================
    Testimonials Section
 ======================================== */
 .testimonials {
     padding: 5rem 0 3rem 0;
     background-color: var(--dark-color);
     overflow: hidden;
 }
 
 .carousel-container {
     width: 100%;
     overflow: hidden;
     position: relative;
     margin-top: 3rem;
 }
 
 .row {
     display: flex;
     overflow: hidden;
     position: relative;
     width: 100vw;
     margin-left: calc(-50vw + 50%);
     margin-right: calc(-50vw + 50%);
 }
 
 .row-content {
     display: flex;
     gap: 20px;
     animation: scrollLeft 240s linear infinite;
 }
 
 @keyframes scrollLeft {
     0% { transform: translateX(0); }
     100% { transform: translateX(-50%); }
 }
 
 .comment-card {
     background-color: var(--dark-gray);
     border: 1px solid var(--medium-gray);
     border-radius: 16px;
     padding: 24px;
     min-width: 380px;
     max-width: 380px;
     transition: all 0.3s ease;
     cursor: pointer;
     flex-shrink: 0;
 }
 
 .comment-card:hover {
     background-color: var(--medium-gray);
     border-color: var(--primary-color);
     transform: translateY(-2px);
     box-shadow: 0 5px 20px rgba(224, 32, 28, 0.3);
 }
 
 .comment-header {
     display: flex;
     align-items: flex-start;
     gap: 16px;
     margin-bottom: 16px;
 }
 
 .avatar {
     width: 48px;
     height: 48px;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-weight: 600;
     font-size: 18px;
     color: var(--white);
     background-color: var(--primary-color);
     flex-shrink: 0;
 }
 
 .user-info {
     flex: 1;
 }
 
 .username {
     font-weight: 600;
     color: var(--white);
     font-size: 16px;
     margin-bottom: 4px;
 }
 
 .timestamp {
     font-size: 13px;
     color: var(--light-gray);
 }
 
 .comment-text {
     color: var(--white);
     line-height: 1.6;
     font-size: 15px;
     margin-bottom: 8px;
 }
 
 .stars {
     margin-left: auto;
     flex-shrink: 0;
     display: flex;
     gap: 2px;
 }
 
 .stars svg {
     width: 20px;
     height: 20px;
     fill: var(--primary-color);
 }

/* ========================================
   Contact Section
======================================== */
.contact {
    padding: 5rem 0;
    background-color: var(--dark-color);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info h3 {
    margin-bottom: 2rem;
    color: var(--white);
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.info-item i {
    color: var(--primary-color);
    font-size: 1.5rem;
    width: 30px;
}

.info-item h4 {
    margin-bottom: 0.5rem;
    color: var(--white);
}

.info-item p {
    color: var(--white);
}

/* Prevent phone numbers from showing as blue links */
.info-item p a,
.contact-item span a,
.contact-item a {
    color: inherit !important;
    text-decoration: none !important;
}

.info-item p a:visited,
.contact-item span a:visited,
.contact-item a:visited {
    color: inherit !important;
}

.social-links {
    margin-top: 3rem;
}

.social-links h4 {
    margin-bottom: 1rem;
    color: var(--white);
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    width: 45px;
    height: 45px;
    background-color: var(--dark-gray);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--primary-color);
    transform: translateY(-5px);
}

/* ========================================
   Contact Form
======================================== */
.contact-form {
    background-color: var(--dark-gray);
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid var(--primary-color);
}

.form-group {
    position: relative;
    margin-bottom: 2rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem;
    border: 2px solid transparent;
    border-bottom: 2px solid var(--white);
    background-color: transparent;
    color: var(--white);
    font-size: 1rem;
    transition: var(--transition);
    font-family: inherit;
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1rem;
    cursor: pointer;
}

.form-group select option {
    background-color: var(--dark-gray);
    color: var(--white);
    padding: 0.5rem;
}

.form-group select option:first-child {
    color: var(--light-gray);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-bottom-color: var(--primary-color);
}

.form-group label {
    position: absolute;
    left: 1rem;
    top: 1rem;
    color: var(--white);
    transition: var(--transition);
    pointer-events: none;
}

 .form-group input:focus ~ label,
 .form-group input:not(:placeholder-shown) ~ label,
 .form-group textarea:focus ~ label,
 .form-group textarea:not(:placeholder-shown) ~ label,
 .form-group select:focus ~ label,
 .form-group select.has-value ~ label {
     top: -0.5rem;
     left: 0;
     font-size: 0.875rem;
     color: var(--primary-color);
 }

/* Fix for select with empty value - keep label in place */
.form-group select:not(.has-value) ~ label {
    top: 1rem;
    left: 1rem;
    font-size: 1rem;
    color: var(--white);
 }

/* ========================================
   Footer
======================================== */
/* ========================================
   Footer Section
======================================== */
.footer {
    background-color: var(--dark-gray);
    color: var(--white);
    padding: 4rem 0 0;
    border-top: 2px solid var(--primary-color);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3,
.footer-section h4 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-brand {
    max-width: 350px;
}

.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-logo h3 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
}

.footer-brand p {
    color: var(--light-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--medium-gray);
    color: var(--primary-color);
    border-radius: 50%;
    text-decoration: none;
    transition: var(--transition);
}

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

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: var(--light-gray);
    text-decoration: none;
    transition: var(--transition);
    position: relative;
}

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

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

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    color: var(--light-gray);
}

.contact-item i {
    color: var(--primary-color);
    width: 16px;
    margin-top: 2px;
}

.footer-bottom {
    border-top: 1px solid var(--medium-gray);
    padding: 2rem 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: var(--light-gray);
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a {
    color: var(--light-gray);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-bottom-links a:hover {
    color: var(--primary-color);
}

/* ========================================
   Scroll to Top Button
======================================== */
.scroll-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.scroll-top.active {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background-color: var(--dark-color);
    transform: translateY(-5px);
}

/* ========================================
   Mobile Call Button
======================================== */
.mobile-call-button {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), #ff4444);
    border-radius: 50%;
    color: var(--white);
    text-decoration: none;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 20px rgba(224, 32, 28, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
    animation: pulse-call 2s infinite;
}

.mobile-call-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(224, 32, 28, 0.6);
    color: var(--white);
}

.mobile-call-button i {
    color: var(--white) !important;
}

.mobile-call-button:hover i {
    color: var(--white) !important;
}

@keyframes pulse-call {
    0% {
        box-shadow: 0 4px 20px rgba(224, 32, 28, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(224, 32, 28, 0.4), 0 0 0 10px rgba(224, 32, 28, 0.2);
    }
    100% {
        box-shadow: 0 4px 20px rgba(224, 32, 28, 0.4);
    }
}

 /* ========================================
    Lightbox Styles
 ======================================== */
 .lightbox {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background-color: rgba(0, 0, 0, 0.9);
     display: flex;
     align-items: center;
     justify-content: center;
     z-index: 2000;
     animation: fadeIn 0.3s ease;
 }
 
 .lightbox-content {
     position: relative;
     max-width: 90%;
     max-height: 90%;
     animation: zoomIn 0.3s ease;
 }
 
 .lightbox-content img {
     width: 100%;
     height: auto;
     max-height: 80vh;
     object-fit: contain;
 }
 
 .close-lightbox {
     position: absolute;
     top: -40px;
     right: 0;
     color: var(--white);
     font-size: 2.5rem;
     cursor: pointer;
     transition: color 0.3s ease;
 }
 
 .close-lightbox:hover {
     color: var(--primary-color);
 }
 
 .lightbox-caption {
     background-color: rgba(0, 0, 0, 0.8);
     color: var(--white);
     padding: 1rem;
     text-align: center;
 }
 
 @keyframes zoomIn {
     from {
         transform: scale(0.8);
         opacity: 0;
     }
     to {
         transform: scale(1);
         opacity: 1;
     }
 }

 /* ========================================
    Mobile Responsive
 ======================================== */
@media (max-width: 768px) {
    .navbar .container {
        padding: 0.5rem 20px;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 55px;
        flex-direction: column;
        background: linear-gradient(145deg, var(--dark-color), rgba(26, 26, 26, 0.98));
        backdrop-filter: blur(20px);
        width: 100%;
        text-align: center;
        transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        box-shadow: 0 15px 35px rgba(224, 32, 28, 0.4);
        padding: 2rem 0;
        border-bottom: 3px solid var(--primary-color);
        opacity: 0;
        transform: translateX(-100%) scale(0.95);
    }

    .nav-menu.active {
        left: 0;
        opacity: 1;
        transform: translateX(0) scale(1);
    }
    
    .nav-menu .nav-link {
        padding: 1rem 2rem;
        margin: 0.5rem 0;
        border-radius: 8px;
        position: relative;
        overflow: hidden;
        transition: all 0.3s ease;
        transform: translateX(-50px);
        opacity: 0;
    }
    
    .nav-menu.active .nav-link {
        transform: translateX(0);
        opacity: 1;
    }
    
    .nav-menu.active .nav-link:nth-child(1) { transition-delay: 0.1s; }
    .nav-menu.active .nav-link:nth-child(2) { transition-delay: 0.15s; }
    .nav-menu.active .nav-link:nth-child(3) { transition-delay: 0.2s; }
    .nav-menu.active .nav-link:nth-child(4) { transition-delay: 0.25s; }
    .nav-menu.active .nav-link:nth-child(5) { transition-delay: 0.3s; }
    .nav-menu.active .nav-link:nth-child(6) { transition-delay: 0.35s; }
    
    .nav-menu .nav-link:hover {
        background: linear-gradient(45deg, var(--primary-color), rgba(224, 32, 28, 0.8));
        transform: translateX(5px) scale(1.05);
        box-shadow: 0 5px 15px rgba(224, 32, 28, 0.4);
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active:before {
        transform: rotate(45deg) translate(0, 0);
        background: linear-gradient(45deg, var(--primary-color), #ff4444);
        box-shadow: 0 0 10px rgba(224, 32, 28, 0.6);
    }

    .nav-toggle.active span {
        opacity: 0;
        transform: translateY(-50%) scale(0.8);
    }

    .nav-toggle.active:after {
        transform: rotate(-45deg) translate(0, 0);
        background: linear-gradient(45deg, var(--primary-color), #ff4444);
        box-shadow: 0 0 10px rgba(224, 32, 28, 0.6);
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero {
        min-height: 100vh;
    }
    
    .hero-background {
        flex-direction: row;
    }
    
    .hero-image {
        background-attachment: scroll;
        height: 70vh;
        width: 33.333%;
        flex: 1 1 33.333%;
        aspect-ratio: 3/4;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .company-name {
        font-size: 0.85rem;
        display: block;
    }
    
    .company-name .highlight-red {
        padding: 0 0.2em;
        font-size: 0.8em;
        margin-right: 0.15em;
        box-shadow: 0 1px 4px rgba(224, 32, 28, 0.3);
        border-radius: 0;
        transform: skew(-15deg);
        display: inline-block;
    }

    .gallery-scroll-indicator {
        margin-bottom: 1rem;
    }
    
    .scroll-hint {
        font-size: 0.95rem;
        font-weight: 600;
    }
    
    .gallery-scroll-container {
        padding-bottom: 0.5rem;
    }

    .gallery-blocks-scroll {
        padding: 0 15px;
        gap: 1rem;
    }
    
    .gallery-block {
        width: 350px;
        height: 320px;
        border-width: 2px;
    }
    

    
    .lightbox-container {
        width: 95%;
        height: 85%;
    }
    
    .lightbox-nav {
        width: 40px;
        height: 40px;
    }
    
    .lightbox-prev {
        left: 10px;
    }
    
    .lightbox-next {
        right: 10px;
    }
    
    .lightbox-close {
        width: 40px;
        height: 40px;
        top: 10px;
        right: 10px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-brand {
        max-width: 100%;
    }

    .footer-logo {
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom-links {
        justify-content: center;
    }
    
    /* Center footer contact information on mobile */
    .footer-contact {
        text-align: center;
    }
    
    .contact-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0.5rem;
    }
    
    .contact-item i {
        margin-top: 0;
    }
    
    /* Center contact section elements on mobile */
    .contact-info {
        text-align: center;
    }
    
    .info-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0.5rem;
    }
    
    .info-item i {
        margin-top: 0;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    /* Center service icons on mobile */
    .service-card {
        text-align: center;
    }
    
    .service-icon {
        margin: 0 auto 2rem auto;
    }
    
    .mobile-call-button {
        display: flex;
    }
    
    .scroll-top {
        display: none !important;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .btn {
        padding: 0.875rem 2rem;
        font-size: 0.95rem;
    }

    .service-card {
        padding: 2rem;
    }

    .contact-form {
        padding: 1.5rem;
    }
    
    .contact-form .btn {
        display: block;
        margin: 0 auto;
        width: fit-content;
    }
    
    .gallery-block {
        width: 320px;
        height: 280px;
    }
    

    
    .scroll-hint {
        gap: 0.5rem;
    }
    
    .hero {
        min-height: 75vh;
    }
    
    .hero-content {
        padding: 1rem;
    }
    
    .hero-image {
        background-attachment: scroll;
        height: 60vh;
        width: 33.333%;
        flex: 1 1 33.333%;
        aspect-ratio: 3/4;
    }
}

/* ========================================
   iPhone SE Specific Adjustments
======================================== */
@media (max-width: 375px) {
    .navbar .container {
        padding: 0.25rem 20px;
    }
    
    .company-name {
        font-size: 0.75rem;
    }
    
    .nav-menu {
        top: 45px;
    }
    
    .nav-toggle {
        margin-right: -5px;
        transform: scale(0.9);
    }
    
    .hero {
        min-height: 85vh;
    }
    
    .hero-content {
        padding: 1rem;
        margin-top: -10vh;
    }
    
    .hero-image {
        height: 70vh;
    }
    
    .about {
        padding: 0;
        margin-top: -3rem;
    }
    
    .about-content {
        margin-top: 0.5rem;
    }
} 