/* ===================================
   INSIGHT APPLIANCE REPAIR - CUSTOM CSS
   Modern Dark Theme with Silver/Grey Metallic Colors
   =================================== */

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #c5d4e8;
    --primary-dark: #a0b3cc;
    --primary-light: #dfe8f3;
    --accent-color: #7a8ca6;
    --accent-dark: #5a6c85;
    --accent-light: #97a8bf;
    --silver: #d4dfe9;
    --steel: #5d6a7c;
    --dark-bg: #1c1f26;
    --dark-bg-secondary: #26292f;
    --dark-bg-tertiary: #2f3239;
    --dark-bg-card: #141d27;
    --section-alt-bg: #1f2229;
    --warm-white: #f8f9fa;
    --text-white: #f5f5f7;
    --text-gray: #d1d5db;
    --text-gray-light: #9ca3af;
    --text-warm: #e8eaed;
    --border-gray: #3a3f49;
    --border-accent: rgba(197, 212, 232, 0.3);
    --glow-silver: rgba(212, 223, 233, 0.25);
    --glow-steel: rgba(93, 106, 124, 0.2);
    --button-primary: #4a5768;
    --button-primary-hover: #3a4555;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--dark-bg);
}

html {
    scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--dark-bg-secondary);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* Navigation Styles */
.nav-link {
    color: var(--text-gray);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    text-decoration: none;
}

.nav-link:hover {
    color: var(--primary-light);
}

.nav-link.active {
    color: var(--primary-light);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Button Styles */
.btn-primary {
    background: linear-gradient(135deg, var(--button-primary) 0%, var(--steel) 100%);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(74, 87, 104, 0.4);
    position: relative;
    overflow: hidden;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
}

.btn-primary::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.6s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(74, 87, 104, 0.5);
    background: linear-gradient(135deg, var(--button-primary-hover) 0%, var(--accent-dark) 100%);
}

.btn-secondary {
    background: transparent;
    color: var(--text-white);
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
    color: var(--dark-bg);
    box-shadow: 0 4px 15px var(--glow-silver);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

/* Mobile Menu Styles */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 400px;
    height: 100vh;
    background: var(--dark-bg-secondary);
    z-index: 1000;
    transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.5);
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-gray);
}

.mobile-menu-nav {
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mobile-menu-link {
    color: var(--text-gray);
    text-decoration: none;
    padding: 1rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    font-weight: 500;
}

.mobile-menu-link:hover {
    background: var(--dark-bg-tertiary);
    color: var(--primary-light);
    transform: translateX(5px);
}

.mobile-menu-social {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    border-top: 1px solid var(--border-gray);
    justify-content: center;
}

.mobile-menu-social a {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--dark-bg-tertiary);
    border-radius: 50%;
    color: var(--text-white);
    transition: all 0.3s ease;
    text-decoration: none;
}

.mobile-menu-social a:hover {
    background: var(--primary-color);
    transform: scale(1.1);
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--accent-dark) 100%);
    position: relative;
    padding-top: 80px;
    overflow: hidden;
}

.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-video-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(28, 31, 38, 0.65) 0%, rgba(38, 41, 47, 0.55) 100%);
    z-index: 1;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: fill;
    opacity: 0.7;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -15%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, var(--glow-silver) 0%, transparent 65%);
    border-radius: 50%;
    animation: pulseGlow 10s ease-in-out infinite;
    z-index: 1;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -25%;
    left: -15%;
    width: 650px;
    height: 650px;
    background: radial-gradient(circle, var(--glow-steel) 0%, transparent 65%);
    border-radius: 50%;
    animation: pulseGlow 12s ease-in-out infinite reverse;
    z-index: 1;
}

@keyframes pulseGlow {

    0%,
    100% {
        transform: scale(1) translateY(0);
        opacity: 1;
    }

    50% {
        transform: scale(1.15) translateY(-30px);
        opacity: 0.7;
    }
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
}

/* Hero Logo Styles - Centered Above Text */
.hero-logo-container {
    display: flex;
    justify-content: center;
    animation: fadeInDown 1s ease-out;
}

.hero-logo {
    height: 300px;
    width: auto;
    filter: drop-shadow(0 10px 40px rgba(0, 0, 0, 0.8));
    transition: all 0.3s ease;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text-white);
    line-height: 1.15;
    text-shadow: 3px 3px 12px rgba(0, 0, 0, 0.7);
    letter-spacing: -0.5px;
}

.hero-subtitle {
    font-size: 1.35rem;
    color: var(--text-warm);
    margin-bottom: 2.5rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.hero-features {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-warm);
    font-weight: 600;
    padding: 1rem 1.75rem;
    background: rgba(197, 212, 232, 0.18);
    backdrop-filter: blur(12px);
    border-radius: 50px;
    border: 1.5px solid var(--border-accent);
    transition: all 0.3s ease;
}

.hero-feature:hover {
    transform: translateY(-3px);
    border-color: var(--primary-color);
    box-shadow: 0 6px 20px var(--glow-silver);
    background: rgba(197, 212, 232, 0.25);
}

.hero-feature i {
    color: var(--primary-light);
    font-size: 1.5rem;
}

/* Section Styles */
.section-padding {
    padding: 8rem 0;
}

/* Section Background Variations */
.about-section-enhanced {
    background: linear-gradient(135deg, #1a1d24 0%, #26292f 50%, #1c1f26 100%);
    position: relative;
}

.about-section-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 15% 25%, var(--glow-silver) 0%, transparent 45%),
        radial-gradient(circle at 85% 75%, var(--glow-steel) 0%, transparent 45%);
    opacity: 0.03;
    pointer-events: none;
}

.services-section {
    background:
        radial-gradient(ellipse at 20% 30%, rgba(93, 106, 124, 0.04) 0%, transparent 40%),
        radial-gradient(ellipse at 80% 70%, rgba(122, 140, 166, 0.03) 0%, transparent 40%),
        linear-gradient(135deg, #1f2229 0%, #252a35 100%);
    position: relative;
}

.services-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(45deg,
            transparent,
            transparent 80px,
            rgba(197, 212, 232, 0.008) 80px,
            rgba(197, 212, 232, 0.008) 81px);
    pointer-events: none;
}

/* Brands Section with Background Image */
.brands-section {
    background-image: url('images/work1.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.brands-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(28, 31, 38, 0.92) 0%,
            rgba(38, 41, 47, 0.88) 50%,
            rgba(28, 31, 38, 0.92) 100%);
    z-index: 1;
}

.brands-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(197, 212, 232, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(93, 106, 124, 0.05) 0%, transparent 50%);
    z-index: 2;
    pointer-events: none;
}

.brands-section .container {
    position: relative;
    z-index: 3;
}

.gallery-section {
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--section-alt-bg) 100%);
    position: relative;
    overflow: hidden;
}

.gallery-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 120%;
    height: 200%;
    background:
        conic-gradient(from 180deg at 50% 50%,
            transparent 0deg,
            rgba(212, 223, 233, 0.025) 45deg,
            transparent 90deg,
            rgba(93, 106, 124, 0.02) 135deg,
            transparent 180deg,
            rgba(197, 212, 232, 0.03) 225deg,
            transparent 270deg,
            rgba(122, 140, 166, 0.025) 315deg,
            transparent 360deg);
    animation: rotate 120s linear infinite;
    pointer-events: none;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.reviews-section {
    background:
        radial-gradient(circle at 25% 25%, rgba(74, 87, 104, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(160, 179, 204, 0.04) 0%, transparent 50%),
        linear-gradient(180deg, var(--dark-bg-secondary) 0%, var(--dark-bg-tertiary) 100%);
    position: relative;
}

.contact-section {
    background:
        linear-gradient(135deg, rgba(28, 31, 38, 0.9) 0%, rgba(47, 50, 57, 0.8) 100%),
        repeating-linear-gradient(90deg,
            transparent,
            transparent 150px,
            rgba(197, 212, 232, 0.015) 150px,
            rgba(197, 212, 232, 0.015) 151px);
    position: relative;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-block;
    margin-bottom: 1rem;
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, rgba(74, 87, 104, 0.5) 0%, rgba(93, 106, 124, 0.4) 100%);
    border-radius: 50px;
    border: 1.5px solid rgba(197, 212, 232, 0.35);
    backdrop-filter: blur(10px);
}

.section-badge span {
    color: var(--primary-light);
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title {
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-white);
    position: relative;
    display: block;
    padding-bottom: 1.5rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--steel) 0%, var(--primary-color) 50%, var(--steel) 100%);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-gray-light);
    margin-top: 0.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Services Grid - Responsive Layout */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

@media (min-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

.service-card {
    background: var(--dark-bg-card);
    padding: 2.5rem;
    border-radius: 1rem;
    transition: all 0.4s ease;
    border: 2px solid var(--border-gray);
    position: relative;
    overflow: hidden;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--accent-color) 0%, var(--primary-color) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, var(--glow-silver) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover::after {
    opacity: 0.15;
}

.service-card:hover {
    transform: translateY(-12px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 40px var(--glow-silver);
}

.service-icon {
    width: 75px;
    height: 75px;
    background: linear-gradient(135deg, var(--button-primary) 0%, var(--steel) 100%);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.75rem;
    font-size: 2rem;
    color: white;
    position: relative;
    box-shadow: 0 4px 15px rgba(74, 87, 104, 0.4);
    flex-shrink: 0;
}

.service-icon::after {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 1rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover .service-icon::after {
    opacity: 0.4;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-white);
    flex-shrink: 0;
}

.service-description {
    color: var(--text-gray-light);
    line-height: 1.7;
    flex-grow: 1;
}

/* Brands Grid */
.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .brands-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 1024px) {
    .brands-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}

.brand-card {
    background: rgba(20, 29, 39, 0.8);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    border: 2px solid var(--border-gray);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--text-gray);
    position: relative;
    min-height: 140px;
}

.brand-card i {
    color: var(--primary-color);
    transition: all 0.4s ease;
}

.brand-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-8px) scale(1.02);
    color: var(--primary-light);
    box-shadow: 0 10px 30px var(--glow-silver);
    background: rgba(197, 212, 232, 0.12);
}

.brand-card:hover i {
    transform: rotate(360deg) scale(1.1);
    color: var(--primary-light);
}

/* About Section Enhancements */

/* Modern About Cards - 3 Column Layout */
.about-modern-card {
    background: linear-gradient(135deg, #141d27 0%, #1a2332 100%);
    padding: 2.5rem;
    border-radius: 1.5rem;
    border: 2px solid var(--border-gray);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.about-modern-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--steel) 0%, var(--primary-color) 50%, var(--steel) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.about-modern-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-8px);
    box-shadow: 0 20px 50px var(--glow-silver);
}

.about-modern-card:hover::before {
    opacity: 1;
}

.about-modern-icon-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.about-modern-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--button-primary) 0%, var(--steel) 100%);
    border-radius: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    box-shadow: 0 10px 30px rgba(74, 87, 104, 0.5);
    transition: all 0.4s ease;
}

.about-modern-card:hover .about-modern-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(74, 87, 104, 0.6);
}

.about-modern-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 1.5rem;
    text-align: center;
    line-height: 1.2;
}

.about-modern-text {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 1rem;
    text-align: center;
}

.about-modern-text:last-child {
    margin-bottom: 0;
}

/* Modern Center Image */
.about-modern-image {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 500px;
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
    border: 3px solid var(--border-gray);
    transition: all 0.4s ease;
}

.about-modern-image:hover {
    transform: scale(1.02);
    box-shadow: 0 35px 80px rgba(0, 0, 0, 0.5);
    border-color: var(--primary-color);
}

.about-modern-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.about-modern-image:hover img {
    transform: scale(1.05);
}

.about-image-badge-modern {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--button-primary) 0%, var(--steel) 100%);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-align: center;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border: 2px solid rgba(197, 212, 232, 0.3);
}

.about-image-badge-modern i {
    color: white;
    font-size: 1.5rem;
}

.about-image-badge-modern span {
    color: white;
    font-weight: 700;
    font-size: 1.125rem;
    white-space: nowrap;
}

/* Why Choose Section Spacing */
.why-choose-section {
    margin-top: 4rem;
    padding-top: 4rem;
    border-top: 2px solid var(--border-gray);
}

/* Old styles - keeping for backward compatibility if needed */
.about-content-box-enhanced {
    background: #141d27;
    padding: 3rem;
    border-radius: 1.5rem;
    border: 2px solid var(--border-gray);
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.about-content-box-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--steel) 0%, var(--primary-color) 50%, var(--steel) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.about-content-box-enhanced:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 20px 50px var(--glow-silver);
}

.about-content-box-enhanced:hover::before {
    opacity: 1;
}

.about-content-box-enhanced p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-image-enhanced {
    position: relative;
    width: 100%;
    height: 600px;
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
    border: 3px solid var(--border-gray);
    transition: all 0.4s ease;
}

.about-image-enhanced:hover {
    transform: scale(1.02) translateY(-10px);
    box-shadow: 0 35px 80px rgba(0, 0, 0, 0.5);
    border-color: var(--primary-color);
}

.about-image-enhanced img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.about-image-enhanced:hover img {
    transform: scale(1.05);
}

.about-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(28, 31, 38, 0.7) 0%, transparent 50%);
    z-index: 1;
}

.about-image-badge {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    background: linear-gradient(135deg, var(--button-primary) 0%, var(--steel) 100%);
    padding: 1.5rem 2rem;
    border-radius: 1rem;
    text-align: center;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.about-image-badge i {
    color: white;
}

.about-image-badge p {
    color: white;
    margin: 0;
}

.about-feature-card {
    background: #141d27;
    padding: 2.5rem;
    border-radius: 1.5rem;
    border: 2px solid var(--border-gray);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.about-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--steel) 0%, var(--primary-color) 50%, var(--steel) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.about-feature-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-10px);
    box-shadow: 0 20px 50px var(--glow-silver);
}

.about-feature-card:hover::before {
    transform: scaleX(1);
}

.about-feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--button-primary) 0%, var(--steel) 100%);
    border-radius: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 30px rgba(74, 87, 104, 0.4);
    transition: all 0.4s ease;
}

.about-feature-card:hover .about-feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(74, 87, 104, 0.5);
}

/* Review Cards */
.review-card {
    background: var(--dark-bg-card);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid var(--border-gray);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    position: relative;
}

.review-card::after {
    content: '"';
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 6rem;
    color: var(--primary-color);
    opacity: 0.1;
    font-family: Georgia, serif;
    line-height: 1;
}

.review-card:hover {
    border-color: var(--border-accent);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px var(--glow-silver);
}

.review-stars {
    color: #fbbf24;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.review-text {
    color: var(--text-gray);
    line-height: 1.7;
    flex-grow: 1;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.review-author {
    color: var(--text-gray-light);
    font-weight: 600;
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background:
        radial-gradient(ellipse at 20% 30%, rgba(212, 223, 233, 0.15) 0%, transparent 40%),
        radial-gradient(ellipse at 80% 70%, rgba(197, 212, 232, 0.12) 0%, transparent 40%),
        radial-gradient(ellipse at 50% 50%, rgba(169, 185, 203, 0.1) 0%, transparent 50%),
        linear-gradient(135deg, #1a1f28 0%, #252a35 50%, #1a1f28 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -8%;
    width: 550px;
    height: 550px;
    background: radial-gradient(circle, rgba(212, 223, 233, 0.25) 0%, transparent 65%);
    border-radius: 50%;
    animation: float 7s ease-in-out infinite;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -35%;
    left: -8%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(93, 106, 124, 0.3) 0%, transparent 65%);
    border-radius: 50%;
    animation: float 9s ease-in-out infinite reverse;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-25px) scale(1.05);
    }
}

/* Contact Section */
.contact-info-form-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    background: var(--dark-bg-card);
    padding: 3rem;
    border-radius: 1.5rem;
    border: 2px solid var(--border-gray);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.contact-form-wrapper {
    background: var(--dark-bg-secondary);
    padding: 2.5rem;
    border-radius: 1rem;
    border: 1px solid var(--border-gray);
}

.contact-form-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-light);
    margin-bottom: 1.5rem;
    border-bottom: 2px solid var(--border-gray);
    padding-bottom: 0.5rem;
}

.form-row-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-gray);
    font-weight: 600;
}

.form-input {
    width: 100%;
    padding: 0.75rem 1rem;
    background: var(--dark-bg);
    border: 1px solid var(--border-gray);
    border-radius: 0.5rem;
    color: var(--text-white);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(197, 212, 232, 0.2);
}

.form-input::placeholder {
    color: var(--text-gray-light);
}

/* Contact Info Cards */
.contact-info-card {
    display: flex;
    gap: 1.5rem;
    align-items: start;
    background: var(--dark-bg-tertiary);
    padding: 1.5rem;
    border-radius: 1rem;
    border: 1px solid var(--border-gray);
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    border-color: var(--border-accent);
    transform: translateX(5px);
    box-shadow: 0 4px 15px var(--glow-silver);
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--button-primary) 0%, var(--steel) 100%);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
}

.contact-info-title {
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-white);
}

.contact-info-link {
    color: var(--primary-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-link:hover {
    color: var(--primary-color);
}

/* Social Links */
.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-links a {
    width: 50px;
    height: 50px;
    background: var(--dark-bg-secondary);
    border: 1px solid var(--border-gray);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    transition: all 0.3s ease;
    font-size: 1.25rem;
    text-decoration: none;
}

.social-links a:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-3px);
}

.social-icon {
    width: 40px;
    height: 40px;
    background: var(--dark-bg-secondary);
    border: 1px solid var(--border-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: scale(1.1);
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    aspect-ratio: 4/3;
    border: 1px solid var(--border-gray);
    transition: all 0.3s ease;
    background: var(--dark-bg-card);
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px var(--glow-silver);
    border-color: var(--primary-color);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(28, 31, 38, 0.9) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-title {
    color: var(--primary-light);
    font-weight: 700;
    font-size: 1.25rem;
}

/* Map Container */
.map-container-full {
    border-radius: 1rem;
    overflow: hidden;
    border: 3px solid var(--border-gray);
    height: 450px;
    box-shadow: 0 8px 25px var(--glow-silver);
    transition: all 0.3s ease;
}

.map-container-full:hover {
    box-shadow: 0 12px 35px var(--glow-silver);
    border-color: var(--primary-color);
}

.map-container-full iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Scroll to Top Button */
.scroll-top-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--button-primary) 0%, var(--steel) 100%);
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 100;
    box-shadow: 0 4px 15px rgba(74, 87, 104, 0.4);
}

.scroll-top-btn.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(74, 87, 104, 0.5);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1280px) {
    .hero-logo {
        height: 180px;
    }
}

@media (max-width: 1024px) {
    .hero-logo {
        height: 160px;
    }

    .section-padding {
        padding: 6rem 0;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2.25rem;
    }

    .contact-info-form-container {
        grid-template-columns: 1fr;
        padding: 2rem;
    }

    .about-modern-image {
        min-height: 400px;
    }

    .about-modern-card {
        padding: 2rem;
    }

    .about-modern-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }

    .about-modern-title {
        font-size: 1.75rem;
    }

    .about-image-enhanced {
        height: 450px;
    }

    .about-content-box-enhanced {
        padding: 2rem;
    }

    .about-feature-card {
        padding: 2rem;
    }

    .form-row-2 {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }

    .why-choose-section {
        margin-top: 3rem;
        padding-top: 3rem;
    }
}

@media (max-width: 768px) {
    .hero-logo {
        height: 140px;
    }

    .section-padding {
        padding: 4rem 0;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.125rem;
    }

    .section-title {
        font-size: 1.875rem;
    }

    .hero-features {
        gap: 1rem;
    }

    .hero-feature {
        font-size: 0.875rem;
        padding: 0.75rem 1.25rem;
    }

    /* Stack About section on mobile */
    .about-modern-image {
        min-height: 300px;
    }

    .about-modern-card {
        padding: 2rem;
    }

    .about-modern-icon {
        width: 70px;
        height: 70px;
        font-size: 1.75rem;
    }

    .about-modern-title {
        font-size: 1.5rem;
    }

    .about-modern-text {
        font-size: 0.95rem;
    }

    .about-image-badge-modern {
        padding: 0.75rem 1.5rem;
        bottom: 1rem;
    }

    .about-image-badge-modern i {
        font-size: 1.25rem;
    }

    .about-image-badge-modern span {
        font-size: 1rem;
    }

    .about-image-enhanced {
        height: 350px;
    }

    .contact-form-wrapper {
        padding: 1.5rem;
    }

    .contact-info-card {
        flex-direction: row;
        align-items: center;
    }

    .service-card {
        height: auto;
        padding: 2rem;
    }

    .brand-card {
        padding: 1.5rem;
        min-height: 120px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .why-choose-section {
        margin-top: 2rem;
        padding-top: 2rem;
    }
}

@media (max-width: 640px) {
    .hero-logo {
        height: 120px;
    }

    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-lg {
        width: 100%;
        justify-content: center;
    }

    .hero-feature {
        flex: 1 1 100%;
        justify-content: center;
    }

    .section-header {
        margin-bottom: 2.5rem;
    }

    .services-grid {
        gap: 1rem;
    }

    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .contact-info-card {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .contact-info-icon {
        margin-bottom: 0.5rem;
    }
}

@media (max-width: 480px) {
    .hero-logo {
        height: 100px;
    }

    .hero-title {
        font-size: 1.75rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.625rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .about-content-box-enhanced {
        padding: 1.5rem;
    }

    .about-feature-card {
        padding: 1.5rem;
    }
}

/* Performance Optimizations */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Print Styles */
@media print {

    .mobile-menu,
    .mobile-menu-overlay,
    .scroll-top-btn,
    #mobile-menu-btn {
        display: none !important;
    }
}