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

:root {
    --primary-color: #0a2463;
    --secondary-color: #1e3a8a;
    --accent-color: #3b82f6;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --white: #ffffff;
    --light-bg: #f3f4f6;
    --dark-bg: #0a2463;
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
}

html {
    min-height: 100%;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    margin: 0;
    min-height: 100vh;
    background-image: url("images/Gps_2.jpeg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-color: #020617;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Top Bar */
.top-bar {
    background-color: var(--dark-bg);
    color: var(--white);
    padding: 10px 0;
    font-size: 14px;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info span {
    margin-right: 20px;
}

.contact-info i {
    margin-right: 5px;
}

.installation-notice {
    display: flex;
    align-items: center;
    gap: 5px;
}

.installation-notice i {
    color: var(--success);
}

/* Navigation */
.navbar {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo h1 {
    color: var(--primary-color);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 0;
}

.logo p {
    color: var(--text-light);
    font-size: 12px;
    margin-bottom: 5px;
}

.tagline {
    color: var(--accent-color);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: var(--accent-color);
}

.nav-buttons {
    display: flex;
    gap: 10px;
}

.btn {
    padding: 10px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
    cursor: pointer;
    border: none;
}

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

.btn-primary:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

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

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    transition: 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    overflow: hidden;
    color: var(--white);
    padding: 80px 0;
    min-height: 600px;
    background: linear-gradient(180deg, rgba(2,27,77,0.70), rgba(0,60,158,0.45));
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.28);
    pointer-events: none;
    z-index: 1;
}

.hero-background {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}

.hero-bg-gradient {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left, rgba(59,130,246,0.24), transparent 28%), radial-gradient(circle at bottom right, rgba(59,130,246,0.14), transparent 24%), linear-gradient(135deg, #021B4D 0%, #003C9E 52%, #021B4D 100%);
}

.hero-bg-shield {
    position: absolute;
    top: 5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 18rem;
    height: 18rem;
    border-radius: 9999px;
    background: rgba(59,130,246,0.18);
    filter: blur(3rem);
}

.hero-bg-path {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0.24;
}

.hero-bg-marker {
    position: absolute;
    width: 2rem;
    height: 2rem;
    border-radius: 9999px;
    background: #60a5fa;
    box-shadow: 0 0 0 0 rgba(96,165,250,0.35);
    animation: pulse-dot 2.5s ease-in-out infinite;
}

.marker-1 {
    top: 35%;
    left: 25%;
}

.marker-2 {
    top: 45%;
    left: 55%;
}

.marker-3 {
    top: 25%;
    left: 80%;
}

.hero-bg-circle {
    position: absolute;
    top: 5rem;
    right: 8rem;
    width: 16rem;
    height: 16rem;
    border: 2px solid rgba(96,165,250,0.35);
    border-radius: 9999px;
    animation: spin-slow 20s linear infinite;
}

.hero-bg-icon {
    position: absolute;
    opacity: 0.88;
    transform: translateY(0);
}

.hero-bg-icon.icon-1 {
    bottom: 5rem;
    left: 2.5rem;
    font-size: 3.5rem;
}

.hero-bg-icon.icon-2 {
    bottom: 6rem;
    left: 35%;
    font-size: 4.5rem;
}

.hero-bg-icon.icon-3 {
    bottom: 6rem;
    left: 55%;
    font-size: 4.5rem;
}

.hero-bg-icon.icon-4 {
    bottom: 6rem;
    left: 72%;
    font-size: 4.5rem;
}

.hero-bg-icon.icon-5 {
    bottom: 6rem;
    right: 2.5rem;
    font-size: 4.5rem;
}

.hero-bg-phone {
    position: absolute;
    right: 2.5rem;
    top: 5rem;
    width: 18rem;
    height: 34rem;
    border: 4px solid rgba(148,163,184,0.22);
    border-radius: 2.5rem;
    background: rgba(15,23,42,0.75);
    box-shadow: 0 25px 80px rgba(15,23,42,0.35);
}

.hero-phone-inner {
    width: 100%;
    height: 100%;
    border-radius: 2rem;
    padding: 1rem;
    background: linear-gradient(180deg, rgba(59,130,246,0.9), rgba(15,23,42,0.95));
}

.hero-phone-screen {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 1.75rem;
    background: #020617;
    overflow: hidden;
}

.hero-phone-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(229,231,235,0.08) 1px, transparent 1px), linear-gradient(90deg, rgba(229,231,235,0.08) 1px, transparent 1px);
    background-size: 30px 30px;
}

.hero-phone-path {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-phone-dot {
    position: absolute;
    top: 11rem;
    left: 10rem;
    width: 0.75rem;
    height: 0.75rem;
    background: #22c55e;
    border-radius: 9999px;
    animation: pulse-dot 1.8s ease-in-out infinite;
}

.hero .container,
.hero-content {
    position: relative;
    z-index: 2;
}

@keyframes spin-slow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes pulse-dot {
    0%, 100% { box-shadow: 0 0 0 0 rgba(96,165,250,0.35); }
    50% { box-shadow: 0 0 0.75rem 0 rgba(96,165,250,0.14); }
}

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

.hero-text h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    color: var(--white) !important;
}

.hero-text p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.hero-buttons .btn {
    color: var(--white);
}

.hero-buttons .btn-outline {
    border-color: var(--white);
    color: var(--white);
}

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

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

.phone-demo {
    width: 300px;
    background: var(--white);
    border-radius: 30px;
    padding: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.phone-screen {
    background: var(--light-bg);
    border-radius: 20px;
    padding: 15px;
}

.phone-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.phone-header h3 {
    color: var(--primary-color);
    font-size: 16px;
}

.live-badge {
    background-color: var(--danger);
    color: var(--white);
    padding: 3px 8px;
    border-radius: 10px;
    font-size: 10px;
    font-weight: 600;
}

.live-badge i {
    font-size: 6px;
    margin-right: 3px;
}

.phone-map {
    height: 150px;
    background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
    border-radius: 10px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-placeholder {
    text-align: center;
    color: var(--primary-color);
}

.map-placeholder i {
    font-size: 40px;
    margin-bottom: 5px;
}

.map-placeholder p {
    font-size: 12px;
    font-weight: 600;
}

.vehicle-info {
    background: var(--white);
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 15px;
}

.vehicle-name {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--primary-color);
}

.vehicle-stats {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.stat {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: var(--text-light);
}

.vehicle-location {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: var(--text-light);
}

.btn-view-history {
    width: 100%;
    padding: 10px;
    background-color: var(--accent-color);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.btn-view-history:hover {
    background-color: var(--primary-color);
}

/* Statistics Section */
.statistics {
    padding: 60px 0;
    background-color: var(--white);
}

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

.stat-card {
    text-align: center;
    padding: 30px;
    background: var(--light-bg);
    border-radius: 10px;
    transition: transform 0.3s;
}

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

.stat-icon {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

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

/* Features Section */
.features {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.section-header p {
    color: var(--text-light);
    font-size: 16px;
}

.section-tag {
    color: var(--accent-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
}

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

.feature-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 40px;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.feature-card h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 20px;
}

.feature-card p {
    color: var(--text-light);
    font-size: 14px;
}

/* Pricing Section */
.pricing {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.pricing-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.pricing-card h3 {
    color: var(--primary-color);
    font-size: 28px;
    margin-bottom: 10px;
}

.pricing-card > p {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 20px;
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    color: var(--primary-color);
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.pricing-card.popular {
    background: var(--primary-color);
    color: var(--white);
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(10, 36, 99, 0.3);
}

.pricing-card.popular h3 {
    color: var(--white);
}

.pricing-card.popular > p {
    color: rgba(255, 255, 255, 0.8);
}

.pricing-card.popular .amount {
    color: var(--white);
}

.pricing-card.popular .features-list li {
    color: rgba(255, 255, 255, 0.9);
}

.pricing-card.popular .features-list i {
    color: var(--success);
}

.pricing-card.featured {
    border: 2px solid var(--accent-color);
}

.price {
    margin: 25px 0;
}

.amount {
    font-size: 48px;
    font-weight: 700;
    color: var(--accent-color);
}

.period {
    color: var(--text-light);
    font-size: 16px;
    margin-left: 10px;
}

.features-list {
    list-style: none;
    margin: 25px 0;
}

.features-list li {
    padding: 12px 0;
    color: var(--text-dark);
    font-size: 15px;
    border-bottom: 1px solid #f3f4f6;
}

.features-list li:last-child {
    border-bottom: none;
}

.features-list i {
    color: var(--success);
    margin-right: 12px;
}

.btn-white {
    background: var(--white);
    color: var(--primary-color);
    padding: 15px 30px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    display: block;
    text-align: center;
    transition: all 0.3s;
}

.btn-white:hover {
    background: #f3f4f6;
    transform: translateY(-2px);
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 80px 0;
    background-color: var(--white);
}

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

.why-choose-card {
    background: var(--light-bg);
    padding: 20px;
    border-radius: 16px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.why-choose-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.why-choose-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.why-choose-img {
    width: 100%;
    height: 100px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 12px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.why-choose-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.why-choose-card:hover .why-choose-img img {
    transform: scale(1.05);
}

.why-choose-card h3 {
    color: var(--primary-color);
    font-size: 24px;
    margin-bottom: 15px;
}

.why-choose-card p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.8;
}

/* Coverage Section */
.coverage {
    padding: 80px 0;
    background-color: var(--white);
}

.coverage-subtitle {
    color: var(--accent-color) !important;
    font-size: 16px !important;
    margin-top: 10px !important;
}

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

.coverage-map {
    background: linear-gradient(135deg, #F0F9FF 0%, #E0F2FE 100%);
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    border: 2px solid #0284C7;
}

.tanzania-map {
    width: 100%;
    height: auto;
    max-width: 400px;
    filter: drop-shadow(0 4px 12px rgba(2, 132, 199, 0.15));
}

.city-marker {
    transition: r 0.3s ease;
}

.city-marker:hover {
    r: 8;
}

.map-visual {
    font-size: 80px;
    color: var(--primary-color);
}

.map-visual p {
    font-size: 16px;
    margin-top: 10px;
    color: var(--text-light);
}

.region-title {
    color: var(--primary-color);
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
}

.region-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.region-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    background: linear-gradient(135deg, #F0F9FF 0%, #E0F2FE 100%);
    border: 2px solid #0284C7;
    border-radius: 12px;
    font-size: 15px;
    color: var(--primary-color);
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: default;
}

.region-item:hover {
    background: linear-gradient(135deg, #E0F2FE 0%, #BAE6FD 100%);
    border-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(2, 132, 199, 0.2);
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.testimonial-content {
    margin-bottom: 20px;
}

.testimonial-content i {
    font-size: 24px;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.testimonial-content p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--light-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 20px;
}

.author-info h4 {
    color: var(--primary-color);
    margin-bottom: 3px;
}

.author-info span {
    color: var(--text-light);
    font-size: 13px;
}

/* CTA Section */
.cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    text-align: center;
}

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

.cta-content p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.cta-buttons .btn {
    color: var(--white);
}

.cta-buttons .btn-outline {
    border-color: var(--white);
    color: var(--white);
}

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

/* Contact Section */
.contact {
    padding: 80px 0;
    background-color: var(--white);
}

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

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--light-bg);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 24px;
}

.contact-details h4 {
    color: var(--primary-color);
    margin-bottom: 5px;
}

.contact-details p {
    color: var(--text-light);
}

.contact-form {
    background: var(--light-bg);
    padding: 40px;
    border-radius: 10px;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.contact-form .btn {
    width: 100%;
}

/* Footer */
.footer {
    background-color: var(--dark-bg);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: var(--white);
    margin-bottom: 15px;
}

.footer-section h4 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 16px;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.8;
}

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

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: var(--white);
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: background 0.3s;
}

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

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-card.popular {
        transform: scale(1);
    }
    
    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .coverage-content {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-buttons {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero-text h1 {
        font-size: 32px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .why-choose-grid {
        grid-template-columns: 1fr;
    }
    
    .region-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-buttons {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .top-bar-content {
        flex-direction: column;
        gap: 10px;
    }
    
    .contact-info span {
        margin-right: 10px;
    }
    
    .hero-text h1 {
        font-size: 24px;
    }
    
    .hero-text p {
        font-size: 14px;
    }
    
    .region-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}
