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

:root {
    /* Custom Weathry Colors */
    --electric-blue: hsl(195, 100%, 50%);
    --neon-turquoise: hsl(174, 72%, 56%);
    --light-blue: hsl(200, 100%, 70%);
    --coral-accent: hsl(17, 100%, 60%);
    --deep-navy: hsl(225, 85%, 6%);
    --ocean-light: hsl(195, 100%, 97%);
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: white;
    background-color: var(--deep-navy);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

.font-exciting {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
}

/* Utility Classes */
.electric-blue { color: var(--electric-blue); }
.neon-turquoise { color: var(--neon-turquoise); }
.coral-accent { color: var(--coral-accent); }
.deep-navy { color: var(--deep-navy); }

.bg-electric-blue { background-color: var(--electric-blue); }
.bg-neon-turquoise { background-color: var(--neon-turquoise); }
.bg-coral-accent { background-color: var(--coral-accent); }
.bg-deep-navy { background-color: var(--deep-navy); }
.bg-ocean-light { background-color: var(--ocean-light); }

.gradient-electric-turquoise {
    background: linear-gradient(45deg, var(--electric-blue), var(--neon-turquoise));
}

.gradient-turquoise-coral {
    background: linear-gradient(45deg, var(--electric-blue), var(--light-blue));
}

.gradient-electric-coral {
    background: linear-gradient(45deg, var(--electric-blue), var(--light-blue));
}

.text-gradient {
    background: linear-gradient(45deg, var(--electric-blue), var(--neon-turquoise));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-coral {
    background: linear-gradient(45deg, var(--electric-blue), var(--light-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(15, 23, 60, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 183, 255, 0.2);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.nav-logo {
    font-size: 1.875rem;
    font-weight: 900;
    text-decoration: none;
    background: linear-gradient(45deg, var(--electric-blue), var(--neon-turquoise));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
    cursor: pointer;
}

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

.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, var(--deep-navy) 0%, rgba(0, 183, 255, 0.2) 50%, rgba(64, 224, 208, 0.3) 100%);
    overflow: hidden;
    padding: 4rem 1rem 6rem; /* Top, Horizontal, Bottom padding */
    box-sizing: border-box;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, transparent 0%, rgba(30, 41, 59, 0.8) 100%);
    pointer-events: none;
}

.hero-content {
    text-align: center;
    z-index: 10;
    max-width: 1000px;
    padding: 0 1rem;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: clamp(1.25rem, 3vw, 1.5rem);
    color: #cbd5e1;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 9999px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    min-width: 200px;
    justify-content: center;
}

.btn-primary {
    background: linear-gradient(45deg, var(--electric-blue), var(--neon-turquoise));
    color: white;
}

.btn-primary:hover {
    transform: scale(1.05);
}

.btn-secondary {
    border: 2px solid var(--electric-blue);
    color: var(--electric-blue);
    background: transparent;
}

.btn-secondary:hover {
    background: var(--electric-blue);
    color: white;
    transform: scale(1.05);
}

/* Sections */
.section {
    padding: 1.5rem 0;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    text-align: center;
    margin-bottom: 3rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: #cbd5e1;
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
}

/* About Section */
.about {
    background: linear-gradient(135deg, var(--deep-navy) 0%, #1e293b 100%);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 1rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3);
}

.about-content h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.about-content p {
    color: #cbd5e1;
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.feature-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2rem;
}

.feature-card {
    background: rgba(0, 183, 255, 0.1);
    border: 1px solid rgba(0, 183, 255, 0.3);
    border-radius: 0.75rem;
    padding: 1.5rem;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: scale(1.05);
}

.feature-card i {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--electric-blue);
}

.feature-card h4 {
    color: white;
    margin-bottom: 0.5rem;
}

.feature-card p {
    color: #cbd5e1;
    font-size: 0.875rem;
}

/* Surfy Section */
.surfy {
    background: linear-gradient(135deg, #1e293b 0%, var(--deep-navy) 100%);
}

.surfy-demo {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.chat-demo {
    background: linear-gradient(135deg, #374151 0%, #1f2937 100%);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 183, 255, 0.3);
}

.chat-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.chat-avatar {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--electric-blue), var(--neon-turquoise));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
}

.chat-avatar i {
    color: white;
    font-size: 1.25rem;
}

.chat-header h3 {
    color: white;
    font-size: 1.25rem;
}

.user-question {
    background: #4b5563;
    border-radius: 0.75rem;
    padding: 1rem;
    margin-bottom: 1rem;
}

.user-question p:first-child {
    color: #9ca3af;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.user-question p:last-child {
    color: white;
}

.surfy-response {
    background: var(--deep-navy);
    border-radius: 0.75rem;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.surfy-response p {
    color: white;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.surfy-response p:last-child {
    margin-bottom: 0;
}

.surfy-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.surfy-image {
    width: 100%;
    height: 16rem;
    object-fit: cover;
    border-radius: 1rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3);
    margin-bottom: 2rem;
}

/* Contact Section */
.contact {
    background: linear-gradient(135deg, var(--deep-navy) 0%, #1e293b 50%, var(--deep-navy) 100%);
}

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

.contact-card {
    text-align: center;
    padding: 2rem;
    border-radius: 1rem;
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: scale(1.05);
}

.contact-card:nth-child(1) {
    background: rgba(0, 183, 255, 0.1);
    border: 1px solid rgba(0, 183, 255, 0.3);
}

.contact-card:nth-child(2) {
    background: rgba(0, 183, 255, 0.1);
    border: 1px solid rgba(0, 183, 255, 0.3);
}

.contact-card:nth-child(3) {
    background: rgba(0, 183, 255, 0.1);
    border: 1px solid rgba(0, 183, 255, 0.3);
}

.contact-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: white;
}

.contact-card:nth-child(1) .contact-icon {
    background: linear-gradient(45deg, var(--electric-blue), var(--neon-turquoise));
}

.contact-card:nth-child(2) .contact-icon {
    background: linear-gradient(45deg, var(--electric-blue), var(--light-blue));
}

.contact-card:nth-child(3) .contact-icon {
    background: linear-gradient(45deg, var(--electric-blue), var(--light-blue));
}

.contact-card h3 {
    color: white;
    margin-bottom: 1rem;
}

.contact-card a {
    color: var(--electric-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-card a:hover {
    color: var(--neon-turquoise);
}

.contact-final {
    text-align: center;
}

.contact-final-image {
    width: 100%;
    height: 16rem;
    object-fit: cover;
    border-radius: 1rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3);
    margin-bottom: 2rem;
}

.contact-final h3 {
    font-size: 2rem;
    color: white;
    margin-bottom: 1.5rem;
}

/* Footer */
.footer {
    background: var(--deep-navy);
    border-top: 1px solid rgba(0, 183, 255, 0.2);
    padding: 3rem 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-logo {
    font-size: 1.875rem;
    font-weight: 900;
    background: linear-gradient(45deg, var(--electric-blue), var(--neon-turquoise));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-tagline {
    color: #9ca3af;
    margin-top: 0.5rem;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
    cursor: pointer;
}

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

.footer-bottom {
    border-top: 1px solid rgba(0, 183, 255, 0.2);
    padding-top: 2rem;
    text-align: center;
    color: #9ca3af;
}

/* Floating WhatsApp */
.floating-whatsapp {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 1000;
}

.floating-whatsapp a {
    display: block;
    width: 4rem;
    height: 4rem;
    background: linear-gradient(45deg, #25d366, #128c7e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    animation: float 3s ease-in-out infinite;
    text-decoration: none;
}

.floating-whatsapp a:hover {
    transform: scale(1.1);
}

.floating-whatsapp i {
    color: white;
    font-size: 1.5rem;
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.animate-pulse {
    animation: pulse 2s ease-in-out infinite;
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.scroll-indicator:hover {
    opacity: 0.7;
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--electric-blue), var(--neon-turquoise));
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loading-content {
    text-align: center;
}

.loading-spinner {
    width: 4rem;
    height: 4rem;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top: 4px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading-text {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(15, 23, 60, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 1rem;
        gap: 1rem;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-toggle {
        display: block;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .about-grid,
    .surfy-demo {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .feature-cards,
    .surfy-features {
        grid-template-columns: 1fr;
    }

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

    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (min-width: 768px) {
    .hero-buttons {
        flex-direction: row;
        justify-content: center;
    }
}

/* Privacy Policy Specific Styles */
.privacy-nav {
    background: rgba(15, 23, 60, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 183, 255, 0.2);
}

.privacy-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 6rem 1rem 3rem;
}

.privacy-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 2rem;
    background: linear-gradient(45deg, var(--electric-blue), var(--neon-turquoise));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.privacy-content h2 {
    color: var(--electric-blue);
    margin: 3rem 0 1.5rem;
    font-size: 1.5rem;
}

.privacy-content h3 {
    color: var(--neon-turquoise);
    margin: 2rem 0 1rem;
    font-size: 1.25rem;
}

.privacy-content p {
    color: #cbd5e1;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.privacy-content ul {
    color: #cbd5e1;
    margin-bottom: 2rem;
    padding-left: 1.5rem;
}

.privacy-content li {
    margin-bottom: 0.5rem;
}

.privacy-content a {
    color: var(--electric-blue);
    text-decoration: none;
}

.privacy-content a:hover {
    color: var(--neon-turquoise);
}

.privacy-cta {
    background: rgba(0, 183, 255, 0.1);
    border: 1px solid rgba(0, 183, 255, 0.3);
    border-radius: 0.75rem;
    padding: 1.5rem;
    text-align: center;
    margin-top: 3rem;
}