@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;600;700&family=Exo+2:wght@300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #0a1628;
    --secondary: #1a2d4a;
    --accent-blue: #00b4d8;
    --accent-orange: #ff6b35;
    --light: #f8f9fa;
    --white: #ffffff;
    --gray: #6c757d;
    --dark-gray: #343a40;
    --gradient-blue: linear-gradient(135deg, #00b4d8 0%, #0077b6 100%);
    --gradient-orange: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Exo 2', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--white);
    min-width: 320px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Orbitron', sans-serif;
    font-weight: 600;
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
}

.btn {
    display: inline-block;
    padding: 10px 24px;
    font-family: 'Orbitron', sans-serif;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--gradient-blue);
    color: var(--white);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 180, 216, 0.3);
}

.btn-secondary {
    background: var(--gradient-orange);
    color: var(--white);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--accent-blue);
    color: var(--accent-blue);
}

.btn-outline:hover {
    background: var(--accent-blue);
    color: var(--white);
}

.section-title {
    font-size: 28px;
    margin-bottom: 10px;
    color: var(--primary);
}

.section-subtitle {
    font-size: 13px;
    color: var(--gray);
    max-width: 500px;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.4s ease;
}

.header-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px 20px;
}

.header.scrolled {
    background: rgba(10, 22, 40, 0.95);
    backdrop-filter: blur(10px);
}

.header.hidden {
    transform: translateY(-100%);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1140px;
    background: rgba(10, 22, 40, 0.85);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 10px 30px;
    border: 1px solid rgba(0, 180, 216, 0.2);
    position: relative;
}

.logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo i {
    color: var(--accent-orange);
    font-size: 20px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav-menu a {
    font-size: 12px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    padding: 5px 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-blue);
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    color: var(--white);
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-menu a.active {
    color: var(--accent-blue);
}

.nav-menu a.active::after {
    width: 100%;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 22px;
    cursor: pointer;
}

.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 100px 0 60px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="rgba(0,180,216,0.1)"/></svg>');
    background-size: 30px 30px;
    opacity: 0.5;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text h1 {
    font-size: 42px;
    color: var(--white);
    margin-bottom: 15px;
    line-height: 1.2;
}

.hero-text h1 span {
    background: var(--gradient-orange);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 25px;
    max-width: 450px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
}

.hero-image img {
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.hero-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--gradient-orange);
    padding: 15px 20px;
    border-radius: 8px;
    text-align: center;
}

.hero-badge span {
    display: block;
    font-family: 'Orbitron', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
}

.hero-badge small {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
}

.section {
    padding: 60px 0;
}

.section-dark {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--white);
}

.section-dark .section-title {
    color: var(--white);
}

.section-dark .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.section-light {
    background: var(--light);
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header .section-subtitle {
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.service-card {
    background: var(--white);
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 180, 216, 0.1);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 180, 216, 0.15);
    border-color: var(--accent-blue);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.service-icon i {
    font-size: 24px;
    color: var(--white);
}

.service-card h3 {
    font-size: 16px;
    margin-bottom: 10px;
    color: var(--primary);
}

.service-card p {
    font-size: 13px;
    color: var(--gray);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: 10px;
}

.about-overlay {
    position: absolute;
    top: 20px;
    right: -20px;
    background: var(--gradient-blue);
    padding: 20px;
    border-radius: 8px;
    text-align: center;
}

.about-overlay span {
    display: block;
    font-family: 'Orbitron', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--white);
}

.about-overlay small {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
}

.about-content h2 {
    margin-bottom: 15px;
}

.about-content p {
    margin-bottom: 15px;
    color: var(--gray);
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin: 20px 0;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-feature i {
    color: var(--accent-orange);
    font-size: 16px;
}

.about-feature span {
    font-size: 13px;
    font-weight: 500;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.process-step {
    text-align: center;
    position: relative;
}

.process-step::after {
    content: '';
    position: absolute;
    top: 35px;
    right: -10px;
    width: calc(100% - 70px);
    height: 2px;
    background: rgba(0, 180, 216, 0.3);
}

.process-step:last-child::after {
    display: none;
}

.step-number {
    width: 70px;
    height: 70px;
    background: rgba(0, 180, 216, 0.1);
    border: 2px solid var(--accent-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-family: 'Orbitron', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--accent-blue);
}

.process-step h3 {
    font-size: 14px;
    margin-bottom: 8px;
    color: var(--white);
}

.process-step p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.product-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 180, 216, 0.1);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 180, 216, 0.15);
}

.product-image {
    position: relative;
    height: 180px;
    background: var(--light);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--gradient-orange);
    color: var(--white);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
}

.product-content {
    padding: 20px;
}

.product-content h3 {
    font-size: 15px;
    margin-bottom: 8px;
    color: var(--primary);
}

.product-content p {
    font-size: 12px;
    color: var(--gray);
    margin-bottom: 12px;
}

.product-price {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.price {
    font-family: 'Orbitron', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--accent-blue);
}

.price small {
    font-size: 11px;
    color: var(--gray);
    font-weight: 400;
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 180, 216, 0.2);
    border-radius: 10px;
    padding: 25px;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    color: var(--white);
    font-size: 18px;
}

.testimonial-info h4 {
    font-size: 14px;
    color: var(--white);
    margin-bottom: 3px;
}

.testimonial-info span {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
}

.testimonial-stars {
    color: var(--accent-orange);
    font-size: 12px;
    margin-bottom: 12px;
}

.testimonial-card p {
    font-size: 13px;
    font-style: italic;
}

.cta-section {
    background: var(--gradient-orange);
    text-align: center;
    padding: 50px 0;
}

.cta-section h2 {
    color: var(--white);
    margin-bottom: 10px;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section .btn {
    background: var(--white);
    color: var(--accent-orange);
}

.cta-section .btn:hover {
    background: var(--primary);
    color: var(--white);
}

.footer {
    background: var(--primary);
    padding: 30px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 30px;
    margin-bottom: 20px;
}

.footer-brand .logo {
    margin-bottom: 12px;
}

.footer-brand p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    max-width: 280px;
}

.footer-links h4 {
    font-size: 13px;
    color: var(--white);
    margin-bottom: 12px;
}

.footer-links ul li {
    margin-bottom: 6px;
}

.footer-links ul li a {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-links ul li a:hover {
    color: var(--accent-blue);
}

.footer-contact h4 {
    font-size: 13px;
    color: var(--white);
    margin-bottom: 12px;
}

.footer-contact p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 6px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.footer-contact i {
    color: var(--accent-blue);
    margin-top: 2px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-copyright {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-copyright span {
    color: var(--accent-orange);
}

.footer-legal {
    display: flex;
    gap: 15px;
}

.footer-legal a {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-legal a:hover {
    color: var(--accent-blue);
}

.contact-section {
    padding: 60px 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-info {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 15px;
    padding: 35px;
    position: relative;
    overflow: hidden;
}

.contact-info::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 180, 216, 0.1) 0%, transparent 70%);
}

.contact-info h2 {
    color: var(--white);
    font-size: 24px;
    margin-bottom: 10px;
    position: relative;
}

.contact-info > p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    margin-bottom: 25px;
    position: relative;
}

.contact-details {
    position: relative;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-item-icon {
    width: 45px;
    height: 45px;
    background: rgba(0, 180, 216, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-item-icon i {
    font-size: 18px;
    color: var(--accent-blue);
}

.contact-item-content h4 {
    font-size: 13px;
    color: var(--white);
    margin-bottom: 4px;
}

.contact-item-content p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

.contact-form-wrapper {
    background: var(--white);
    border-radius: 15px;
    padding: 35px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.contact-form-wrapper h3 {
    font-size: 20px;
    color: var(--primary);
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 12px;
    font-weight: 500;
    color: var(--dark-gray);
    margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    font-family: 'Exo 2', sans-serif;
    font-size: 13px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: var(--light);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-blue);
    box-shadow: 0 0 0 3px rgba(0, 180, 216, 0.1);
}

.form-group textarea {
    min-height: 100px;
    resize: vertical;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.form-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: var(--accent-blue);
}

.form-checkbox label {
    font-size: 11px;
    color: var(--gray);
    margin-bottom: 0;
}

.form-checkbox a {
    color: var(--accent-blue);
}

.contact-form .btn {
    width: 100%;
    padding: 14px;
}

.map-section {
    height: 300px;
    border-radius: 15px;
    overflow: hidden;
    margin-top: 30px;
}

.map-section iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.page-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    padding: 120px 0 50px;
    text-align: center;
    position: relative;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="rgba(0,180,216,0.1)"/></svg>');
    background-size: 30px 30px;
    opacity: 0.5;
}

.page-header h1 {
    color: var(--white);
    font-size: 32px;
    margin-bottom: 10px;
    position: relative;
}

.page-header p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    position: relative;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
    position: relative;
}

.breadcrumb a, .breadcrumb span {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

.breadcrumb a:hover {
    color: var(--accent-blue);
}

.breadcrumb i {
    font-size: 10px;
}

.page-content {
    padding: 50px 0;
}

.page-content h2 {
    font-size: 22px;
    color: var(--primary);
    margin-bottom: 15px;
    margin-top: 30px;
}

.page-content h2:first-child {
    margin-top: 0;
}

.page-content p {
    margin-bottom: 12px;
    color: var(--dark-gray);
}

.page-content ul {
    margin-bottom: 15px;
    padding-left: 20px;
}

.page-content ul li {
    position: relative;
    padding-left: 15px;
    margin-bottom: 8px;
    color: var(--dark-gray);
}

.page-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 5px;
    height: 5px;
    background: var(--accent-blue);
    border-radius: 50%;
}

.error-page {
    min-height: calc(100vh - 180px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
}

.error-content h1 {
    font-size: 120px;
    color: var(--accent-orange);
    line-height: 1;
    margin-bottom: 15px;
}

.error-content h2 {
    font-size: 28px;
    color: var(--white);
    margin-bottom: 12px;
}

.error-content p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 25px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.thankyou-page {
    min-height: calc(100vh - 180px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
}

.thankyou-content {
    max-width: 500px;
}

.thankyou-icon {
    width: 100px;
    height: 100px;
    background: var(--gradient-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.thankyou-icon i {
    font-size: 50px;
    color: var(--white);
}

.thankyou-content h1 {
    font-size: 32px;
    color: var(--white);
    margin-bottom: 12px;
}

.thankyou-content p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 25px;
}

.privacy-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 400px;
    background: var(--white);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    display: none;
}

.privacy-popup.show {
    display: block;
    animation: slideUp 0.4s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.privacy-popup h4 {
    font-size: 14px;
    color: var(--primary);
    margin-bottom: 8px;
}

.privacy-popup p {
    font-size: 12px;
    color: var(--gray);
    margin-bottom: 15px;
}

.privacy-popup a {
    color: var(--accent-blue);
}

.privacy-popup-buttons {
    display: flex;
    gap: 10px;
}

.privacy-popup .btn {
    flex: 1;
    padding: 10px;
    font-size: 11px;
}

.subpage-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.subpage-intro-image img {
    border-radius: 10px;
}

.subpage-intro-content h2 {
    margin-top: 0;
}

.features-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.feature-item {
    background: var(--white);
    border-radius: 10px;
    padding: 25px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    border: 1px solid rgba(0, 180, 216, 0.1);
    transition: all 0.3s ease;
}

.feature-item:hover {
    border-color: var(--accent-blue);
    box-shadow: 0 10px 30px rgba(0, 180, 216, 0.1);
}

.feature-item i {
    font-size: 28px;
    color: var(--accent-blue);
}

.feature-item h4 {
    font-size: 14px;
    color: var(--primary);
    margin-bottom: 6px;
}

.feature-item p {
    font-size: 12px;
    color: var(--gray);
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
}

.stat-item {
    padding: 25px;
    background: rgba(0, 180, 216, 0.05);
    border-radius: 10px;
}

.stat-item span {
    display: block;
    font-family: 'Orbitron', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--accent-blue);
    margin-bottom: 5px;
}

.stat-item p {
    font-size: 12px;
    color: var(--gray);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: 10px;
    margin-bottom: 12px;
    border: 1px solid rgba(0, 180, 216, 0.1);
    overflow: hidden;
}

.faq-question {
    padding: 18px 20px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(0, 180, 216, 0.03);
}

.faq-question i {
    color: var(--accent-blue);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 20px 18px;
    font-size: 13px;
    color: var(--gray);
}

.appliance-types {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.appliance-type {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 180, 216, 0.2);
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.appliance-type:hover {
    background: rgba(0, 180, 216, 0.1);
    transform: translateY(-3px);
}

.appliance-type i {
    font-size: 36px;
    color: var(--accent-orange);
    margin-bottom: 12px;
}

.appliance-type h4 {
    font-size: 13px;
    color: var(--white);
}

.contact-hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    padding: 120px 0 60px;
    text-align: center;
    position: relative;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="rgba(0,180,216,0.1)"/></svg>');
    background-size: 30px 30px;
}

.contact-hero h1 {
    color: var(--white);
    font-size: 36px;
    margin-bottom: 10px;
    position: relative;
}

.contact-hero p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    position: relative;
    max-width: 500px;
    margin: 0 auto;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: -40px;
    position: relative;
    z-index: 10;
}

.contact-card {
    background: var(--white);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
}

.contact-card-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.contact-card-icon i {
    font-size: 24px;
    color: var(--white);
}

.contact-card h3 {
    font-size: 14px;
    color: var(--primary);
    margin-bottom: 8px;
}

.contact-card p {
    font-size: 12px;
    color: var(--gray);
}

@media (max-width: 991px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text p {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-image {
        order: -1;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .hero-badge {
        bottom: 10px;
        left: 10px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .about-overlay {
        right: 10px;
    }
    
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-step::after {
        display: none;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-slider {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-brand p {
        margin: 0 auto;
    }
    
    .footer-bottom {
        justify-content: center;
        text-align: center;
    }
    
    .footer-legal {
        width: 100%;
        justify-content: center;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .subpage-intro {
        grid-template-columns: 1fr;
    }
    
    .features-list {
        grid-template-columns: 1fr;
    }
    
    .stats-row {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .appliance-types {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-cards {
        grid-template-columns: 1fr;
        margin-top: 30px;
    }
}

@media (max-width: 767px) {
    .nav-container {
        padding: 10px 15px;
    }
    
    .logo {
        font-size: 13px;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(10, 22, 40, 0.98);
        flex-direction: column;
        justify-content: center;
        gap: 20px;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .nav-menu.active {
        opacity: 1;
        visibility: visible;
        height: 50vh;
    }
    
    .nav-menu a {
        font-size: 16px;
    }
    
    .mobile-toggle {
        display: block;
        z-index: 1001;
    }
    
    .hero {
        padding: 80px 0 40px;
    }
    
    .hero-text h1 {
        font-size: 28px;
    }
    
    .section {
        padding: 40px 0;
    }
    
    .section-title {
        font-size: 22px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .page-header {
        padding: 100px 0 40px;
    }
    
    .page-header h1 {
        font-size: 26px;
    }
    
    .error-content h1 {
        font-size: 80px;
    }
    
    .thankyou-content h1 {
        font-size: 26px;
    }
    
    .contact-hero h1 {
        font-size: 28px;
    }
    
    .appliance-types {
        grid-template-columns: 1fr;
    }
    
    .stats-row {
        grid-template-columns: 1fr;
    }
    
    .privacy-popup {
        left: 10px;
        right: 10px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }
    
    .btn {
        padding: 10px 18px;
        font-size: 11px;
    }
    
    .hero-text h1 {
        font-size: 24px;
    }
    
    .hero-text p {
        font-size: 13px;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .contact-form-wrapper {
        padding: 25px;
    }
    
    .contact-info {
        padding: 25px;
    }
}

@media (max-width: 320px) {
    body {
        font-size: 13px;
    }
    
    .hero-text h1 {
        font-size: 22px;
    }
    
    .section-title {
        font-size: 20px;
    }
    
    .nav-container {
        padding: 8px 12px;
    }
    
    .logo {
        font-size: 11px;
    }
}
