/* Helpvisor Site - Modern Software House Design */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/* CSS Variables */
:root {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --primary-light: #3b82f6;
    --secondary: #0ea5e9;
    --accent: #06b6d4;
    --danger: #dc2626;
    --danger-dark: #b91c1c;
    --danger-light: #ef4444;
    --orange: #f97316;
    --dark: #0f172a;
    --dark-light: #1e293b;
    --gray: #64748b;
    --gray-light: #94a3b8;
    --light: #f1f5f9;
    --white: #ffffff;
    --gradient: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    --gradient-hot: linear-gradient(135deg, var(--danger) 0%, var(--orange) 100%);
    --shadow: 0 10px 40px rgba(0,0,0,0.1);
    --shadow-lg: 0 25px 50px rgba(0,0,0,0.15);
    --border-accent: 3px solid var(--danger);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.7;
    color: var(--dark);
    background: var(--white);
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

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

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
.header {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    padding: 16px 32px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0;
}

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

.logo img {
    height: 80px;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--dark);
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 36px;
    align-items: center;
}

.main-nav a {
    color: var(--gray);
    font-weight: 500;
    font-size: 15px;
}

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

.nav-cta {
    background: var(--gradient);
    color: var(--white) !important;
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 600;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37,99,235,0.4);
}

/* Hero Section */
.hero {
    background: var(--gradient);
    color: var(--white);
    padding: 180px 24px 120px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

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

.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.hero-subtitle {
    display: inline-block;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
    background: var(--gradient-hot);
    padding: 10px 24px;
    border-radius: 50px;
    border: 2px solid rgba(255,255,255,0.3);
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
}

.hero h1 span {
    display: block;
    background: linear-gradient(to right, #fff, #a5f3fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

.btn-white {
    background: var(--white);
    color: var(--primary);
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.3);
}

.btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--white);
}

.btn-primary {
    background: var(--gradient);
    color: var(--white);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(37,99,235,0.4);
}

.btn-danger {
    background: var(--gradient-hot);
    color: var(--white);
    border: none;
}

.btn-danger:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(220,38,38,0.5);
}

.btn-outline-danger {
    background: transparent;
    color: var(--danger);
    border: 2px solid var(--danger);
}

.btn-outline-danger:hover {
    background: var(--danger);
    color: var(--white);
}

/* Stats Bar */
.stats-bar {
    background: var(--white);
    padding: 40px 24px;
    margin-top: -60px;
    position: relative;
    z-index: 10;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.stats-bar .container,
.stats-bar {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 32px;
}

.stat-item h3 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 8px;
}

.stat-item p {
    color: var(--gray);
    font-size: 14px;
}

/* Section Common */
.section {
    padding: 100px 24px;
}

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

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 16px;
}

.section-header p {
    color: var(--gray);
    font-size: 1.1rem;
}

.section-light {
    background: var(--light);
}

/* Products Section */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.product-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.product-card.featured {
    border: 3px solid var(--danger);
    position: relative;
}

.product-card.featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-hot);
}

.product-card.featured:hover {
    border-color: var(--danger-dark);
    box-shadow: 0 25px 50px rgba(220,38,38,0.2);
}

.product-image {
    height: 220px;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.product-image img {
    max-height: 100%;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.2));
}

.product-content {
    padding: 32px;
}

.product-tag {
    display: inline-block;
    background: var(--light);
    color: var(--primary);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.product-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--dark);
}

.product-content p {
    color: var(--gray);
    margin-bottom: 24px;
    line-height: 1.7;
}

.product-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 600;
}

.product-link:hover {
    gap: 12px;
}

/* Features Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

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

@media (max-width: 992px) {
    .features-grid.features-grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .features-grid.features-grid-3 {
        grid-template-columns: 1fr;
    }
}

.feature-card {
    background: var(--white);
    padding: 32px;
    border-radius: 16px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: var(--gradient);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--white);
    font-size: 28px;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--dark);
}

.feature-card p {
    color: var(--gray);
    font-size: 15px;
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--dark);
}

.about-text p {
    color: var(--gray);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.about-text .highlight {
    color: var(--primary);
    font-weight: 600;
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.about-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--gradient);
    color: var(--white);
    padding: 24px 32px;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow);
}

.about-badge h4 {
    font-size: 2.5rem;
    font-weight: 800;
}

.about-badge p {
    font-size: 14px;
    opacity: 0.9;
}

/* About Visual Box */
.about-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-visual-box {
    background: var(--gradient);
    border-radius: 24px;
    padding: 48px;
    text-align: center;
    color: var(--white);
    min-width: 350px;
    box-shadow: var(--shadow-lg);
}

.about-icon {
    width: 100px;
    height: 100px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
    font-size: 48px;
}

.about-stats {
    display: flex;
    gap: 32px;
    justify-content: center;
}

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

.about-stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 4px;
}

.about-stat-label {
    font-size: 14px;
    opacity: 0.9;
}

/* CTA Section */
.cta-section {
    background: var(--gradient);
    padding: 100px 24px;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 32px;
}

/* Contact Section */
.contact-section {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 100px 24px;
}

.contact-form {
    background: var(--white);
}

.contact-form h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--dark);
}

.contact-form > p {
    color: var(--gray);
    margin-bottom: 32px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--dark);
    font-weight: 500;
    font-size: 14px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--light);
    border-radius: 10px;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s ease;
    background: var(--light);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--white);
}

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

.contact-info {
    background: var(--dark);
    color: var(--white);
    padding: 40px;
    border-radius: 20px;
}

.contact-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.contact-info-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-info-item i {
    width: 48px;
    height: 48px;
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    font-size: 20px;
}

.contact-info-item h4 {
    font-size: 14px;
    color: var(--gray-light);
    font-weight: 400;
    margin-bottom: 4px;
}

.contact-info-item p,
.contact-info-item a {
    font-size: 16px;
    color: var(--white);
}

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

/* Footer */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 80px 24px 32px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 60px;
}

.footer-brand img {
    height: 60px;
    margin-bottom: 20px;
}

.footer-brand p {
    color: var(--gray-light);
    margin-bottom: 24px;
    max-width: 300px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 44px;
    height: 44px;
    background: var(--dark-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 18px;
}

.footer-social a:hover {
    background: var(--primary);
}

.footer-links h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 24px;
    color: var(--white);
}

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

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

.footer-links a {
    color: var(--gray-light);
    font-size: 15px;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 32px;
    border-top: 1px solid var(--dark-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--gray-light);
    font-size: 14px;
}

/* Page Header */
.page-header {
    background: var(--gradient);
    color: var(--white);
    padding: 160px 24px 80px;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
}

.page-header p {
    opacity: 0.9;
    max-width: 600px;
    margin: 16px auto 0;
}

/* Content Box */
.content-box {
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow);
    padding: 48px;
    margin: -40px auto 80px;
    max-width: 900px;
    position: relative;
    z-index: 10;
}

.content-box p {
    color: var(--gray);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.content-box strong {
    color: var(--primary);
}

/* Privacy Page */
.privacy-content {
    background: var(--light);
    padding: 80px 24px;
}

.privacy-box {
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow);
    padding: 48px;
    max-width: 900px;
    margin: 0 auto;
}

.privacy-box h2 {
    color: var(--dark);
    margin-bottom: 24px;
}

.privacy-box h3 {
    color: var(--dark);
    margin-top: 32px;
    margin-bottom: 16px;
}

.privacy-box p {
    color: var(--gray);
    margin-bottom: 16px;
}

.privacy-box ul {
    color: var(--gray);
    padding-left: 24px;
    margin-bottom: 16px;
}

.privacy-box li {
    margin-bottom: 8px;
}

.privacy-box a {
    color: var(--primary);
}

/* Stats Section - Updated */
.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 8px;
}

.stat-label {
    color: var(--gray);
    font-size: 14px;
}

/* Products Section - Updated */
.products-section {
    background: var(--light);
}

.product-card {
    background: var(--white);
    border-radius: 20px;
    padding: 32px;
    box-shadow: var(--shadow);
    transition: all 0.4s ease;
    position: relative;
}

.product-card.featured {
    border: 2px solid var(--primary);
}

.product-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gradient);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
}

.product-badge.hot {
    background: var(--gradient-hot);
    animation: pulse 2s infinite;
    font-size: 14px;
    padding: 8px 18px;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(220,38,38,0.5); }
    70% { box-shadow: 0 0 0 15px rgba(220,38,38,0); }
    100% { box-shadow: 0 0 0 0 rgba(220,38,38,0); }
}

.product-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--white);
    font-size: 36px;
}

.product-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--dark);
}

.product-card > p {
    color: var(--gray);
    margin-bottom: 24px;
    line-height: 1.7;
}

.product-features {
    list-style: none;
    margin-bottom: 24px;
}

.product-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--gray);
    margin-bottom: 12px;
    font-size: 15px;
}

.product-features i {
    color: var(--primary);
}

.btn-secondary {
    background: var(--light);
    color: var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: var(--white);
}

/* Product Pricing */
.product-price {
    font-size: 1rem;
    color: var(--gray);
    margin-bottom: 20px;
    padding: 12px 16px;
    background: var(--light);
    border-radius: 10px;
    text-align: center;
}

.product-price span {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary);
}

.product-card.featured .product-price span {
    color: var(--danger);
}

/* Center product card buttons */
.product-card .btn {
    display: block;
    text-align: center;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 16px;
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.5);
}

.btn-outline-white:hover {
    background: var(--white);
    color: var(--primary);
}

/* Section Badge */
.section-badge {
    display: inline-block;
    background: var(--light);
    color: var(--primary);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
}

/* Timeline */
.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--light);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    gap: 40px;
    margin-bottom: 48px;
    position: relative;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
    text-align: right;
}

.timeline-year {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    background: var(--gradient);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    position: relative;
    z-index: 2;
}

.timeline-content {
    flex: 1;
    background: var(--white);
    padding: 24px;
    border-radius: 16px;
    box-shadow: var(--shadow);
}

.timeline-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px;
}

.timeline-content p {
    color: var(--gray);
}

/* Contact Grid */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 480px;
    gap: 60px;
    align-items: start;
}

.contact-form h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--dark);
}

.contact-form > p {
    color: var(--gray);
    margin-bottom: 32px;
}

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

.contact-info-box {
    background: var(--dark);
    color: var(--white);
    padding: 40px;
    border-radius: 20px;
    margin-bottom: 24px;
}

.contact-info-box h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 32px;
}

.contact-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    font-size: 20px;
    flex-shrink: 0;
}

.contact-details h4 {
    font-size: 13px;
    color: var(--gray-light);
    font-weight: 400;
    margin-bottom: 4px;
}

.contact-details p,
.contact-details a {
    color: var(--white);
    font-size: 15px;
}

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

.remote-support {
    background: var(--light);
    padding: 24px;
    border-radius: 16px;
    text-align: center;
}

.remote-support h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px;
}

.remote-support h4 i {
    color: var(--primary);
    margin-right: 8px;
}

.remote-support p {
    color: var(--gray);
    font-size: 14px;
    margin-bottom: 16px;
}

/* Privacy Page - Updated */
.privacy-content {
    max-width: 900px;
    margin: 0 auto;
}

.privacy-intro {
    background: var(--light);
    padding: 32px;
    border-radius: 16px;
    margin-bottom: 40px;
}

.privacy-intro p {
    color: var(--gray);
    font-size: 1.1rem;
    margin: 0;
}

.privacy-section {
    background: var(--white);
    border: 1px solid var(--light);
    padding: 32px;
    border-radius: 16px;
    margin-bottom: 24px;
}

.privacy-section h2 {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 16px;
}

.privacy-number {
    width: 36px;
    height: 36px;
    background: var(--gradient);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    flex-shrink: 0;
}

.privacy-section p {
    color: var(--gray);
    margin-bottom: 16px;
}

.privacy-section ul {
    list-style: none;
    padding: 0;
}

.privacy-section li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--gray);
    margin-bottom: 12px;
}

.privacy-section li i {
    color: var(--primary);
    margin-top: 4px;
}

.privacy-section a {
    color: var(--primary);
    font-weight: 500;
}

/* Header Contact */
.header-contact {
    display: flex;
    align-items: center;
    gap: 24px;
}

.header-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--dark);
    font-size: 17px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.header-contact-item:hover {
    color: var(--primary);
}

.header-contact-item i {
    color: var(--primary);
    font-size: 20px;
}

/* Header CTA */
.header-cta {
    display: none;
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Features Section Background */
.features-section {
    background: var(--light);
}

/* Footer Grid */
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 60px;
}

.footer-brand .footer-logo {
    height: 70px;
    margin-bottom: 20px;
}

.footer-brand p {
    color: var(--gray-light);
    margin-bottom: 24px;
    max-width: 300px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 44px;
    height: 44px;
    background: var(--dark-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 18px;
}

.social-links a:hover {
    background: var(--primary);
}

.footer-address {
    margin-bottom: 20px;
}

.footer-address p {
    color: var(--gray-light);
    font-size: 14px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-address p i {
    color: var(--primary-light);
    width: 16px;
}

.footer-address a {
    color: var(--gray-light);
}

.footer-address a:hover {
    color: var(--white);
}

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid var(--dark-light);
    text-align: center;
}

.footer-bottom p {
    color: var(--gray-light);
    font-size: 14px;
}

/* About Page Styles */
.about-intro {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-intro-text h2 {
    font-size: 2.5rem;
    margin-bottom: 24px;
    color: var(--dark);
}

.about-intro-text p {
    margin-bottom: 16px;
    color: var(--gray);
    line-height: 1.8;
}

.about-intro-visual {
    display: flex;
    justify-content: center;
}

/* Services Overview */
.services-overview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
}

.service-item {
    background: var(--white);
    padding: 32px;
    border-radius: 16px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.service-icon i {
    font-size: 28px;
    color: var(--white);
}

.service-item h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--dark);
}

.service-item p {
    color: var(--gray);
    font-size: 14px;
    line-height: 1.6;
}

/* Timeline Section */
.timeline-section {
    background: var(--light);
}

/* NEW Contact Page Layout - Info Cards on Top */
.contact-info-section {
    background: var(--white);
    padding: 80px 0;
    margin-top: -60px;
    position: relative;
    z-index: 10;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.contact-info-card {
    background: var(--white);
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    transition: all 0.4s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.contact-info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

.contact-info-card-icon {
    width: 90px;
    height: 90px;
    background: var(--gradient);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 36px;
    color: var(--white);
}

.contact-info-card-icon.phone {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.contact-info-card-icon.email {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.contact-info-card-icon.hours {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
}

.contact-info-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}

.contact-info-card p,
.contact-info-card a {
    font-size: 1.1rem;
    color: var(--gray);
    line-height: 1.6;
}

.contact-info-card a:hover {
    color: var(--primary);
}

/* Contact Form Section */
.contact-form-section {
    background: var(--light);
    padding: 100px 0;
}

.contact-form-wrapper {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 50px;
    align-items: start;
}

.contact-form-left {
    background: var(--white);
    border-radius: 24px;
    padding: 50px;
    box-shadow: var(--shadow-lg);
}

.form-intro {
    margin-bottom: 40px;
}

.form-intro h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}

.form-intro p {
    font-size: 1.1rem;
    color: var(--gray);
}

.contact-form-large .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
}

.form-group-large {
    margin-bottom: 0;
}

.form-group-large label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 10px;
}

.form-group-large input,
.form-group-large textarea {
    width: 100%;
    padding: 18px 20px;
    border: 2px solid var(--light);
    border-radius: 14px;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s ease;
    background: var(--light);
}

.form-group-large input:focus,
.form-group-large textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

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

/* Removed margin-top for adjacent form-group-large since form-row handles layout */

.btn-submit-large {
    width: 100%;
    background: var(--gradient);
    color: var(--white);
    padding: 20px 40px;
    border-radius: 14px;
    font-size: 18px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s ease;
    margin-top: 30px;
}

.btn-submit-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.35);
}

/* Contact Form Right Side */
.contact-form-right {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.remote-support-large {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    color: var(--white);
    padding: 40px;
    border-radius: 24px;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.remote-support-large-icon {
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 36px;
}

.remote-support-large h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.remote-support-large p {
    font-size: 15px;
    opacity: 0.9;
    margin-bottom: 24px;
    line-height: 1.6;
}

.btn-anydesk-large {
    background: var(--white);
    color: #dc2626;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-anydesk-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* Social Box Large */
.social-box-large {
    background: var(--white);
    padding: 40px;
    border-radius: 24px;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.social-box-large h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 24px;
}

.social-links-large {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 24px;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    transition: all 0.3s ease;
}

.social-btn.facebook {
    background: linear-gradient(135deg, #1877f2 0%, #0d65d9 100%);
}

.social-btn.instagram {
    background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* Map Section Large */
.map-section-large {
    width: 100%;
}

.map-container-large {
    width: 100%;
    height: 450px;
}

.map-container-large iframe {
    width: 100%;
    height: 100%;
    filter: grayscale(20%) contrast(1.1);
}

/* Enhanced Contact Page Styles */
.contact-form-card {
    background: var(--white);
    border-radius: 24px;
    padding: 60px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(0,0,0,0.05);
}

.contact-form-header {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 48px;
    padding-bottom: 40px;
    border-bottom: 2px solid var(--light);
}

.form-header-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 36px;
    flex-shrink: 0;
}

.form-header-text h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}

.form-header-text p {
    color: var(--gray);
    font-size: 17px;
    margin: 0;
    line-height: 1.6;
}

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

.input-icon-wrapper,
.textarea-wrapper {
    position: relative;
}

.input-icon-wrapper i,
.textarea-wrapper i {
    position: absolute;
    left: 22px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray-light);
    font-size: 20px;
    transition: color 0.3s ease;
    z-index: 1;
}

.textarea-wrapper i {
    top: 28px;
    transform: none;
}

.input-icon-wrapper input,
.textarea-wrapper textarea {
    width: 100%;
    padding: 22px 22px 22px 60px;
    border: 2px solid var(--light);
    border-radius: 16px;
    font-size: 18px;
    font-family: inherit;
    transition: all 0.3s ease;
    background: var(--light);
}

.input-icon-wrapper input::placeholder,
.textarea-wrapper textarea::placeholder {
    color: var(--gray-light);
}

.input-icon-wrapper input:focus,
.textarea-wrapper textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

.input-icon-wrapper input:focus + i,
.input-icon-wrapper:focus-within i,
.textarea-wrapper:focus-within i {
    color: var(--primary);
}

.textarea-wrapper textarea {
    resize: vertical;
    min-height: 200px;
}

.btn-submit {
    width: 100%;
    background: var(--gradient);
    color: var(--white);
    padding: 22px 40px;
    border-radius: 16px;
    font-size: 19px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    transition: all 0.3s ease;
    margin-top: 24px;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.35);
}

.btn-submit i {
    transition: transform 0.3s ease;
}

.btn-submit:hover i {
    transform: translateX(5px);
}

/* Contact Info Side */
.contact-info-side {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-info-box-modern {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-light) 100%);
    color: var(--white);
    padding: 44px;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
}

.contact-info-box-modern h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.contact-info-box-modern h3 i {
    color: var(--secondary);
}

.contact-items-grid {
    display: grid;
    gap: 20px;
}

.contact-item-modern {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 20px;
    background: rgba(255,255,255,0.05);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.contact-item-modern:hover {
    background: rgba(255,255,255,0.1);
    transform: translateX(5px);
}

.contact-item-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
    flex-shrink: 0;
}

.contact-item-icon.phone-icon {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.contact-item-icon.email-icon {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.contact-item-icon.hours-icon {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
}

.contact-item-content h4 {
    font-size: 13px;
    color: var(--gray-light);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.contact-item-content p,
.contact-item-content a {
    color: var(--white);
    font-size: 17px;
    line-height: 1.6;
}

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

/* Remote Support Box */
.remote-support-box {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    color: var(--white);
    padding: 36px;
    border-radius: 24px;
    display: flex;
    align-items: flex-start;
    gap: 24px;
    box-shadow: var(--shadow-lg);
}

.remote-support-icon {
    width: 72px;
    height: 72px;
    background: rgba(255,255,255,0.2);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    flex-shrink: 0;
}

.remote-support-content h4 {
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.remote-support-content p {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 20px;
    line-height: 1.6;
}

.btn-anydesk {
    background: var(--white);
    color: #dc2626;
    padding: 16px 28px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-anydesk:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

/* Contact Social Box */
.contact-social-box {
    background: var(--white);
    padding: 32px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    border: 1px solid var(--light);
}

.contact-social-box h4 {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 24px;
}

.contact-social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-link {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--white);
    transition: all 0.3s ease;
}

.social-link.facebook {
    background: linear-gradient(135deg, #1877f2 0%, #0d65d9 100%);
}

.social-link.instagram {
    background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-link:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* Map Section */
.map-section {
    position: relative;
    background: var(--light);
}

.map-container {
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    filter: grayscale(20%) contrast(1.1);
}

.map-overlay {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
}

.map-info-card {
    background: var(--white);
    padding: 32px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    text-align: center;
    min-width: 220px;
}

.map-pin {
    width: 60px;
    height: 60px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: var(--white);
    font-size: 24px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.map-info-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.map-info-card p {
    color: var(--gray);
    font-size: 14px;
    margin-bottom: 16px;
}

.map-directions {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gradient);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.map-directions:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.35);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .footer-content,
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .about-content,
    .about-intro {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .contact-section,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-card {
        padding: 32px;
    }

    /* New contact page responsive */
    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-form-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-form-right {
        flex-direction: row;
    }

    .remote-support-large,
    .social-box-large {
        flex: 1;
    }

    .map-overlay {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        padding: 24px;
        display: flex;
        justify-content: center;
    }

    .map-info-card {
        max-width: 300px;
    }

    .timeline-item,
    .timeline-item:nth-child(even) {
        flex-direction: column;
        text-align: left;
    }

    .timeline::before {
        left: 50px;
    }

    .timeline-year {
        width: 80px;
        height: 80px;
    }

    .header .container {
        flex-wrap: wrap;
    }

    .header-cta {
        display: none;
    }

    .header-contact {
        display: none;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }

    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        padding: 24px;
        box-shadow: var(--shadow);
    }

    .main-nav.active {
        display: block;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 16px;
    }

    .hero {
        padding: 140px 24px 80px;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .stats-bar {
        grid-template-columns: repeat(2, 1fr);
        margin-top: -40px;
    }

    .section-header h2 {
        font-size: 2rem;
    }

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

    .footer-content,
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-social,
    .social-links {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .page-header h1 {
        font-size: 2rem;
    }

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

    .contact-form-card {
        padding: 24px;
    }

    .contact-form-header {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .form-header-icon {
        width: 56px;
        height: 56px;
        font-size: 24px;
    }

    .remote-support-box {
        flex-direction: column;
        text-align: center;
        padding: 24px;
    }

    .remote-support-icon {
        margin: 0 auto;
    }

    /* New contact page mobile */
    .contact-info-section {
        padding: 50px 0;
        margin-top: -40px;
    }

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

    .contact-info-card {
        padding: 30px 20px;
    }

    .contact-info-card-icon {
        width: 70px;
        height: 70px;
        font-size: 28px;
    }

    .contact-form-section {
        padding: 60px 0;
    }

    .contact-form-left {
        padding: 30px;
    }

    .contact-form-large .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-right {
        flex-direction: column;
    }

    .map-section {
        display: flex;
        flex-direction: column;
    }

    .map-container {
        height: 300px;
    }

    .map-container-large {
        height: 350px;
    }

    .map-overlay {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        padding: 20px;
        background: var(--light);
    }

    .timeline::before {
        display: none;
    }

    .timeline-item {
        flex-direction: column;
        text-align: center;
    }

    .timeline-year {
        margin: 0 auto 16px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .privacy-section h2 {
        flex-wrap: wrap;
    }
}

/* Alert Messages */
.alert {
    padding: 16px 20px;
    border-radius: 12px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 500;
}

.alert i {
    font-size: 20px;
}

.alert-success {
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    color: #065f46;
    border: 1px solid #6ee7b7;
}

.alert-error {
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
    color: #991b1b;
    border: 1px solid #f87171;
}

/* Testimonials Section */
.testimonials-section {
    background: var(--light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto 48px;
}

.testimonial-card {
    background: var(--white);
    border-radius: 24px;
    padding: 32px;
    box-shadow: var(--shadow);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.testimonial-avatar {
    width: 56px;
    height: 56px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
    flex-shrink: 0;
}

.testimonial-author {
    flex: 1;
}

.testimonial-author h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 4px;
}

.testimonial-rating {
    display: flex;
    gap: 2px;
}

.testimonial-rating i {
    color: #fbbf24;
    font-size: 14px;
}

.google-badge {
    width: 40px;
    height: 40px;
    background: var(--white);
    border: 2px solid var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.google-badge i {
    font-size: 20px;
    background: linear-gradient(135deg, #4285f4, #ea4335, #fbbc04, #34a853);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.testimonial-text {
    color: var(--gray);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 16px;
    font-style: italic;
}

.testimonial-date {
    font-size: 13px;
    color: var(--gray-light);
}

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

/* Responsive Testimonials */
@media (max-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

    .testimonials-cta {
        flex-direction: column;
        align-items: center;
    }
}
