/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors */
    --background: #ffffff;
    --foreground: #293241;
    --card: #ffffff;
    --card-foreground: #293241;
    --popover: #ffffff;
    --popover-foreground: #293241;
    
    /* Primary - Bright Blue */
    --primary: #0077ff;
    --primary-foreground: #ffffff;
    
    /* Secondary - Bright Yellow */
    --secondary: #ffd700;
    --secondary-foreground: #293241;
    
    /* Accent - Bright Red */
    --accent: #ff3838;
    --accent-foreground: #ffffff;
    
    --muted: #f0f4f8;
    --muted-foreground: #657786;
    
    --destructive: #ff3838;
    --destructive-foreground: #ffffff;
    
    --border: #d1d5db;
    --input: #d1d5db;
    --ring: #0077ff;
    
    --radius: 0.75rem;
    
    /* Custom brand colors */
    --brand-blue: #0077ff;
    --brand-yellow: #ffd700;
    --brand-red: #ff3838;
    --brand-green: #2ecc71;
    --brand-orange: #ff7700;
    
    /* Gradients */
    --gradient-hero: linear-gradient(135deg, var(--primary) 0%, #005fcc 100%);
    --gradient-cta: linear-gradient(135deg, var(--secondary) 0%, var(--brand-orange) 100%);
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Dark Mode Variables */
@media (prefers-color-scheme: dark) {
    :root {
        --background: #1a1f29;
        --foreground: #f0f4f8;
        --card: #1e2532;
        --card-foreground: #f0f4f8;
        --popover: #1e2532;
        --popover-foreground: #f0f4f8;
        
        --primary: #4da6ff;
        --primary-foreground: #ffffff;
        --secondary: #ffd700;
        --secondary-foreground: #1a1f29;
        
        --muted: #2c3547;
        --muted-foreground: #a0aec0;
        
        --border: #374151;
        --input: #374151;
    }
}

/* Base Styles */
body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.6;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.text-center {
    text-align: center;
}

/* Header Styles */
.sticky-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

@media (prefers-color-scheme: dark) {
    .sticky-header {
        background-color: rgba(26, 31, 41, 0.95);
    }
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 4rem;
}

.logo-img {
    height: 3.5rem;
    width: auto;
}

.desktop-nav {
    display: none;
    align-items: center;
    gap: 0.25rem;
}

.nav-link {
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--foreground);
    text-decoration: none;
    transition: all 0.2s ease;
}

.nav-link:hover {
    background-color: var(--muted);
}

.nav-link.active {
    background-color: var(--primary);
    color: var(--primary-foreground);
}

.cta-button {
    display: none;
}

.call-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-weight: 600;
    background-color: var(--secondary);
    color: var(--secondary-foreground);
    text-decoration: none;
    transition: all 0.2s ease;
}

.call-button:hover {
    background-color: #e6c200;
}

.mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    border-radius: 0.5rem;
    background-color: transparent;
    border: none;
    color: var(--foreground);
    cursor: pointer;
    transition: all 0.2s ease;
}

.mobile-menu-btn:hover {
    background-color: var(--muted);
}

.mobile-nav {
    display: none;
    padding: 1rem 0;
    border-top: 1px solid var(--border);
}

.mobile-nav.active {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mobile-nav-link {
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--foreground);
    text-decoration: none;
    transition: all 0.2s ease;
}

.mobile-nav-link:hover {
    background-color: var(--muted);
}

.mobile-nav-link.active {
    background-color: var(--primary);
    color: var(--primary-foreground);
}

.mobile-call-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    margin-top: 0.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    background-color: var(--secondary);
    color: var(--secondary-foreground);
    text-decoration: none;
    transition: all 0.2s ease;
}

.mobile-call-button:hover {
    background-color: #e6c200;
}

/* Desktop Navigation */
@media (min-width: 768px) {
    .header-content {
        height: 5rem;
    }
    
    .desktop-nav {
        display: flex;
    }
    
    .cta-button {
        display: block;
    }
    
    .mobile-menu-btn {
        display: none;
    }
}

/* Hero Section */
.hero-section {
    position: relative;
    background: var(--gradient-hero);
    color: var(--primary-foreground);
    overflow: hidden;
    padding: 4rem 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: var(--secondary);
    color: var(--secondary-foreground);
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    animation: fadeIn 0.5s ease-out 0.1s both;
}

.hero-title {
    font-size: 2.25rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    animation: fadeIn 0.5s ease-out 0.2s both;
}

.hero-title .highlight {
    display: block;
    color: var(--secondary);
}

.hero-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 36rem;
    animation: fadeIn 0.5s ease-out 0.3s both;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    animation: fadeIn 0.5s ease-out 0.4s both;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.2s ease;
    border: 2px solid transparent;
}

.primary-btn {
    background-color: var(--secondary);
    color: var(--secondary-foreground);
}

.primary-btn:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.secondary-btn {
    background-color: transparent;
    color: var(--primary-foreground);
    border-color: var(--primary-foreground);
}

.secondary-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.hero-image {
    display: flex;
    justify-content: center;
    animation: float 3s ease-in-out infinite;
}

.hero-img {
    border-radius: 1rem;
    box-shadow: var(--shadow-xl);
    max-width: 100%;
    height: auto;
}

.image-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 300px;
    height: 300px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    color: var(--primary-foreground);
}

.hero-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.wave-decoration {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.wave-decoration svg {
    display: block;
    width: 100%;
    height: auto;
}

/* Desktop Hero */
@media (min-width: 1024px) {
    .hero-section {
        padding: 6rem 0;
    }
    
    .hero-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-buttons {
        flex-direction: row;
    }
    
    .image-placeholder {
        max-width: 400px;
        height: 400px;
    }
}

/* Sections */
.features-section, .services-section, .locations-section, .cta-section, .gallery-section {
    padding: 4rem 0;
}

.section-header {
    margin-bottom: 3rem;
}

.section-title {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-title .highlight {
    color: var(--primary);
}

.section-description {
    color: var(--muted-foreground);
    max-width: 36rem;
    margin: 0 auto;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.feature-card {
    background-color: var(--card);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.feature-icon {
    width: 4rem;
    height: 4rem;
    background-color: rgba(0, 119, 255, 0.1);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background-color: var(--primary);
    color: var(--primary-foreground);
}

.feature-icon i {
    font-size: 2rem;
    color: var(--primary);
}

.feature-card:hover .feature-icon i {
    color: var(--primary-foreground);
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--card-foreground);
}

.feature-description {
    color: var(--muted-foreground);
}

/* Desktop Features */
@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Services Section */
.services-section {
    background-color: var(--muted);
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.service-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    background-color: var(--card);
    border-radius: 0.75rem;
    padding: 1.5rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    width: 3.5rem;
    height: 3.5rem;
    background-color: var(--primary);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-icon i {
    font-size: 1.5rem;
    color: var(--primary-foreground);
}

.service-content {
    flex: 1;
}

.service-title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--card-foreground);
}

.service-description {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

/* Desktop Services */
@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Locations Section */
.locations-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.location-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background-color: rgba(255, 215, 0, 0.2);
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-weight: 600;
    color: var(--foreground);
}

.location-badge i:first-child {
    color: var(--accent);
}

.location-badge i:last-child {
    color: var(--brand-green);
}

.expanding-text {
    color: var(--muted-foreground);
    font-style: italic;
}

/* CTA Section */
.cta-section {
    background: var(--gradient-cta);
    color: var(--secondary-foreground);
}

.cta-title {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-description {
    color: rgba(41, 50, 65, 0.8);
    margin-bottom: 2rem;
    max-width: 36rem;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cta-buttons .primary-btn {
    background-color: var(--primary);
    color: var(--primary-foreground);
}

.cta-buttons .primary-btn:hover {
    background-color: #0066d9;
}

.cta-buttons .secondary-btn {
    background-color: transparent;
    color: var(--secondary-foreground);
    border-color: var(--secondary-foreground);
}

.cta-buttons .secondary-btn:hover {
    background-color: rgba(41, 50, 65, 0.1);
}

/* Desktop CTA */
@media (min-width: 768px) {
    .cta-buttons {
        flex-direction: row;
        justify-content: center;
    }
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 64rem;
    margin: 0 auto;
}

.gallery-item {
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.gallery-img {
    width: 100%;
    height: auto;
    display: block;
}

.gallery-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* Desktop Gallery */
@media (min-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* Footer */
.footer {
    background-color: #000000;
    color: #ffffff;
    padding: 3rem 0 1.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo-img {
    height: 4rem;
    width: auto;
    margin-bottom: 1rem;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

.powered-by {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-heading {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--secondary);
}

.footer-list {
    list-style: none;
}

.footer-list li {
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-list-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-list-item i {
    color: var(--accent);
    width: 1rem;
}

.footer-list-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.2s ease;
}

.footer-list-item a:hover {
    color: var(--secondary);
}

.footer-bottom {
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.copyright {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.footer-links a {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: all 0.2s ease;
}

.footer-links a:hover {
    color: var(--secondary);
}

/* Desktop Footer */
@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-bottom-content {
        flex-direction: row;
        justify-content: space-between;
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* WhatsApp Button */
.whatsapp-button {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 3.5rem;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    box-shadow: var(--shadow-lg);
    text-decoration: none;
    transition: all 0.3s ease;
    animation: pulse 3s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.whatsapp-button:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-xl);
}

.whatsapp-button i {
    font-size: 1.75rem;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }
}

/* Responsive Adjustments */
@media (min-width: 768px) {
    .features-section, .services-section, .locations-section, .cta-section, .gallery-section {
        padding: 5rem 0;
    }
    
    .section-title {
        font-size: 2.25rem;
    }
}