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

:root {
    --primary-color: #6b5ce7;
    --secondary-color: #4a3fb8;
    --accent-color: #00d9ff;
    --text-color: #e8eef5;
    --text-light: #a8b2c1;
    --bg-color: #0a0e1a;
    --bg-secondary: #12172a;
    --white: #ffffff;
    --card-bg: rgba(18, 23, 42, 0.85);
    --shadow: 0 4px 15px rgba(107, 92, 231, 0.15);
    --shadow-lg: 0 8px 30px rgba(107, 92, 231, 0.25);
    --shadow-xl: 0 15px 50px rgba(107, 92, 231, 0.35);
    --border-radius: 24px;
    --border-radius-sm: 16px;
    --glow-primary: 0 0 20px rgba(107, 92, 231, 0.5);
    --glow-accent: 0 0 20px rgba(0, 217, 255, 0.5);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background: #0a0e1a;
    background-image: 
        linear-gradient(rgba(107, 92, 231, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(107, 92, 231, 0.03) 1px, transparent 1px),
        radial-gradient(circle at 20% 50%, rgba(107, 92, 231, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 217, 255, 0.08) 0%, transparent 50%);
    background-size: 50px 50px, 50px 50px, 100% 100%, 100% 100%;
    background-position: 0 0, 0 0, 0 0, 0 0;
    min-height: 100vh;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(107, 92, 231, 0.05) 0%, transparent 50%, rgba(0, 217, 255, 0.05) 100%);
    pointer-events: none;
    z-index: 0;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Fade in animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-in {
    animation: fadeInUp 0.6s ease-out;
}

/* ===========================
   Statistics Section
   =========================== */
.stats-section {
    padding: 0;
    margin: -60px 0 80px 0;
    position: relative;
    z-index: 10;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
}

.stat-card {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    padding: 40px 30px;
    border-radius: var(--border-radius-sm);
    text-align: center;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
    letter-spacing: -2px;
    line-height: 1;
}

.stat-suffix {
    display: inline;
    font-size: 2.5rem;
    color: var(--primary-color);
    font-weight: 700;
    margin-left: -10px;
}

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

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
}

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

/* ===========================
   Header & Navigation
   =========================== */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(10, 14, 26, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(107, 92, 231, 0.3), 0 1px 0 rgba(107, 92, 231, 0.2);
    border-bottom: 1px solid rgba(107, 92, 231, 0.2);
}

.navbar {
    background: transparent;
    padding: 15px 0;
}

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

.nav-right {
    display: flex;
    align-items: center;
    gap: 40px;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--white);
    display: flex;
    align-items: center;
}

.logo-image {
    height: 50px;
    width: auto;
    max-width: 250px;
}

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

.nav-menu a {
    color: var(--white);
    font-weight: 500;
    padding: 10px 18px;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.nav-menu a:hover,
.nav-menu a.active {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.header-phone {
    margin-left: 10px;
    padding-left: 30px;
    border-left: 2px solid rgba(255, 255, 255, 0.3);
}

.phone-link {
    color: var(--white);
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 25px;
    display: inline-block;
    backdrop-filter: blur(10px);
}

.phone-link:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.05);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--white);
    margin: 3px 0;
    transition: 0.3s;
}

/* ===========================
   Hero Section
   =========================== */
.hero {
    position: relative;
    background: linear-gradient(135deg, rgba(74, 63, 184, 0.3) 0%, rgba(107, 92, 231, 0.2) 100%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--white);
    padding: 120px 0;
    text-align: center;
    overflow: hidden;
    margin-bottom: 40px;
    border-bottom: 1px solid rgba(107, 92, 231, 0.3);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(107, 92, 231, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(0, 217, 255, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.hero-gallery-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
    transition: opacity 2s ease-in-out;
}

#heroGalleryBg1 {
    opacity: 0.3;
}

#heroGalleryBg2 {
    opacity: 0;
}

.hero-gallery-bg.active {
    opacity: 0.3;
}

.hero-gallery-bg.inactive {
    opacity: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 14, 26, 0.6);
    backdrop-filter: blur(2px);
    z-index: 2;
}

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 300;
    margin-bottom: 25px;
    line-height: 1.2;
    letter-spacing: -1.5px;
}

.hero-title strong {
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.3rem;
    max-width: 900px;
    margin: 0 auto 40px;
    opacity: 0.95;
    font-weight: 300;
    line-height: 1.7;
}

/* ===========================
   Buttons
   =========================== */
.btn {
    display: inline-block;
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    font-size: 1rem;
    letter-spacing: 0.3px;
    position: relative;
    overflow: hidden;
}

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

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

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    box-shadow: 0 4px 15px rgba(107, 92, 231, 0.4);
    border: 1px solid rgba(107, 92, 231, 0.5);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(107, 92, 231, 0.6), var(--glow-primary);
    border-color: var(--primary-color);
}

.btn-large {
    padding: 18px 45px;
    font-size: 1.2rem;
}

/* ===========================
   Services Section
   =========================== */
.services {
    padding: 80px 0;
    background: transparent;
}

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

.service-card {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    padding: 45px 35px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(107, 92, 231, 0.3);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    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% 0%, rgba(107, 92, 231, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

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

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

.service-icon {
    font-size: 3.5rem;
    margin-bottom: 25px;
    display: inline-block;
    filter: drop-shadow(0 4px 8px rgba(26, 115, 232, 0.3));
}

.service-icon-img {
    width: 100%;
    height: 120px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
}

.service-icon-img img {
    width: 100%;
    max-width: 280px;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(26, 115, 232, 0.3));
    transition: all 0.3s ease;
}

.service-card:hover .service-icon-img img {
    transform: scale(1.05);
    filter: drop-shadow(0 6px 12px rgba(26, 115, 232, 0.4));
}

.service-card h3 {
    font-size: 1.75rem;
    margin-bottom: 25px;
    color: var(--white);
    font-weight: 600;
    letter-spacing: -0.5px;
    position: relative;
    z-index: 1;
}

.service-card ul {
    list-style: none;
}

.service-card li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    font-size: 1.05rem;
    color: var(--text-light);
}

.service-card li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

/* ===========================
   ADAS Systems Section
   =========================== */
.adas-systems {
    padding: 80px 0;
    background: transparent;
}

.adas-systems h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 60px;
    color: var(--white);
    font-weight: 300;
    letter-spacing: -1px;
}

.adas-systems h2 strong {
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.adas-item {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    padding: 35px 25px;
    border-radius: var(--border-radius-sm);
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(107, 92, 231, 0.3);
    position: relative;
}

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

.adas-item:hover::after {
    opacity: 1;
}

.adas-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-lg), var(--glow-primary);
    border-color: var(--primary-color);
}

.adas-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.adas-icon-svg {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.adas-item:hover .adas-icon-svg {
    color: var(--accent-color);
    transform: scale(1.1);
}

.adas-icon-img {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.adas-icon-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.3s ease;
    filter: brightness(0) invert(1);
}

.adas-item:hover .adas-icon-img img {
    transform: scale(1.1);
    filter: brightness(0) invert(1) drop-shadow(0 4px 12px rgba(107, 92, 231, 0.6));
}

.adas-item h4 {
    font-size: 1.15rem;
    color: var(--white);
    font-weight: 500;
    letter-spacing: -0.3px;
}

/* ===========================
   Coverage Section
   =========================== */
.coverage {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(74, 63, 184, 0.2) 0%, rgba(10, 14, 26, 0.8) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(107, 92, 231, 0.3);
    border-bottom: 1px solid rgba(107, 92, 231, 0.3);
}

.coverage::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 217, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.coverage-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.coverage-text {
    text-align: left;
}

.coverage h2 {
    font-size: 3rem;
    margin-bottom: 30px;
    font-weight: 300;
    letter-spacing: -1px;
}

.coverage p {
    font-size: 1.25rem;
    line-height: 1.8;
    opacity: 0.95;
}

.coverage-image {
    text-align: center;
}

.coverage-image img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
    transition: transform 0.4s ease;
}

.coverage-image img:hover {
    transform: scale(1.03);
}

/* ===========================
   Benefits Section
   =========================== */
.benefits {
    padding: 80px 0;
    background: transparent;
}

.benefits h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 60px;
    font-weight: 300;
    letter-spacing: -1px;
    color: var(--white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.benefit-card {
    text-align: center;
    padding: 50px 40px;
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    transition: all 0.4s ease;
    border: 1px solid rgba(107, 92, 231, 0.3);
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(107, 92, 231, 0.2) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

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

.benefit-icon {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(107, 92, 231, 0.2), rgba(0, 217, 255, 0.2));
    border-radius: 50%;
    border: 2px solid rgba(107, 92, 231, 0.4);
    position: relative;
    z-index: 1;
    box-shadow: var(--glow-primary);
}

.benefit-card h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--white);
    font-weight: 600;
    letter-spacing: -0.5px;
    position: relative;
    z-index: 1;
}

.benefit-card p {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

/* ===========================
   Gallery Preview Section
   =========================== */
.gallery-preview {
    padding: 80px 0;
    background: transparent;
    overflow: hidden;
}

.gallery-preview h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 50px;
    font-weight: 300;
    letter-spacing: -1px;
    color: var(--white);
}

.gallery-preview h2 strong {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gallery-scroll-wrapper {
    position: relative;
    overflow-x: hidden;
    margin: 0 -20px;
}

.gallery-scroll {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 20px;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) rgba(107, 92, 231, 0.1);
}

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

.gallery-scroll::-webkit-scrollbar-track {
    background: rgba(107, 92, 231, 0.1);
    border-radius: 10px;
}

.gallery-scroll::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 10px;
}

.gallery-scroll::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}

.gallery-preview-item {
    flex: 0 0 350px;
    height: 250px;
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(107, 92, 231, 0.3);
    box-shadow: var(--shadow);
}

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

.gallery-preview-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg), var(--glow-primary);
    border-color: var(--primary-color);
}

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

/* ===========================
   Services List Section
   =========================== */
.services-list {
    padding: 80px 0;
    background: transparent;
}

.services-list h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 60px;
    font-weight: 300;
    letter-spacing: -1px;
    color: var(--white);
}

.services-list h2 strong {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.services-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.service-column {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    padding: 35px;
    border-radius: var(--border-radius-sm);
    box-shadow: var(--shadow);
    border: 1px solid rgba(107, 92, 231, 0.3);
    transition: all 0.3s ease;
}

.service-column:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg), var(--glow-primary);
    border-color: var(--primary-color);
}

.service-column ul {
    list-style: none;
}

.service-column li {
    padding: 14px 0;
    padding-left: 35px;
    position: relative;
    font-size: 1.05rem;
    color: var(--text-light);
}

.service-column li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.3rem;
}

.cta-center {
    text-align: center;
    margin-top: 20px;
}

/* ===========================
   Page Header
   =========================== */
.page-header {
    background: linear-gradient(135deg, rgba(74, 63, 184, 0.3) 0%, rgba(10, 14, 26, 0.8) 100%);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(107, 92, 231, 0.3);
}

.page-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 217, 255, 0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.page-header h1 {
    font-size: 3.5rem;
    margin-bottom: 15px;
    font-weight: 300;
    letter-spacing: -1.5px;
    position: relative;
    z-index: 1;
}

.page-header h1 strong {
    font-weight: 700;
}

.page-header p {
    font-size: 1.3rem;
    opacity: 0.95;
    font-weight: 300;
    position: relative;
    z-index: 1;
}

/* ===========================
   About Page
   =========================== */
.about-content {
    padding: 80px 0;
}

.about-intro,
.about-mission {
    margin-bottom: 80px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.about-intro h2,
.about-mission h2,
.about-features h2 {
    font-size: 3rem;
    margin-bottom: 30px;
    color: var(--white);
    font-weight: 300;
    letter-spacing: -1px;
}

.about-intro h2 strong,
.about-mission h2 strong,
.about-features h2 strong {
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-intro p,
.about-mission p {
    font-size: 1.2rem;
    line-height: 1.9;
    color: var(--text-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-item {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    padding: 40px 35px;
    border-radius: var(--border-radius-sm);
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
    border: 1px solid rgba(107, 92, 231, 0.3);
}

.feature-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg), var(--glow-primary);
    border-color: var(--primary-color);
}

.feature-item h3 {
    font-size: 1.6rem;
    margin-bottom: 18px;
    color: var(--white);
    font-weight: 600;
}

.feature-item p {
    color: var(--text-light);
    line-height: 1.7;
}

.about-cta {
    text-align: center;
    margin-top: 80px;
    padding: 70px 50px;
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(107, 92, 231, 0.3);
}

.about-cta h2 {
    font-size: 3rem;
    margin-bottom: 25px;
    font-weight: 300;
    letter-spacing: -1px;
    color: var(--white);
}

.about-cta h2 strong {
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-cta p {
    font-size: 1.25rem;
    margin-bottom: 35px;
    color: var(--text-light);
}

/* ===========================
   Gallery Page
   =========================== */
.gallery-content {
    padding: 80px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius-sm);
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid rgba(107, 92, 231, 0.3);
    cursor: pointer;
    aspect-ratio: 16/9;
}

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

.gallery-item:hover {
    transform: scale(1.03) translateY(-5px);
    box-shadow: var(--shadow-xl), var(--glow-primary);
    border-color: var(--primary-color);
}

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

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    animation: fadeIn 0.3s ease;
}

.lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 0 50px rgba(107, 92, 231, 0.5);
    animation: zoomIn 0.3s ease;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 50px;
    color: white;
    font-size: 50px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10000;
}

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

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes zoomIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

/* ===========================
   Contact Page
   =========================== */
.contact-content {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-form-section h2,
.contact-info-section h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: var(--white);
    font-weight: 600;
    letter-spacing: -0.5px;
}

.contact-form-section p,
.contact-info-section p {
    color: var(--text-light);
    font-size: 1.05rem;
}

/* Contact Form */
.contact-form {
    margin-top: 35px;
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    border: 1px solid rgba(107, 92, 231, 0.3);
}

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

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--white);
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid rgba(107, 92, 231, 0.3);
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: rgba(10, 14, 26, 0.5);
    color: var(--text-color);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(107, 92, 231, 0.2), var(--glow-primary);
    background: rgba(10, 14, 26, 0.7);
}

.form-group textarea {
    resize: vertical;
}

/* Alerts */
.alert {
    padding: 18px 20px;
    border-radius: 12px;
    margin-bottom: 25px;
    font-weight: 500;
}

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

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

/* Contact Info */
.contact-details {
    margin-top: 35px;
}

.contact-item {
    margin-bottom: 25px;
    padding: 30px;
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius-sm);
    box-shadow: var(--shadow);
    border: 1px solid rgba(107, 92, 231, 0.3);
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg), var(--glow-primary);
    border-color: var(--primary-color);
}

.contact-item h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--white);
    font-weight: 600;
}

.contact-item p {
    margin: 8px 0;
    color: var(--text-light);
    line-height: 1.7;
}

.contact-item a {
    color: var(--primary-color);
    font-weight: 600;
    transition: color 0.3s ease;
}

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

.small-text {
    font-size: 0.9rem;
    font-style: italic;
    opacity: 0.8;
}

.social-links-contact a {
    display: inline-block;
    margin-top: 10px;
}

/* ===========================
   Footer
   =========================== */
.footer {
    background: linear-gradient(135deg, rgba(10, 14, 26, 0.95) 0%, rgba(18, 23, 42, 0.98) 100%);
    color: var(--white);
    padding: 70px 0 30px;
    margin-top: 80px;
    position: relative;
    border-top: 1px solid rgba(107, 92, 231, 0.3);
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    box-shadow: 0 0 10px rgba(107, 92, 231, 0.5);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.footer-section h3 {
    font-size: 1.4rem;
    margin-bottom: 25px;
    color: var(--white);
    font-weight: 600;
    letter-spacing: -0.3px;
}

.footer-section p {
    margin-bottom: 12px;
    opacity: 0.85;
    line-height: 1.7;
}

.footer-section a {
    color: var(--white);
    opacity: 0.85;
    transition: all 0.3s ease;
}

.footer-section a:hover {
    opacity: 1;
    color: var(--accent-color);
    padding-left: 5px;
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    display: inline-block;
}

.social-links a {
    display: block;
    margin-bottom: 12px;
}

.payment-methods {
    margin-top: 25px;
}

.payment-icons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 15px;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.15);
}

.footer-bottom p {
    margin: 12px 0;
    opacity: 0.7;
    font-size: 0.95rem;
}

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

/* ===========================
   Book Now Nav Button
   =========================== */
.btn-book-nav {
    display: inline-block;
    padding: 10px 22px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(107, 92, 231, 0.4);
}

.btn-book-nav:hover,
.btn-book-nav.active {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(107, 92, 231, 0.6);
    color: var(--white);
}

.btn-remote-login {
    display: inline-block;
    padding: 10px 18px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 25px;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-remote-login:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
    color: var(--white);
}

/* ===========================
   Booking Page
   =========================== */
.booking-section {
    padding: 60px 0 80px;
}

.booking-grid {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 50px;
    align-items: start;
}

.booking-form-wrap h2 {
    font-size: 2rem;
    margin-bottom: 8px;
    color: var(--white);
}

.booking-form-wrap > p {
    color: var(--text-color);
    margin-bottom: 30px;
}

.form-fieldset {
    border: 1px solid rgba(107, 92, 231, 0.25);
    border-radius: var(--border-radius);
    padding: 28px 30px;
    margin-bottom: 24px;
    background: var(--card-bg);
}

.form-fieldset legend {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 0 12px;
}

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

.form-group select {
    width: 100%;
    padding: 14px 16px;
    background: var(--card-bg);
    border: 1px solid rgba(107, 92, 231, 0.3);
    border-radius: 8px;
    color: var(--white);
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b5ce7' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(107, 92, 231, 0.2), var(--glow-primary);
}

.form-group select option {
    background: #1a1f35;
    color: var(--white);
}

.reg-input {
    font-family: monospace;
    font-size: 1.2rem !important;
    font-weight: 700 !important;
    letter-spacing: 3px;
    text-transform: uppercase;
}

input[type="date"] {
    color-scheme: dark;
}

.field-hint {
    margin: 6px 0 0;
    font-size: 0.82rem;
    color: #6b7280;
    font-style: italic;
}

.checkbox-group {
    margin-top: 4px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    min-width: 20px;
    margin-top: 2px;
    accent-color: var(--primary-color);
    cursor: pointer;
}

.checkbox-text {
    color: var(--white);
    font-size: 1rem;
    line-height: 1.5;
}

.booking-notice {
    background: rgba(107, 92, 231, 0.1);
    border: 1px solid rgba(107, 92, 231, 0.25);
    border-radius: 8px;
    padding: 16px 20px;
    margin-top: 20px;
}

.booking-notice p {
    margin: 0;
    color: var(--text-color);
    font-size: 0.95rem;
    line-height: 1.6;
}

.booking-prompt {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(107, 92, 231, 0.1);
    border: 1px solid rgba(107, 92, 231, 0.25);
    border-radius: 10px;
    padding: 18px 22px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}

.booking-prompt p {
    margin: 0;
    color: var(--text-color);
    font-size: 0.95rem;
    flex: 1;
    min-width: 160px;
}

.booking-disclaimer {
    background: rgba(0, 217, 255, 0.05);
    border: 1px solid rgba(0, 217, 255, 0.2);
    border-radius: 8px;
    padding: 16px 20px;
    margin-bottom: 24px;
}

.booking-disclaimer p {
    margin: 0;
    color: var(--text-color);
    font-size: 0.9rem;
    line-height: 1.6;
}

.booking-disclaimer a {
    color: var(--accent-color);
}

/* Sidebar info cards */
.booking-info-wrap {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.booking-info-card {
    background: var(--card-bg);
    border: 1px solid rgba(107, 92, 231, 0.25);
    border-radius: var(--border-radius);
    padding: 28px 24px;
}

.booking-info-card h3 {
    color: var(--accent-color);
    font-size: 1.1rem;
    margin-bottom: 14px;
}

.booking-info-card p {
    color: var(--text-color);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0 0 8px;
}

.booking-info-card .small-text {
    font-size: 0.82rem;
    color: #6b7280;
}

.booking-steps {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.booking-steps li {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.step-num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    min-width: 30px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    font-weight: 700;
    font-size: 0.85rem;
}

.booking-steps li strong {
    display: block;
    color: var(--white);
    margin-bottom: 4px;
    font-size: 0.95rem;
}

.booking-steps li p {
    margin: 0;
    color: var(--text-color);
    font-size: 0.88rem;
    line-height: 1.5;
}

/* Confirmation screen */
.booking-confirmation {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    background: var(--card-bg);
    border: 1px solid rgba(107, 92, 231, 0.3);
    border-radius: var(--border-radius);
    padding: 60px 40px;
}

.confirmation-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.booking-confirmation h2 {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 16px;
}

.booking-confirmation p {
    color: var(--text-color);
    line-height: 1.7;
    margin-bottom: 12px;
}

.booking-confirmation a {
    color: var(--accent-color);
}

.required {
    color: var(--accent-color);
    font-size: 0.9em;
}

/* ===========================
   CRG Remote Page
   =========================== */
.page-header-remote {
    padding: 80px 0 60px;
    text-align: left;
}

.remote-hero-content {
    max-width: 700px;
}

.remote-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 18px;
}

.remote-hero-text h1 {
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.1;
}

.remote-hero-text p {
    font-size: 1.2rem;
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 32px;
    max-width: 580px;
}

.remote-hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    padding: 14px 32px;
    border: 2px solid rgba(107, 92, 231, 0.6);
    color: var(--white);
    font-weight: 600;
    font-size: 1rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    background: transparent;
}

.btn-outline:hover {
    border-color: var(--primary-color);
    background: rgba(107, 92, 231, 0.15);
    color: var(--white);
    transform: translateY(-2px);
}

.remote-banner {
    padding: 0 0 60px;
}

.remote-banner-img-wrap {
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid rgba(107, 92, 231, 0.3);
    box-shadow: 0 20px 60px rgba(0,0,0,0.4), var(--glow-primary);
}

.remote-banner-img-wrap img {
    width: 100%;
    height: auto;
    display: block;
}

/* How it works */
.remote-how {
    padding: 80px 0;
    background: transparent;
}

.section-header-centered {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.section-header-centered h2 {
    font-size: 2.8rem;
    color: var(--white);
    margin-bottom: 16px;
}

.section-header-centered p {
    font-size: 1.15rem;
    color: var(--text-color);
    line-height: 1.7;
}

.remote-how-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
}

.remote-how-grid::before {
    content: '';
    position: absolute;
    top: 48px;
    left: calc(12.5% + 24px);
    right: calc(12.5% + 24px);
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    z-index: 0;
}

.remote-how-card {
    background: var(--card-bg);
    border: 1px solid rgba(107, 92, 231, 0.25);
    border-radius: var(--border-radius);
    padding: 32px 24px;
    text-align: center;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.remote-how-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg), var(--glow-primary);
}

.remote-how-icon {
    font-size: 2.2rem;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.remote-how-card h3 {
    color: var(--white);
    font-size: 1.15rem;
    margin-bottom: 12px;
}

.remote-how-card p {
    color: var(--text-color);
    font-size: 0.92rem;
    line-height: 1.6;
}

/* Checklist */
.remote-checklist {
    list-style: none;
    padding: 0;
    margin: 20px 0 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.remote-checklist li {
    color: var(--text-color);
    font-size: 1rem;
    padding-left: 28px;
    position: relative;
    line-height: 1.5;
}

.remote-checklist li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
}

/* Service cards remote icons */
.remote-service-icon {
    font-size: 2.2rem;
    margin-bottom: 20px;
    display: block;
}

/* Why grid */
.remote-why {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(74, 63, 184, 0.1) 0%, rgba(10, 14, 26, 0.8) 100%);
    border-top: 1px solid rgba(107, 92, 231, 0.2);
    border-bottom: 1px solid rgba(107, 92, 231, 0.2);
}

.remote-why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.remote-why-item {
    background: var(--card-bg);
    border: 1px solid rgba(107, 92, 231, 0.2);
    border-radius: var(--border-radius);
    padding: 30px 26px;
    transition: all 0.3s ease;
}

.remote-why-item:hover {
    border-color: var(--primary-color);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md), var(--glow-primary);
}

.why-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 14px;
}

.remote-why-item h4 {
    color: var(--white);
    font-size: 1.05rem;
    margin-bottom: 10px;
}

.remote-why-item p {
    color: var(--text-color);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

/* CTA */
.remote-cta {
    padding: 90px 0;
}

.remote-cta-inner {
    text-align: center;
    max-width: 680px;
    margin: 0 auto;
    background: var(--card-bg);
    border: 1px solid rgba(107, 92, 231, 0.3);
    border-radius: var(--border-radius);
    padding: 60px 50px;
    position: relative;
    overflow: hidden;
}

.remote-cta-inner::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.remote-cta-inner h2 {
    font-size: 2.4rem;
    color: var(--white);
    margin-bottom: 16px;
}

.remote-cta-inner p {
    color: var(--text-color);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 32px;
}

.remote-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===========================
   Responsive Design
   =========================== */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-right {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
        flex-direction: column;
        gap: 0;
        padding: 20px;
        box-shadow: var(--shadow-lg);
        display: none;
    }
    
    .nav-right.active {
        display: flex;
    }
    
    .nav-menu {
        flex-direction: column;
        width: 100%;
        gap: 0;
    }
    
    .nav-menu li {
        width: 100%;
    }
    
    .nav-menu a {
        display: block;
        padding: 15px;
        width: 100%;
        text-align: left;
    }
    
    .btn-book-nav {
        width: 100%;
        text-align: center;
        border-radius: 8px;
        padding: 15px;
        margin-top: 5px;
    }

    .btn-remote-login {
        width: 100%;
        text-align: center;
        border-radius: 8px;
        padding: 15px;
        margin-top: 5px;
    }

    .header-phone {
        border-left: none;
        border-top: 2px solid rgba(255, 255, 255, 0.3);
        padding-left: 0;
        padding-top: 20px;
        margin-left: 0;
        margin-top: 15px;
        width: 100%;
    }
    
    .phone-link {
        display: block;
        text-align: center;
        width: 100%;
    }
    
    .logo-image {
        height: 40px;
        max-width: 180px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .form-fieldset {
        padding: 20px 18px;
    }

    .booking-info-wrap {
        order: -1;
    }
    
    .services-columns {
        grid-template-columns: 1fr;
    }
    
    .coverage-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .coverage-text {
        text-align: center;
    }
    
    .stats-section {
        margin: -40px 0 60px 0;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

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

    .remote-how-grid::before {
        display: none;
    }

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

    .remote-hero-text h1 {
        font-size: 2.4rem;
    }

    .remote-cta-inner {
        padding: 40px 28px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .services-grid,
    .adas-grid,
    .benefits-grid,
    .features-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 2.8rem;
    }
    
    section {
        padding: 50px 0 !important;
    }
    
    .page-header h1 {
        font-size: 2.2rem;
    }
    
    .container {
        padding: 0 20px;
    }
}
