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

:root {
    --primary-color: #020617;
    --primary-light: #151a2b;
    --accent-color: #38bdf8;
    --accent-hover: #0ea5e9;
    --accent-soft: rgba(56, 189, 248, 0.12);
    --text-dark: #f8fafc;
    --text-muted: rgba(248, 250, 252, 0.75);
    --text-light: rgba(226, 232, 240, 0.65);
    --bg-white: rgba(4, 7, 18, 0.95);
    --bg-light: rgba(9, 12, 24, 0.9);
    --bg-page: linear-gradient(135deg, #030712 0%, #050b1c 45%, #020617 100%);
    --border-color: rgba(148, 163, 184, 0.18);
    --card-border: rgba(56, 189, 248, 0.25);
    --shadow-sm: 0 25px 45px rgba(3, 7, 18, 0.35);
    --shadow: 0 40px 70px rgba(3, 7, 18, 0.45);
    --shadow-lg: 0 60px 110px rgba(3, 7, 18, 0.55);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --radius: 18px;
    --radius-lg: 30px;
}

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: url('../fonts/Inter/Inter-300.ttf') format('truetype');
}

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('../fonts/Inter/Inter-400.ttf') format('truetype');
}

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url('../fonts/Inter/Inter-500.ttf') format('truetype');
}

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('../fonts/Inter/Inter-600.ttf') format('truetype');
}

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('../fonts/Inter/Inter-700.ttf') format('truetype');
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: var(--text-dark);
    line-height: 1.5;
    font-weight: 400;
    letter-spacing: -0.01em;
    background: radial-gradient(circle at 0% 20%, rgba(56, 189, 248, 0.18), transparent 45%),
                radial-gradient(circle at 85% 10%, rgba(236, 72, 153, 0.2), transparent 35%),
                var(--bg-page);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    min-height: 100vh;
    overflow-x: hidden;
}

html {
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background: radial-gradient(circle at 10% 20%, rgba(99, 102, 241, 0.12), transparent 45%),
                radial-gradient(circle at 90% 10%, rgba(59, 130, 246, 0.18), transparent 40%),
                radial-gradient(circle at 80% 90%, rgba(14, 165, 233, 0.12), transparent 35%);
    pointer-events: none;
    z-index: 0;
}

main {
    position: relative;
    z-index: 1;
}

.container {
    width: min(1200px, 100%);
    margin: 0 auto;
    padding: 0 clamp(16px, 4vw, 40px);
}

/* Header & Navigation */
.header {
    background: rgba(2, 6, 23, 0.85);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 0.5px solid rgba(0, 0, 0, 0.08);
}

.menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
    visibility: hidden;
}

.menu-overlay.active {
    display: block;
    opacity: 1;
    visibility: visible;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    min-height: 60px;
}

.logo {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.logo-text {
    color: var(--text-dark);
}

.navbar-menu {
    display: flex;
    list-style: none;
    gap: 8px;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-link {
    text-decoration: none;
    color: var(--text-light);
    font-size: 15px;
    font-weight: 400;
    transition: var(--transition);
    padding: 10px 18px;
    display: flex;
    align-items: center;
    position: relative;
    border-radius: 8px;
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--accent-color);
    background: rgba(0, 113, 227, 0.06);
}

.nav-link.active {
    color: var(--accent-color);
    background: rgba(37, 99, 235, 0.15);
}

.dropdown {
    position: relative;
}

.dropdown-arrow {
    font-size: 11px;
    margin-left: 6px;
    opacity: 0.5;
    transition: var(--transition);
}

.dropdown:hover .dropdown-arrow {
    opacity: 1;
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background: rgba(5, 8, 22, 0.95);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    list-style: none;
    min-width: 240px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: var(--transition);
    padding: 8px;
    border-radius: 12px;
    border: 0.5px solid rgba(0, 0, 0, 0.08);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 12px 16px;
    color: var(--text-light);
    text-decoration: none;
    font-size: 15px;
    transition: var(--transition);
    border-radius: 8px;
    font-weight: 400;
}

.dropdown-menu a:hover {
    background: rgba(37, 99, 235, 0.12);
    color: var(--accent-color);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    transition: var(--transition);
    border-radius: 2px;
}

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

.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;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    padding: 140px 0;
    text-align: center;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.hero::before,
.hero::after {
    content: '';
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.6;
    pointer-events: none;
}

.hero::before {
    background: rgba(59, 130, 246, 0.6);
    top: -120px;
    left: -60px;
}

.hero::after {
    background: rgba(236, 72, 153, 0.35);
    bottom: -160px;
    right: -40px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(120deg, rgba(15, 23, 42, 0.65) 0%, rgba(15, 23, 42, 0.15) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-content,
.features-text,
.service-card,
.testimonial-card,
.contact-form,
.page-content--glass .content-section,
.testimonials-badge,
.grid-two > div {
    width: 100%;
    box-sizing: border-box;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-size: 14px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 56px;
    font-weight: 600;
    margin-bottom: 12px;
    letter-spacing: -0.005em;
    line-height: 1.07143;
}

.hero-subtitle {
    font-size: 28px;
    margin-bottom: 40px;
    opacity: 0.9;
    font-weight: 400;
    letter-spacing: 0.007em;
    line-height: 1.14286;
}

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

.hero-stats {
    margin-top: 48px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.hero-stat {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 18px 16px;
    border-radius: var(--radius);
    backdrop-filter: blur(12px);
}

.hero-stat-value {
    display: block;
    font-size: 30px;
    font-weight: 600;
    color: white;
    margin-bottom: 2px;
}

.hero-stat-label {
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 28px;
    text-decoration: none;
    border-radius: 980px;
    font-weight: 500;
    font-size: 16px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    letter-spacing: -0.022em;
    line-height: 1.17647;
}

.btn-primary {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    box-shadow: 0 20px 35px rgba(37, 99, 235, 0.25);
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 25px 45px rgba(37, 99, 235, 0.35);
}

.btn-secondary {
    background: rgba(8, 13, 30, 0.85);
    color: var(--text-dark);
    border: 1px solid rgba(56, 189, 248, 0.3);
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    background: rgba(8, 13, 30, 1);
    color: var(--accent-color);
}

.btn-large {
    padding: 14px 28px;
    font-size: 19px;
}

.btn-outline {
    background: rgba(2, 6, 23, 0.8);
    color: var(--text-dark);
    border: 1px solid rgba(56, 189, 248, 0.35);
    box-shadow: var(--shadow-sm);
}

.btn-outline:hover {
    border-color: transparent;
    color: var(--accent-color);
}

/* Services Overview */
.services-overview {
    padding: 120px 0;
    background: radial-gradient(circle at 15% 20%, rgba(37, 99, 235, 0.08), transparent 45%),
                radial-gradient(circle at 85% 10%, rgba(236, 72, 153, 0.08), transparent 40%),
                rgba(6, 10, 24, 0.9);
    position: relative;
    overflow: hidden;
}

.section-title {
    text-align: center;
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-dark);
    letter-spacing: -0.003em;
    line-height: 1.08349;
    position: relative;
    word-break: break-word;
    hyphens: auto;
}

.section-title::after {
    content: '';
    display: block;
    width: 120px;
    height: 3px;
    border-radius: 999px;
    margin: 14px auto 0;
    background: linear-gradient(90deg, rgba(37, 99, 235, 0), rgba(37, 99, 235, 0.8), rgba(37, 99, 235, 0));
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 60px;
    font-size: 18px;
}

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

.service-card {
    background: rgba(5, 8, 22, 0.92);
    padding: 40px;
    border-radius: 28px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-align: left;
    border: 1px solid rgba(56, 189, 248, 0.18);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(18px);
}

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

.service-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 1px solid transparent;
    background: linear-gradient(120deg, rgba(37, 99, 235, 0.18), rgba(14, 165, 233, 0.12)) border-box;
    mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0;
    transition: var(--transition);
}

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

.service-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--accent-soft);
    color: var(--accent-color);
    font-size: 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.service-card h3 {
    font-size: 26px;
    margin-bottom: 12px;
    color: var(--text-dark);
    font-weight: 600;
    letter-spacing: -0.003em;
    line-height: 1.16667;
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 17px;
    line-height: 1.47059;
}

.service-link {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 400;
    font-size: 17px;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.service-link:hover {
    color: var(--accent-hover);
}

.service-link::after {
    content: '→';
    transition: var(--transition);
}

.service-link:hover::after {
    transform: translateX(4px);
}

/* Features Section */
.features {
    padding: 120px 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95), rgba(15, 23, 42, 0.85));
    color: white;
    position: relative;
    overflow: hidden;
}

.features::after {
    content: '';
    position: absolute;
    inset: 40px;
    border-radius: 32px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    pointer-events: none;
}

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

.features-text {
    background: rgba(5, 8, 22, 0.75);
    border: 1px solid rgba(56, 189, 248, 0.18);
    border-radius: 32px;
    padding: 40px;
    box-shadow: 0 35px 70px rgba(3, 7, 18, 0.45);
    overflow: hidden;
    width: 100%;
    margin: 0 auto;
}

.features-text h2 {
    font-size: 48px;
    margin-bottom: 30px;
    color: white;
    font-weight: 600;
    letter-spacing: -0.003em;
    line-height: 1.08349;
}

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

.features-stat {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 24px;
    backdrop-filter: blur(14px);
    box-shadow: 0 25px 40px rgba(15, 23, 42, 0.3);
}

.features-stat-value {
    font-size: 32px;
    font-weight: 600;
    color: white;
    display: block;
    margin-bottom: 4px;
}

.features-stat-label {
    color: rgba(255, 255, 255, 0.75);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 13px;
    margin-bottom: 8px;
    display: block;
}

.features-stat p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-size: 15px;
    line-height: 1.4;
}

.features-img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.25);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95), rgba(3, 6, 17, 0.95));
    color: white;
    padding: 80px 0;
    text-align: center;
    border-top: 1px solid rgba(148, 163, 184, 0.2);
}

.cta-content h2 {
    font-size: 48px;
    margin-bottom: 16px;
    font-weight: 600;
    letter-spacing: -0.003em;
    line-height: 1.08349;
}

.cta-content p {
    font-size: 21px;
    margin-bottom: 32px;
    opacity: 0.8;
    font-weight: 400;
    line-height: 1.381;
}

/* Footer */
.footer {
    background: radial-gradient(circle at 10% 20%, rgba(37, 99, 235, 0.1), transparent 45%), #020617;
    color: rgba(226, 232, 240, 0.8);
    padding: 60px 0 30px;
    border-top: 0.5px solid rgba(148, 163, 184, 0.2);
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 16px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    color: rgba(248, 250, 252, 0.85);
}

.footer-section p {
    color: rgba(226, 232, 240, 0.75);
    font-size: 14px;
    line-height: 1.42859;
}

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

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

.footer-links a {
    color: rgba(226, 232, 240, 0.75);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 0.5px solid var(--border-color);
    color: var(--text-light);
    font-size: 12px;
}

.footer-bottom a {
    color: rgba(226, 232, 240, 0.65);
    text-decoration: none;
    transition: var(--transition);
}

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

/* Page Hero */
.page-hero {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    padding: clamp(70px, 14vw, 150px) 0;
    text-align: center;
    overflow: hidden;
    min-height: clamp(320px, 45vh, 520px);
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.page-hero.page-hero--glass::before,
.page-hero.page-hero--glass::after {
    content: '';
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    filter: blur(70px);
    opacity: 0.6;
    pointer-events: none;
}

.page-hero.page-hero--glass::before {
    background: rgba(59, 130, 246, 0.4);
    top: -80px;
    left: -60px;
}

.page-hero.page-hero--glass::after {
    background: rgba(236, 72, 153, 0.25);
    bottom: -120px;
    right: -20px;
}

.page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.6) 0%, rgba(15, 23, 42, 0.85) 100%);
}

.page-hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    width: min(700px, calc(100% - clamp(24px, 8vw, 120px)));
    margin: 0 auto;
    padding: clamp(20px, 5vw, 38px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 28px;
    background: rgba(15, 23, 42, 0.35);
    backdrop-filter: blur(14px);
    box-shadow: 0 35px 60px rgba(15, 23, 42, 0.35);
}

.page-subtitle {
    font-size: 24px;
    margin-top: 12px;
    opacity: 0.9;
    font-weight: 400;
    letter-spacing: 0.007em;
    line-height: 1.14286;
}

/* Page Content */
.page-content {
    padding: 100px 0;
    min-height: 60vh;
    background: rgba(5, 8, 22, 0.92);
    border-top: 1px solid rgba(148, 163, 184, 0.15);
    border-bottom: 1px solid rgba(0, 0, 0, 0.55);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.45);
}

.page-content--glass .content-section {
    background: rgba(8, 13, 30, 0.9);
    padding: 36px;
    border-radius: 24px;
    border: 1px solid rgba(56, 189, 248, 0.2);
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(16px);
}

.page-content--glass .content-section:not(:last-child) {
    margin-bottom: 45px;
}

.page-content--glass .content-section h2,
.page-content--glass .content-section h3 {
    color: rgba(248, 250, 252, 0.95);
}

.page-content--glass .content-section p,
.page-content--glass .content-section li {
    color: rgba(226, 232, 240, 0.85);
}

.page-title {
    font-size: clamp(32px, 8vw, 56px);
    margin-bottom: 20px;
    color: var(--text-dark);
    font-weight: 600;
    letter-spacing: -0.005em;
    line-height: 1.07143;
    word-break: break-word;
}

.page-hero .page-title {
    color: white;
}

.content-section {
    margin-bottom: 60px;
}

.content-section h2 {
    font-size: clamp(26px, 6vw, 40px);
    margin-bottom: 16px;
    color: var(--text-dark);
    font-weight: 600;
    letter-spacing: -0.003em;
    line-height: 1.1;
    padding-top: 40px;
    word-break: break-word;
    hyphens: auto;
}

.content-section h3 {
    font-size: clamp(22px, 5vw, 28px);
    margin-bottom: 12px;
    color: var(--text-dark);
    font-weight: 600;
    letter-spacing: -0.003em;
    line-height: 1.14286;
    margin-top: 32px;
    word-break: break-word;
    hyphens: auto;
}

.content-section p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.47059;
    font-size: 19px;
}

.content-section ul {
    margin-left: 0;
    margin-bottom: 20px;
    color: var(--text-light);
    list-style: none;
}

.content-section li {
    margin-bottom: 12px;
    padding-left: 24px;
    position: relative;
    font-size: 19px;
    line-height: 1.47059;
    color: var(--text-light);
}

.service-bullets {
    list-style: disc;
    margin-left: 24px;
}

.service-bullets li {
    padding-left: 0;
}

.content-section li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

/* Contact Form */
.form-alert {
    margin-bottom: 24px;
    padding: 16px 20px;
    border-radius: var(--radius);
    font-size: 16px;
    line-height: 1.4;
    border: 1px solid transparent;
}

.form-alert.success {
    background: rgba(16, 185, 129, 0.12);
    border-color: rgba(16, 185, 129, 0.3);
    color: #a7f3d0;
}

.form-alert.error {
    background: rgba(248, 113, 113, 0.12);
    border-color: rgba(248, 113, 113, 0.3);
    color: #fecdd3;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(6, 14, 28, 0.85);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(37, 99, 235, 0.25);
    backdrop-filter: blur(14px);
    color: rgba(255, 255, 255, 0.9);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 14px;
    letter-spacing: -0.016em;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid rgba(148, 163, 184, 0.35);
    border-radius: var(--radius);
    font-family: inherit;
    font-size: 17px;
    transition: var(--transition);
    background: rgba(8, 13, 28, 0.8);
    color: var(--text-dark);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 4px rgba(0, 113, 227, 0.1);
}

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

.contact-select {
    width: 100%;
    appearance: none;
    border-radius: 999px;
    padding: 12px 44px 12px 18px;
    font-size: 17px;
    font-family: inherit;
    background: rgba(8, 13, 28, 0.85);
    color: var(--text-dark);
    transition: var(--transition);
    border: 1px solid rgba(148, 163, 184, 0.35);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.contact-select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 4px rgba(0, 113, 227, 0.1);
}

.contact-select::-ms-expand {
    display: none;
}

.contact-select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath fill='%23a5b4fc' d='M1.41.59 6 5.17l4.59-4.58L12 1.99l-6 6-6-6z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 12px 8px;
}

.request-type-group {
    margin-bottom: 24px;
}

.request-type-heading {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
}

.request-type-options {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.request-type-option {
    flex: 1 1 150px;
    position: relative;
}

.request-type-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.request-type-option label {
    display: block;
    width: 100%;
    padding: 12px 16px;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.4);
    background: rgba(8, 13, 28, 0.85);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    color: var(--text-dark);
}

.checkbox-group .checkbox-label {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-light);
}

.checkbox-group input[type="checkbox"] {
    appearance: none;
    width: 20px;
    height: 20px;
    border: 1px solid rgba(56, 189, 248, 0.4);
    border-radius: 6px;
    background: rgba(8, 13, 28, 0.8);
    margin-top: 2px;
    position: relative;
    cursor: pointer;
    transition: var(--transition);
}

.checkbox-group input[type="checkbox"]:checked {
    background: linear-gradient(135deg, #0ea5e9, #2563eb);
    border-color: transparent;
}

.checkbox-group input[type="checkbox"]::after {
    content: '';
    position: absolute;
    inset: 0;
    display: block;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14'%3E%3Cpath fill='white' d='M12.3 3.3a1 1 0 0 0-1.4 0L5.5 8.7 3.1 6.3A1 1 0 0 0 1.7 7.7L5 11a1 1 0 0 0 1.4 0l5.9-5.9a1 1 0 0 0 0-1.4z'/%3E%3C/svg%3E") center/12px 12px no-repeat;
    opacity: 0;
    transition: var(--transition);
}

.checkbox-group input[type="checkbox"]:checked::after {
    opacity: 1;
}

.checkbox-label a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

.honeypot {
    position: absolute !important;
    left: -9999px;
    top: auto;
    width: 0;
    height: 0;
    margin: 0;
    padding: 0;
    opacity: 0;
    pointer-events: none;
    overflow: hidden;
}

.request-type-option input[type="radio"]:checked + label {
    background: linear-gradient(135deg, #0ea5e9, #2563eb);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 20px 35px rgba(14, 165, 233, 0.35);
}

.request-type-option label:focus,
.request-type-option input[type="radio"]:focus + label {
    outline: 2px solid rgba(0, 113, 227, 0.3);
    outline-offset: 2px;
}

@media (max-width: 640px) {
    .request-type-option {
        flex: 1 1 100%;
    }

    .request-type-option label {
        text-align: left;
    }
}

.map-actions {
    margin-top: 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.map-actions a {
    min-width: 200px;
    text-align: center;
}

.map-actions .btn-secondary {
    background: #1d1d1f;
    color: #fff;
    border: none;
}

.map-actions .btn-secondary:hover {
    background: #35363a;
}

.map-static img {
    width: 100%;
    height: 450px;
    border-radius: 12px;
    object-fit: cover;
    display: block;
}

.grid-two {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 48px;
    margin-bottom: 48px;
}

/* Responsive Design */
@media (max-width: 968px) {
    .navbar-menu {
        gap: 4px;
    }

    .nav-link {
        font-size: 14px;
        padding: 10px 14px;
    }
}

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

    .navbar {
        min-height: 64px;
        padding: 8px 0;
    }

    .logo {
        font-size: 19px;
        font-weight: 600;
    }

    .mobile-menu-toggle {
        display: flex;
        padding: 14px 12px;
        margin-right: -12px;
        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;
    }

    .mobile-menu-toggle span {
        width: 26px;
        height: 2.5px;
    }

    .navbar-menu {
        position: fixed;
        top: 64px;
        left: -100%;
        flex-direction: column;
        background: rgba(2, 6, 23, 0.95);
        backdrop-filter: saturate(180%) blur(20px);
        -webkit-backdrop-filter: saturate(180%) blur(20px);
        width: 100%;
        padding: 20px;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
        transition: left 0.3s ease;
        gap: 4px;
        align-items: stretch;
        max-height: calc(100vh - 64px);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        z-index: 999;
    }

    .navbar-menu.active {
        left: 0;
    }


    .nav-link {
        font-size: 17px;
        padding: 14px 16px;
        width: 100%;
        justify-content: flex-start;
        border-radius: 10px;
        min-height: 48px;
    }

    .nav-link:hover {
        background: rgba(0, 113, 227, 0.1);
        color: var(--accent-color);
    }

    .dropdown {
        width: 100%;
    }

    .dropdown > .nav-link {
        width: 100%;
    }

    .dropdown-arrow {
        margin-left: auto;
        font-size: 14px;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        margin-top: 4px;
        margin-left: 0;
        padding: 8px;
        background: var(--bg-light);
        border: none;
        width: 100%;
        min-width: auto;
    }

    .dropdown-menu a {
        font-size: 16px;
        padding: 12px 16px;
        min-height: 44px;
    }

    .hero {
        padding: 80px 0;
        min-height: 500px;
    }

    .hero-title {
        font-size: 40px;
    }

    .hero-subtitle {
        font-size: 21px;
    }

    .hero-content {
        padding: 32px 20px;
        border-radius: 20px;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 12px;
    }

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

    .features-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .features-text {
        padding: 28px;
    }

    .section-title {
        font-size: 36px;
    }

    .page-title {
        font-size: 40px;
    }

    .cta-content h2 {
        font-size: 36px;
    }

    .grid-two {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .map-static img {
        height: 320px;
    }

    .features-img {
        max-height: 400px;
        object-fit: cover;
    }

    .testimonials-badge {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}

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

    .hero {
        padding: 70px 0;
    }

    .hero-title {
        font-size: 34px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .hero-content {
        padding: 28px 18px;
    }

    .hero-stats {
        margin-top: 28px;
    }

    .page-hero {
        padding: 90px 0;
        min-height: 320px;
    }

    .testimonials-badge {
        text-align: left;
    }

    .page-hero-content {
        padding: 24px 18px;
        width: calc(100% - 24px);
    }

    .features-text {
        padding: 24px;
    }
}

@media (max-width: 480px) {
    .navbar {
        min-height: 60px;
    }

    .navbar-menu {
        top: 60px;
        padding: 20px 16px;
    }

    .nav-link {
        font-size: 17px;
        padding: 15px 18px;
        min-height: 54px;
    }

    .dropdown-menu a {
        font-size: 16px;
        padding: 13px 16px;
        min-height: 50px;
    }

    .hero {
        padding: 60px 0;
        min-height: 400px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .hero-stats {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 12px;
    }

    .services-overview,
    .features {
        padding: 60px 0;
    }
}

/* Testimonials Section */
.testimonials {
    padding: 110px 0;
    background: radial-gradient(circle at 20% 20%, rgba(37, 99, 235, 0.12), transparent 50%), rgba(11, 15, 28, 0.95);
}

.testimonials-badge {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    background: rgba(8, 13, 30, 0.9);
    border: 1px solid rgba(56, 189, 248, 0.25);
    padding: 18px 28px;
    border-radius: 999px;
    margin: 0 auto 32px;
    box-shadow: 0 20px 45px rgba(2, 6, 23, 0.35);
    color: rgba(248, 250, 252, 0.95);
}

.testimonials-badge__stars {
    font-size: 26px;
    color: #fcd34d;
    letter-spacing: 2px;
}

.testimonials-badge__score {
    font-size: 24px;
    font-weight: 600;
    color: rgba(248, 250, 252, 0.95);
}

.testimonials-badge__label {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.testimonial-card {
    background: rgba(5, 8, 22, 0.9);
    padding: 36px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(56, 189, 248, 0.18);
    backdrop-filter: blur(14px);
}

.testimonial-stars {
    color: #ffc107;
    font-size: 18px;
    margin-bottom: 16px;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(248, 250, 252, 0.85);
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-size: 14px;
    color: rgba(226, 232, 240, 0.65);
    font-weight: 500;
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: rgba(5, 8, 22, 0.95);
}

.faq-list {
    max-width: 800px;
    margin: 48px auto 0;
}

.faq-item {
    background: rgba(8, 13, 30, 0.9);
    border: 1px solid rgba(56, 189, 248, 0.2);
    border-radius: var(--radius);
    margin-bottom: 16px;
    overflow: hidden;
    transition: var(--transition);
    backdrop-filter: blur(8px);
}

.faq-item:hover {
    box-shadow: var(--shadow-sm);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    cursor: pointer;
    user-select: none;
}

.faq-question h3 {
    font-size: 18px;
    font-weight: 500;
    color: var(--text-dark);
    margin: 0;
    flex: 1;
}

.faq-toggle {
    font-size: 24px;
    color: var(--accent-color);
    font-weight: 300;
    transition: var(--transition);
    flex-shrink: 0;
    margin-left: 20px;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 24px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 24px 20px;
}

.faq-answer p {
    color: rgba(226, 232, 240, 0.8);
    line-height: 1.6;
    margin: 0;
}

/* Map Container */
.map-container {
    margin-top: 24px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.map-container iframe {
    display: block;
    width: 100%;
}

/* Opening Hours Widget */
.opening-hours-widget {
    margin-top: 16px;
}

.opening-hours-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 0.5px solid var(--border-color);
}

.opening-hours-item:last-of-type {
    border-bottom: none;
    margin-bottom: 16px;
}

.opening-hours-day {
    font-weight: 400;
    color: var(--text-dark);
}

.opening-hours-time {
    color: var(--text-light);
    font-size: 14px;
}

.opening-hours-time.closed {
    color: var(--text-light);
    opacity: 0.6;
}

.opening-hours-status {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-top: 12px;
    margin-top: 12px;
    border-top: 0.5px solid var(--border-color);
}

.status-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #25D366;
    display: inline-block;
}

.status-indicator.closed {
    background: #dc3545;
}

#opening-text {
    font-size: 14px;
    color: var(--text-dark);
    font-weight: 500;
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .faq-question {
        padding: 16px 20px;
    }

    .faq-question h3 {
        font-size: 16px;
    }

    .map-container iframe {
        height: 350px;
    }
}
.grid-two {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 48px;
    margin-bottom: 48px;
}

@media (max-width: 768px) {
    .grid-two {
        grid-template-columns: 1fr;
    }
}
.grid-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 30px;
}
