/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #082d64;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Colors */
:root {
    --background: #082d64;
    --foreground: #ffffff;
    --primary: #ffd700;
    --primary-foreground: #082d64;
    --card: rgba(255, 255, 255, 0.1);
    --card-foreground: #ffffff;
    --muted-foreground: rgba(255, 255, 255, 0.7);
    --border: rgba(255, 255, 255, 0.2);
    --accent: #4ade80;
}

/* Button styles */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--primary);
    color: var(--primary-foreground);
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    background-color: rgba(255, 215, 0, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background-color: var(--primary);
    color: var(--primary-foreground);
    padding: 20px 40px;
    border-radius: 0.5rem;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.btn-cta:hover {
    background-color: rgba(255, 215, 0, 0.9);
    transform: scale(1.05);
    box-shadow: 0 12px 30px rgba(255, 215, 0, 0.3);
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 2rem 1rem;
    background: linear-gradient(135deg, #082d64 0%, #0f3a7a 50%, #082d64 100%);
}

.phone-button-top {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    z-index: 50;
}

.hero-content {
    max-width: 1400px;
    text-align: center;
}

.hero-title {
    font-size: clamp(4rem, 12vw, 12rem);
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 2rem;
    line-height: 0.9;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    color: var(--foreground);
    margin-bottom: 1.5rem;
    font-weight: 300;
    line-height: 1.3;
    max-width: 80rem;
    margin-left: auto;
    margin-right: auto;
}

.hero-description {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--muted-foreground);
    margin-bottom: 3rem;
    max-width: 45rem;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.hero-availability {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--muted-foreground);
    font-size: 1.125rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 64rem;
    margin: 0 auto;
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 0.75rem;
    border: 1px solid var(--border);
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--muted-foreground);
    font-size: 1rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-wheel {
    width: 1.5rem;
    height: 2.5rem;
    border: 2px solid var(--primary);
    border-radius: 1.25rem;
    display: flex;
    justify-content: center;
    padding-top: 0.5rem;
}

.scroll-dot {
    width: 0.25rem;
    height: 0.75rem;
    background-color: var(--primary);
    border-radius: 0.125rem;
    animation: pulse 2s infinite;
}

/* Services Section */
.services-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--background) 0%, rgba(15, 58, 122, 0.3) 50%, var(--background) 100%);
    position: relative;
    overflow: hidden;
}

.services-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 10;
}

.heading-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.heading-container p {
    font-size: 1.25rem;
    color: var(--muted-foreground);
    max-width: 45rem;
    margin: 0 auto;
    text-align: center;
}

.heading {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--primary);
    text-transform: uppercase;
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.service-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 1rem;
    padding: 1rem;
    transition: all 0.5s ease;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.service-card.special {
    display: grid;
    gap: 10px;
    grid-template-columns: 1fr 2fr;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2) 0%, rgba(255, 215, 0, 0.1) 100%);
    border: 1px solid rgba(255, 215, 0, 0.4);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
    margin-bottom: 2rem;
}

.service-card-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.service-header {
    text-align: center;
}

.service-icon {
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2) 0%, rgba(255, 215, 0, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.service-cta {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 1rem;
}

.service-cta p {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin-right: 0.5rem;
}

.service-icon i {
    font-size: 2.5rem;
    color: var(--primary);
}

.service-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
    text-transform: uppercase;
}

.service-card:hover .service-title {
    color: var(--primary);
}

.service-description {
    color: var(--muted-foreground);
    font-size: 12px;
    max-width: 300px;
    margin: 0 auto;
}

.service-image {
    width: 100%;
    height: 100%;
    max-width: 900px;
}

.service-image img {
    width: 100%;
    height: 100%;
    border-radius: 0.75rem;
    transition: transform 0.3s ease;
}

.service-badge {
    background-color: rgba(255, 215, 0, 0.2);
    border: 1px solid rgba(255, 215, 0, 0.3);
    color: var(--primary);
    padding: 4px 8px;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 12px;
    display: inline-block;
    margin-bottom: 1rem;
}

.service-content {
    position: relative;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem;
    border-radius: 0.5rem;
    transition: background-color 0.2s ease;
}

.feature-item i {
    color: var(--primary);
    font-size: 1.25rem;
    transition: transform 0.2s ease;
}

.feature-item:hover i {
    transform: scale(1.1);
}

.feature-item span {
    color: var(--foreground);
    font-size: 0.875rem;
}

.service-price {
    padding: 10px;
    text-align: center;
}

.price-label {
    font-size: 0.875rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.price-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
}

.services-cta {
    text-align: center;
    margin-top: 2rem;
    position: relative;
    z-index: 10;
    margin-bottom: 2rem;
}

.cta-content {
    background: linear-gradient(to right, rgba(255, 215, 0, 0.1) 0%, rgba(255, 215, 0, 0.2) 50%, rgba(255, 215, 0, 0.1) 100%);
    padding: 2rem;
    border-radius: 2rem;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.cta-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
}

.cta-description {
    color: var(--muted-foreground);
    margin-bottom: 1.5rem;
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
}

/* Gallery Section */
.gallery-section {
    padding: 4rem 1rem;
}

.gallery-header {
    text-align: center;
    margin-bottom: 3rem;
}

.gallery-title {
    font-size: 4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--foreground);
}

.gallery-description {
    font-size: 1.25rem;
    color: var(--muted-foreground);
    max-width: 48rem;
    margin: 0 auto;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 0.75rem;
    aspect-ratio: 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(8, 45, 100, 0.8) 0%, transparent 25%);
    transition: opacity 0.3s ease;
    display: flex;
    align-items: flex-end;
    padding: 1rem;
    line-height: 1;
    color: var(--primary);
}

/* Testimonials Section */
.testimonials-section {
    padding: 5rem 1rem;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 4rem;
}

.testimonials-title {
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.testimonial-item {
    text-align: center;
}

.testimonial-name {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1.125rem;
    color: var(--foreground);
    line-height: 1.6;
    font-style: italic;
}

/* Trust Section */
.trust-section {
    padding: 4rem 1rem;
}

.trust-title {
    font-size: 4rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--foreground);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    text-align: center;
}

.trust-item {
    padding: 1rem;
}

.trust-icon {
    font-size: 4rem;
    color: var(--primary);
    margin: 0 auto 1rem;
    display: block;
}

.trust-item-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 1rem;
}

.trust-item-description {
    color: var(--muted-foreground);
}

/* Footer */
.footer {
    background-color: var(--primary);
    color: var(--primary-foreground);
    padding: 2rem 1rem;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
}

.footer-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-description {
    color: rgba(8, 45, 100, 0.8);
    margin-bottom: 1rem;
}

.footer-contact {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(8, 45, 100, 0.8);
    text-decoration: none;
}

.footer-copyright {
    font-size: 0.75rem;
    color: rgba(8, 45, 100, 0.6);
}

/* Animations */
@keyframes bounce {
    0%, 20%, 53%, 80%, 100% {
        transform: translate3d(0, 0, 0);
    }
    40%, 43% {
        transform: translate3d(0, -30px, 0);
    }
    70% {
        transform: translate3d(0, -15px, 0);
    }
    90% {
        transform: translate3d(0, -4px, 0);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

/* Responsive Design */
@media (min-width: 640px) {
    .hero-actions {
        flex-direction: row;
        justify-content: center;
    }
    
    .footer-contact {
        gap: 3rem;
    }
}

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .trust-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: 4rem;
    }
    
    .heading {
        font-size: 1.7rem;
        margin-bottom: 0.7rem;
    }

    .heading-container p {
        font-size: 0.8rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .testimonial-item {
        max-width: 100%;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
    }

    .stats-grid .stat-card {
        padding: 1rem;
    }

    .stat-card .stat-number {
        font-size: 1rem;
    }

    .stat-card .stat-label {
        font-size: 0.7rem;
    }

    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .trust-item {
        padding: 0.5rem;
    }

    .trust-icon {
        font-size: 2.5rem;
    }

    .trust-item-title {
        font-size: 1rem;
    }

    .trust-item-description {
        font-size: 0.875rem;
    }

    .btn-cta {
        padding: 15px 30px;
        font-size: 1rem;
        margin-bottom: 8px;
    }

    .service-card-left {
        padding: 0;
    }

    .service-card.special {
        grid-template-columns: 1fr;
        margin-bottom: 1rem;
    }

    .service-card p {
        text-align: center;
    }
}
