/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #FF4C29; /* Electric Red */
    --secondary-color: #FFA500; /* Bright Orange */
    --accent-color: #FFE31A; /* Vibrant Yellow */
    --dark-bg: #0D1117;
    --darker-bg: #010409;
    --card-bg: #161B22;
    --text-light: #ffffff;
    --text-gray: #8B949E;
    --gradient-start: #1C2128;
    --gradient-end: #0D1117;
    --success-color: #00D084;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: var(--darker-bg);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(13, 17, 23, 0.98);
    backdrop-filter: blur(20px) saturate(180%);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 76, 41, 0.2);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.7);
    transition: all 0.3s ease;
}

.navbar::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    opacity: 0.3;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.logo-text {
    font-size: 1.4rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
    text-shadow: none;
    position: relative;
}

.logo-text::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.logo:hover .logo-text::after {
    transform: scaleX(1);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

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

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

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

.btn-call {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 0.7rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(255, 76, 41, 0.4);
    position: relative;
    overflow: hidden;
}

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

.btn-call:hover::before {
    left: 100%;
}

.btn-call:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 30px rgba(255, 76, 41, 0.6);
}

.btn-call::after {
    display: none;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.mobile-menu-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 3px;
    background: var(--text-light);
    border-radius: 3px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('../images/IMG_2389.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding-top: 100px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(13, 17, 23, 0.7) 0%, rgba(1, 4, 9, 0.5) 50%, rgba(13, 17, 23, 0.7) 100%);
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 50% 50%, transparent 0%, rgba(1, 4, 9, 0.3) 100%);
    z-index: 2;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20% 30%, rgba(255, 76, 41, 0.3), transparent),
        radial-gradient(2px 2px at 60% 70%, rgba(255, 165, 0, 0.3), transparent),
        radial-gradient(1px 1px at 50% 50%, rgba(255, 227, 26, 0.3), transparent),
        radial-gradient(2px 2px at 80% 10%, rgba(255, 76, 41, 0.3), transparent),
        radial-gradient(1px 1px at 10% 80%, rgba(255, 165, 0, 0.3), transparent);
    background-size: 200% 200%;
    animation: particles 20s ease-in-out infinite;
    z-index: 2;
    opacity: 0.4;
}

@keyframes particles {
    0%, 100% { background-position: 0% 0%, 100% 100%, 50% 50%, 80% 20%, 10% 90%; }
    50% { background-position: 100% 100%, 0% 0%, 25% 75%, 20% 80%, 90% 10%; }
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 1000px;
    padding: 2rem;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 76, 41, 0.15);
    border: 2px solid rgba(255, 76, 41, 0.4);
    color: var(--primary-color);
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease, pulse 2s ease-in-out infinite;
    backdrop-filter: blur(10px);
}

@keyframes pulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 76, 41, 0.4); }
    50% { transform: scale(1.05); box-shadow: 0 0 0 10px rgba(255, 76, 41, 0); }
}

.hero-title {
    font-size: 6rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--text-light) 0%, var(--primary-color) 50%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 8px;
    animation: fadeInUp 1s ease 0.1s both;
    text-transform: uppercase;
    filter: drop-shadow(0 5px 30px rgba(255, 76, 41, 0.4));
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 2.2rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-weight: 600;
    animation: fadeInUp 1s ease 0.2s both;
    text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.9);
    letter-spacing: 1px;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2.5rem;
    line-height: 1.8;
    animation: fadeInUp 1s ease 0.3s both;
    text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.8);
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

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

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.6s both;
    margin-top: 3rem;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    filter: drop-shadow(0 2px 10px rgba(255, 76, 41, 0.3));
}

.stat-label {
    font-size: 0.95rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.btn {
    padding: 1.2rem 2.5rem;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.btn-icon {
    font-size: 1.3rem;
    display: inline-block;
    transition: transform 0.3s ease;
}

.btn:hover .btn-icon {
    transform: scale(1.2) rotate(10deg);
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn:hover::before {
    width: 400px;
    height: 400px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    box-shadow: 0 10px 30px rgba(255, 76, 41, 0.5);
    z-index: 1;
}

.btn-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 45px rgba(255, 76, 41, 0.7);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-light);
    border: 2px solid var(--primary-color);
    box-shadow: 0 5px 20px rgba(255, 76, 41, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-color: transparent;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 45px rgba(255, 76, 41, 0.6);
}

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

/* Services Section */
.services {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--darker-bg) 0%, var(--dark-bg) 50%, var(--darker-bg) 100%);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 215, 0, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 107, 53, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.section-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--text-light) 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.3rem;
    color: var(--text-gray);
    font-weight: 400;
}

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

.service-card {
    background: var(--card-bg);
    padding: 3rem;
    border-radius: 24px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 76, 41, 0.15);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 76, 41, 0.08) 0%, rgba(255, 165, 0, 0.08) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.service-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 76, 41, 0.12) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.service-card:hover::before,
.service-card:hover::after {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-15px) scale(1.03);
    border-color: var(--primary-color);
    box-shadow: 0 25px 60px rgba(255, 76, 41, 0.35), 0 0 40px rgba(255, 76, 41, 0.2);
}

.service-card.featured {
    border-color: var(--primary-color);
    border-width: 2px;
    background: linear-gradient(135deg, var(--card-bg) 0%, rgba(255, 76, 41, 0.08) 100%);
    box-shadow: 0 15px 40px rgba(255, 76, 41, 0.25);
}

.service-icon {
    width: 85px;
    height: 85px;
    margin: 0 auto 1.8rem;
    background: linear-gradient(135deg, rgba(255, 76, 41, 0.12) 0%, rgba(255, 165, 0, 0.12) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid rgba(255, 76, 41, 0.25);
    position: relative;
}

.service-icon::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    transform: scale(1.15) rotate(8deg);
    box-shadow: 0 15px 40px rgba(255, 76, 41, 0.6);
    border-color: transparent;
}

.service-card:hover .service-icon::after {
    opacity: 1;
}

.service-icon svg {
    width: 40px;
    height: 40px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.service-card p {
    color: var(--text-gray);
    line-height: 1.7;
}

/* Why Choose Us Section */
.why-choose {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--darker-bg) 0%, var(--gradient-start) 50%, var(--darker-bg) 100%);
    position: relative;
}

.why-choose::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 70% 30%, rgba(0, 217, 255, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 30% 70%, rgba(255, 215, 0, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

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

.feature-number {
    font-size: 4.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    line-height: 1;
    filter: drop-shadow(0 5px 20px rgba(255, 76, 41, 0.4));
}

.feature-icon {
    width: 85px;
    height: 85px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, rgba(255, 76, 41, 0.12) 0%, rgba(255, 227, 26, 0.12) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid rgba(255, 165, 0, 0.3);
}

.feature-item:hover .feature-icon {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
    color: var(--dark-bg);
    transform: scale(1.15) rotate(-8deg);
    box-shadow: 0 15px 40px rgba(255, 165, 0, 0.6);
    border-color: transparent;
}

.feature-icon svg {
    width: 40px;
    height: 40px;
}

.feature-item h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.feature-item p {
    color: var(--text-gray);
}

/* Testimonials Section */
.testimonials {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
    position: relative;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 50% 50%, rgba(255, 107, 53, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

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

.testimonial-card {
    background: var(--card-bg);
    padding: 3rem;
    border-radius: 24px;
    border: 1px solid rgba(255, 76, 41, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    overflow: hidden;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -15px;
    left: 20px;
    font-size: 10rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.1;
    font-weight: 900;
    line-height: 1;
    z-index: 0;
}

.testimonial-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 76, 41, 0.06) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.testimonial-card:hover::after {
    opacity: 1;
}

.testimonial-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: var(--primary-color);
    box-shadow: 0 25px 60px rgba(255, 76, 41, 0.35);
}

.testimonial-rating {
    display: flex;
    gap: 0.5rem;
    color: var(--primary-color);
    z-index: 1;
    position: relative;
}

.testimonial-rating svg {
    width: 20px;
    height: 20px;
}

.testimonial-text {
    color: var(--text-gray);
    font-size: 1.1rem;
    line-height: 1.8;
    font-style: italic;
    flex: 1;
    margin-top: 1rem;
    z-index: 1;
    position: relative;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 76, 41, 0.25);
    z-index: 1;
    position: relative;
}

.author-avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 800;
    font-size: 1.2rem;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(255, 76, 41, 0.4);
}

.author-info h4 {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.author-info p {
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* Gallery Section */
.gallery {
    padding: 6rem 0;
    background: var(--darker-bg);
    position: relative;
    overflow: hidden;
}

.gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 50% 50%, rgba(255, 76, 41, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    aspect-ratio: 4/3;
    cursor: pointer;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid rgba(255, 76, 41, 0.15);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.gallery-item:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 76, 41, 0.4);
    box-shadow: 0 20px 60px rgba(255, 76, 41, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(1, 4, 9, 0.95) 100%);
    display: flex;
    align-items: flex-end;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.gallery-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-light);
    font-weight: 800;
}

.gallery-info p {
    color: var(--text-gray);
    font-size: 1rem;
}

.gallery-dots {
    display: none;
    justify-content: center;
    gap: 12px;
    margin-top: 2rem;
}

.gallery-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 76, 41, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.gallery-dots .dot.active {
    background: var(--primary-color);
    transform: scale(1.2);
    border-color: rgba(255, 76, 41, 0.5);
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 80% 20%, rgba(255, 215, 0, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h2 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    letter-spacing: 2px;
}

.contact-info > p {
    color: var(--text-gray);
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: start;
    gap: 1.5rem;
}

.contact-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 76, 41, 0.12) 0%, rgba(255, 165, 0, 0.12) 100%);
    border-radius: 16px;
    flex-shrink: 0;
    color: var(--primary-color);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid rgba(255, 76, 41, 0.25);
}

.contact-icon svg {
    width: 28px;
    height: 28px;
}

.contact-item:hover .contact-icon {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    transform: scale(1.15) rotate(8deg);
    box-shadow: 0 10px 30px rgba(255, 76, 41, 0.5);
    border-color: transparent;
}

.contact-item h4 {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.contact-item a {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--text-light);
}

.contact-item p {
    color: var(--text-gray);
}

.contact-form-wrapper {
    background: var(--card-bg);
    padding: 3rem;
    border-radius: 24px;
    border: 1px solid rgba(255, 76, 41, 0.25);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.contact-form-wrapper::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 76, 41, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.contact-form h3 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: var(--text-light);
    font-weight: 700;
    position: relative;
    z-index: 1;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1.2rem;
    background: rgba(13, 17, 23, 0.6);
    border: 2px solid rgba(255, 76, 41, 0.2);
    border-radius: 16px;
    color: var(--text-light);
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 25px rgba(255, 76, 41, 0.4);
    background: rgba(13, 17, 23, 0.9);
    transform: translateY(-2px);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-gray);
}

.contact-form .btn {
    width: 100%;
}

/* Footer */
.footer {
    background: var(--darker-bg);
    padding: 3rem 0;
    border-top: 2px solid rgba(255, 76, 41, 0.25);
    box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.6);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    opacity: 0.5;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 1rem;
}

.footer-text {
    color: var(--text-gray);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-copyright {
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* Mobile Carousel Dots */
.carousel-dots {
    display: none;
    justify-content: center;
    gap: 12px;
    margin-top: 2rem;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 76, 41, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.carousel-dot.active {
    background: var(--primary-color);
    transform: scale(1.2);
    border-color: rgba(255, 76, 41, 0.5);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 4rem;
        letter-spacing: 5px;
    }

    .hero-subtitle {
        font-size: 1.8rem;
    }

    .stat-item {
        flex: 1;
        min-width: 120px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .mobile-menu-overlay {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--dark-bg);
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 5rem 2rem 2rem;
        gap: 0;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.5);
        transition: right 0.3s ease;
        z-index: 1000;
        border-left: 2px solid rgba(57, 255, 20, 0.2);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        width: 100%;
        padding: 1rem 0;
        border-bottom: 1px solid rgba(57, 255, 20, 0.1);
        font-size: 1.1rem;
    }

    .nav-links a.btn-call {
        margin-top: 1rem;
        width: 100%;
        text-align: center;
        border: none;
        border-radius: 8px;
    }

    /* Hero section - Better image visibility and responsiveness on mobile */
    .hero {
        background-size: cover;
        background-position: center center;
        background-attachment: scroll; /* Better performance on mobile */
    }

    .hero::before {
        background: linear-gradient(135deg, rgba(13, 17, 23, 0.5) 0%, rgba(1, 4, 9, 0.3) 50%, rgba(13, 17, 23, 0.5) 100%);
    }

    .hero-overlay {
        background: radial-gradient(ellipse at 50% 50%, transparent 0%, rgba(1, 4, 9, 0.2) 100%);
    }

    .hero-title {
        font-size: 3rem;
        letter-spacing: 3px;
    }

    .hero-subtitle {
        font-size: 1.4rem;
    }

    .hero-description {
        font-size: 1.05rem;
    }

    .hero-stats {
        gap: 2rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .hero-car {
        width: 200px;
        bottom: 5%;
        right: 5%;
    }

    .section-title {
        font-size: 3rem;
    }

    .section-subtitle {
        font-size: 1.2rem;
    }

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

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

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

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .contact-info h2 {
        font-size: 3rem;
    }

    /* Mobile carousels - Show dots and disable hover effects */
    .carousel-dots {
        display: flex;
    }

    .services-grid,
    .testimonials-grid,
    .features-grid {
        position: relative;
    }

    /* Disable all hover effects on mobile for service cards */
    .service-card {
        cursor: default !important;
        pointer-events: none;
    }

    .service-card:hover,
    .service-card:active,
    .service-card:focus {
        transform: none !important;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3) !important;
        border-color: rgba(255, 76, 41, 0.2) !important;
    }

    .service-card:hover .service-icon,
    .service-card:active .service-icon,
    .service-card:focus .service-icon {
        transform: none !important;
        background: linear-gradient(135deg, rgba(255, 76, 41, 0.15) 0%, rgba(255, 165, 0, 0.15) 100%) !important;
    }

    /* Disable all hover effects on mobile for testimonial cards */
    .testimonial-card {
        cursor: default !important;
        pointer-events: none;
    }

    .testimonial-card:hover,
    .testimonial-card:active,
    .testimonial-card:focus {
        transform: none !important;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3) !important;
        border-color: rgba(255, 76, 41, 0.2) !important;
    }

    /* Disable all hover effects on mobile for feature items */
    .feature-item {
        cursor: default !important;
        pointer-events: none;
    }

    .feature-item:hover,
    .feature-item:active,
    .feature-item:focus {
        transform: none !important;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3) !important;
        border-color: rgba(255, 76, 41, 0.2) !important;
    }

    .feature-item:hover .feature-icon,
    .feature-item:active .feature-icon,
    .feature-item:focus .feature-icon {
        transform: none !important;
        background: linear-gradient(135deg, rgba(255, 76, 41, 0.15) 0%, rgba(255, 165, 0, 0.15) 100%) !important;
    }

    /* Gallery slideshow on mobile */
    .gallery-grid {
        display: flex;
        flex-direction: column;
        overflow: hidden;
        position: relative;
        min-height: 400px;
    }

    .gallery-item {
        display: none;
        width: 100%;
        min-height: 400px;
        flex-shrink: 0;
        cursor: default !important;
        pointer-events: none; /* Disable all click/touch interactions */
    }

    /* Show first item by default until carousel initializes */
    .gallery-item:first-child {
        display: block;
    }

    .gallery-item.active {
        display: block;
    }

    /* Completely disable all hover, active, and focus effects on mobile */
    .gallery-item:hover,
    .gallery-item:active,
    .gallery-item:focus {
        transform: none !important;
        border-color: rgba(255, 76, 41, 0.15) !important;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5) !important;
    }

    .gallery-item:hover img,
    .gallery-item:active img,
    .gallery-item:focus img {
        transform: none !important;
    }

    .gallery-item .gallery-overlay {
        pointer-events: none;
    }

    .gallery-item:hover .gallery-overlay,
    .gallery-item:active .gallery-overlay,
    .gallery-item:focus .gallery-overlay {
        opacity: 1 !important;
    }

    .gallery-dots {
        display: flex;
        pointer-events: auto; /* Re-enable pointer events for dots */
    }

    .gallery-dots .dot {
        pointer-events: auto; /* Re-enable pointer events for individual dots */
    }

    .gallery-overlay {
        opacity: 1;
        background: linear-gradient(180deg, transparent 50%, rgba(1, 4, 9, 0.85) 100%);
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: 2.2rem;
        letter-spacing: 2px;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-badge {
        font-size: 0.85rem;
        padding: 0.5rem 1.2rem;
    }

    .btn {
        padding: 1rem 2rem;
        font-size: 0.9rem;
    }

    .hero-stats {
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .stat-label {
        font-size: 0.85rem;
    }

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

    .services {
        padding: 4rem 0;
    }

    .why-choose {
        padding: 4rem 0;
    }

    .testimonials {
        padding: 4rem 0;
    }

    .contact {
        padding: 4rem 0;
    }

    .service-card,
    .testimonial-card {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .logo-text {
        font-size: 1.2rem;
        letter-spacing: 1px;
    }

    .logo-img {
        width: 40px;
        height: 40px;
    }

    .hero-title {
        font-size: 2rem;
        letter-spacing: 2px;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-description {
        font-size: 0.95rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .feature-icon,
    .service-icon {
        width: 70px;
        height: 70px;
    }

    .feature-icon svg,
    .service-icon svg {
        width: 35px;
        height: 35px;
    }

    .contact-form-wrapper {
        padding: 2rem 1.5rem;
    }

    .contact-info h2 {
        font-size: 2rem;
    }

    .nav-links {
        width: 100%;
        right: -100%;
    }

    .testimonial-text {
        font-size: 1rem;
    }

    .container {
        padding: 0 15px;
    }
}

@media (max-width: 360px) {
    .hero-title {
        font-size: 1.75rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

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

