/* RESET */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #fff;
    background: url("ChatGPT-Image-Sep-6-2025-09_15_02-PM.png") no-repeat center center fixed;
    background-size: cover;
    overflow-x: hidden;
    position: relative;
}

/* Overlay to improve text contrast */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.65);
    z-index: -1;
}

/* Floating Support Button */
.support-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-end;
}

.support-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 24px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.support-btn.primary {
    background: linear-gradient(45deg, #00e676, #00c853);
    color: white;
}

.support-btn.secondary {
    background: linear-gradient(45deg, #2196f3, #1976d2);
    color: white;
    width: 50px;
    height: 50px;
    font-size: 20px;
}

.support-btn.tertiary {
    background: linear-gradient(45deg, #ff6f00, #e65100);
    color: white;
    width: 50px;
    height: 50px;
    font-size: 18px;
}

.support-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(0,0,0,0.6);
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 8px 25px rgba(0,0,0,0.4), 0 0 0 0 rgba(0, 230, 118, 0.7); }
    50% { box-shadow: 0 8px 25px rgba(0,0,0,0.4), 0 0 0 10px rgba(0, 230, 118, 0); }
}

/* Header */
header {
    background: rgba(0,0,0,0.3);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

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

.logo-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #00e5ff, #2196f3);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
}

.logo h1 {
    font-size: 1.8rem;
    background: linear-gradient(45deg, #00e5ff, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 25px;
    background: rgba(255,255,255,0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.contact-item:hover {
    background: rgba(0, 229, 118, 0.2);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    background: linear-gradient(45deg, #ffffff, #00e5ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: #b3c5d7;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    gap: 20px;
    margin-bottom: 3rem;
}

.cta-btn {
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cta-primary {
    background: linear-gradient(45deg, #00e676, #00c853);
    color: white;
    box-shadow: 0 8px 25px rgba(0, 230, 118, 0.3);
}

.cta-secondary {
    background: transparent;
    border: 2px solid #00e5ff;
    color: #00e5ff;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 230, 118, 0.4);
}

/* Service Cards */
.services {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0,229,118,0.5);
    box-shadow: 0 20px 40px rgba(0,229,118,0.3);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #00e676;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: white;
}

.service-card p {
    color: #b3c5d7;
    line-height: 1.5;
}

/* Emergency Banner */
.emergency-banner {
    background: linear-gradient(45deg, #ff1744, #d32f2f);
    padding: 1.2rem;
    text-align: center;
    margin: 2.5rem 0;
    border-radius: 15px;
    animation: emergencyGlow 2s infinite alternate;
    font-weight: bold;
}

@keyframes emergencyGlow {
    0% { box-shadow: 0 5px 20px rgba(255, 23, 68, 0.3); }
    100% { box-shadow: 0 5px 30px rgba(255, 23, 68, 0.6); }
}

/* Main Content Sections */
.section {
    margin-bottom: 4rem;
    padding: 3rem 2rem;
    border-radius: 20px;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
    background: linear-gradient(45deg, #ffffff, #00e5ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    letter-spacing: 1px;
}

/* Support Options */
.support-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.support-card {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.support-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0,229,118,0.5);
    box-shadow: 0 20px 40px rgba(0,229,118,0.3);
}

.support-card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #00e676;
}

.support-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: white;
}

.support-card p {
    color: #b3c5d7;
    margin-bottom: 1.5rem;
}

.support-card .btn {
    background: linear-gradient(45deg, #2196f3, #1976d2);
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.support-card .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(33, 150, 243, 0.4);
}

/* Footer */
footer {
    background: rgba(0,0,0,0.3);
    backdrop-filter: blur(10px);
    padding: 3rem 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    color: #b3c5d7;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 1rem;
        padding: 0 1rem;
    }

    .quick-contact {
        flex-direction: column;
        gap: 10px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 0 1rem;
    }

    .hero-text h2 {
        font-size: 2.5rem;
    }

    .services {
        grid-template-columns: 1fr;
    }

    .support-float {
        bottom: 20px;
        right: 20px;
    }

    .main-content {
        padding: 2rem 1rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.service-card {
    animation: fadeInUp 0.6s ease forwards;
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
