/* Section Spacing */
section {
    padding: 120px 0;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: 80px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background:
        radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
        linear-gradient(180deg, var(--primary-dark) 0%, rgba(15, 23, 42, 0) 100%);
}

.hero-content {
    max-width: 800px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    background: linear-gradient(90deg, var(--text-primary), var(--accent-blue-light));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    margin-left: auto;
    margin-right: auto;
    max-width: 700px;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 48px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.stat-number {
    font-size: 32px;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

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

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    align-items: center;
}

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

.cta-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 32px;
}

.cta-buttons .btn {
    min-width: 220px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 600;
    border-radius: 12px;
}

/* Hero Animation States */
.hero-hidden {
    opacity: 0;
    transform: translateY(40px);
    pointer-events: none;
}

.hero-show {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 1.1s ease, transform 1.1s ease;
    pointer-events: auto;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    position: relative;
}

.image-container {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.image-container img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s;
}

.image-container:hover img {
    transform: scale(1.05);
}

.about-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gradient-primary);
    color: white;
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    box-shadow: var(--shadow-md);
}

.about-content h3 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 24px;
}

.about-content p {
    color: var(--text-secondary);
    margin-bottom: 24px;
    font-size: 17px;
    line-height: 1.7;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 40px;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.feature-icon-wrapper {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    background: rgba(59, 130, 246, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon {
    color: var(--accent-blue);
    font-size: 24px;
}

.feature-text h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.feature-text p {
    color: var(--text-muted);
    font-size: 15px;
    margin: 0;
}

/* Services Section */
.services {
    background: var(--primary-dark-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 32px;
}

/* Packages Section */
#packages {
    position: relative;
    overflow: hidden;
}

/* Animated Background for Packages */
#packages::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg,
            rgba(59, 130, 246, 0.12),
            rgba(6, 182, 212, 0.10),
            rgba(139, 92, 246, 0.12),
            rgba(59, 130, 246, 0.12));
    background-size: 300% 300%;
    animation: packageGradientMove 18s ease infinite;
    z-index: 0;
}

#packages::after {
    content: "";
    position: absolute;
    inset: -30%;
    background:
        radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.18), transparent 40%),
        radial-gradient(circle at 80% 60%, rgba(139, 92, 246, 0.15), transparent 45%),
        radial-gradient(circle at 50% 80%, rgba(6, 182, 212, 0.12), transparent 50%);
    animation: packageGlowFloat 22s ease-in-out infinite alternate;
    pointer-events: none;
    z-index: 0;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 32px;
}

@keyframes packageGradientMove {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes packageGlowFloat {
    from {
        transform: translateY(0);
    }
    to {
        transform: translateY(-40px);
    }
}

#packages .container {
    position: relative;
    z-index: 1;
}

/* Advantages Section */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 32px;
}

/* Coverage Section */
#coverage {
    position: relative;
    overflow: hidden;
}

/* Abstract Background for Coverage */
#coverage::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 80px 80px;
    opacity: 0.35;
    pointer-events: none;
    z-index: 0;
}

#coverage .container {
    position: relative;
    z-index: 1;
}

.coverage-container {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    padding: 60px;
    border: 1px solid var(--glass-border);
}

.coverage-map {
    margin-bottom: 30px;
}

#map {
    height: 400px;
    width: 100%;
    border-radius: 12px;
    z-index: 1;
}

.map-point {
    position: absolute;
    width: 16px;
    height: 16px;
    background: var(--accent-blue);
    border-radius: 50%;
    box-shadow: 0 0 20px var(--accent-blue);
    animation: pulse 2s infinite;
}

.map-point::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--accent-blue);
    animation: ripple 2s infinite;
}

.map-point:nth-child(1) {
    top: 30%;
    left: 20%;
}

.map-point:nth-child(2) {
    top: 40%;
    left: 50%;
}

.map-point:nth-child(3) {
    top: 60%;
    left: 30%;
}

.map-point:nth-child(4) {
    top: 50%;
    left: 70%;
}

.map-point:nth-child(5) {
    top: 70%;
    left: 60%;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes ripple {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }
    100% {
        transform: scale(3);
        opacity: 0;
    }
}

.coverage-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 16px;
}

.coverage-list li {
    padding: 16px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s;
}

.coverage-list li:hover {
    background: rgba(59, 130, 246, 0.1);
    transform: translateX(5px);
}

.coverage-list li:focus {
    outline: 2px solid var(--accent-blue);
    outline-offset: 2px;
}

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

/* CTA Section */
.cta-section {
    background: var(--gradient-secondary);
    border-radius: var(--radius-lg);
    padding: 100px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="rgba(255,255,255,0.05)"/></svg>');
    background-size: cover;
}

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

.cta-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 24px;
    color: white;
}

.cta-description {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

.cta-phone {
    margin-top: 24px;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

/* Footer */
footer {
    background: var(--primary-dark-light);
    padding: 100px 0 40px;
    border-top: 1px solid var(--glass-border);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 24px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.footer-about p {
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.7;
}

.footer-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text-primary);
}

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

.footer-links li,
.footer-contact li {
    margin-bottom: 16px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-links a:hover {
    color: var(--accent-blue);
    transform: translateX(5px);
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--text-secondary);
}

.footer-contact i {
    color: var(--accent-blue);
    margin-top: 4px;
}

.footer-contact a.map-link {
    color: #ffffff;
    text-decoration: none;
}

.footer-contact a.map-link:hover {
    color: #ffffff;
    text-decoration: underline;
}

.social-icons {
    display: flex;
    gap: 16px;
    margin-top: 32px;
}

.social-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all 0.3s;
    text-decoration: none;
}

.social-icon:hover {
    background: var(--accent-blue);
    color: white;
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid var(--glass-border);
    color: var(--text-muted);
    font-size: 15px;
}