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

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    background-color: #000000;
    color: #D4AF37;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.hero-content {
    text-align: center;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease-out forwards;
}

.brand {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 600;
    letter-spacing: 0.1em;
    color: #D4AF37;
    margin-bottom: 0.5rem;
}

.tagline {
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    font-weight: 300;
    letter-spacing: 0.1em;
    color: rgba(212, 175, 55, 0.8);
}

.sub-tagline {
    font-size: clamp(0.9rem, 2vw, 1.2rem);
    font-weight: 400;
    letter-spacing: 0.15em;
    color: rgba(212, 175, 55, 0.9);
    margin-top: 0.75rem;
    text-transform: uppercase;
}

.map-container {
    width: 100%;
    max-width: 900px;
    aspect-ratio: 1 / 1;
    opacity: 0;
    transform: scale(0.95);
    animation: fadeInScale 1.2s ease-out 0.3s forwards;
    margin-bottom: 3rem;
}

.india-map {
    width: 100%;
    height: 100%;
    display: block;
}

.ncr-highlight {
    animation: ncrFlicker 0.8s ease-in-out infinite;
}

.cta-section {
    text-align: center;
    width: 100%;
    max-width: 800px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-out 0.6s forwards;
}

.heading {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    animation: ncrFlicker 0.8s ease-in-out infinite;
}

.supporting-text {
    font-size: clamp(1rem, 2vw, 1.2rem);
    font-weight: 300;
    color: rgba(212, 175, 55, 0.7);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-out 0.8s forwards;
}

.cta-cards {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.cta-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 2rem 2.5rem;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 4px;
    text-decoration: none;
    color: #D4AF37;
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-out forwards;
    min-width: 140px;
}

.cta-card:nth-child(1) { animation-delay: 0.8s; }
.cta-card:nth-child(2) { animation-delay: 1s; }
.cta-card:nth-child(3) { animation-delay: 1.2s; }

.cta-card:hover {
    background-color: rgba(212, 175, 55, 0.1);
    border-color: #D4AF37;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.cta-icon {
    width: 2.5rem;
    height: 2.5rem;
    color: #D4AF37;
}

.cta-text {
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.contact-btn {
    display: inline-block;
    padding: 1rem 3rem;
    border: 2px solid #D4AF37;
    border-radius: 4px;
    text-decoration: none;
    color: #D4AF37;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-out 1.4s forwards;
}

.contact-btn:hover {
    background-color: #D4AF37;
    color: #000000;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.4);
}

.whatsapp-btn {
    margin-top: 2rem;
    display: inline-block;
    padding: 1rem 3rem;
    border: 2px solid #D4AF37;
    border-radius: 4px;
    text-decoration: none;
    color: #D4AF37;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-out 1s forwards;
}

.whatsapp-btn:hover {
    background-color: #D4AF37;
    color: #000000;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.4);
}

footer {
    padding: 2rem;
    text-align: center;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

footer p {
    font-size: 0.875rem;
    color: rgba(212, 175, 55, 0.5);
    letter-spacing: 0.1em;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInScale {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes ncrFlicker {
    0%, 100% { opacity: 0.6; }
    5% { opacity: 0.2; }
    10% { opacity: 1; }
    15% { opacity: 0.4; }
    20% { opacity: 0.8; }
    25% { opacity: 0.3; }
    30% { opacity: 0.9; }
    35% { opacity: 0.5; }
    40% { opacity: 0.7; }
    45% { opacity: 0.3; }
    50% { opacity: 1; }
    55% { opacity: 0.4; }
    60% { opacity: 0.8; }
    65% { opacity: 0.2; }
    70% { opacity: 0.9; }
    75% { opacity: 0.5; }
    80% { opacity: 0.7; }
    85% { opacity: 0.3; }
    90% { opacity: 0.9; }
    95% { opacity: 0.4; }
}

@media (max-width: 768px) {
    .hero {
        padding: 1.25rem;
        align-items: center;
    }
    
    .hero-content {
        margin-bottom: 1.25rem;
    }
    
    .map-container {
        max-width: 100%;
        width: 100%;
        margin-bottom: 2rem;
    }
    
    .cta-section {
        padding: 0;
    }
    
    .cta-cards {
        flex-direction: row;
        gap: 0.5rem;
    }
    
    .cta-card {
        flex: 1 1 0;
        min-width: 0;
        max-width: none;
        padding: 1.25rem 0.75rem;
    }
    
    .cta-icon {
        width: 1.75rem;
        height: 1.75rem;
    }
    
    .cta-text {
        font-size: 0.85rem;
        letter-spacing: 0.05em;
    }
    
    .contact-btn {
        width: 100%;
        max-width: 100%;
        padding: 1rem 2rem;
        font-size: 0.9rem;
    }
    
    .whatsapp-btn {
        width: 100%;
        max-width: 100%;
        padding: 1rem 2rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 0.75rem;
        align-items: center;
    }
    
    .hero-content {
        margin-bottom: 1rem;
    }
    
    .brand {
        font-size: 1.75rem;
        letter-spacing: 0.05em;
    }
    
    .tagline {
        font-size: 0.9rem;
        letter-spacing: 0.1em;
    }
    
    .map-container {
        aspect-ratio: 1 / 1;
        margin-bottom: 1.5rem;
    }
    
    .heading {
        font-size: 1.4rem;
        margin-bottom: 1.5rem;
    }
    
    .cta-cards {
        gap: 0.4rem;
    }
    
    .cta-card {
        padding: 1rem 0.5rem;
        border-radius: 3px;
    }
    
    .cta-icon {
        width: 1.5rem;
        height: 1.5rem;
    }
    
    .cta-text {
        font-size: 0.8rem;
    }
    
    .contact-btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.85rem;
    }
    
    .whatsapp-btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.85rem;
    }
    
    footer {
        padding: 1.5rem 1rem;
    }
    
    footer p {
        font-size: 0.75rem;
    }
}

@media (max-width: 360px) {
    .brand {
        font-size: 1.5rem;
    }
    
    .tagline {
        font-size: 0.8rem;
    }
    
    .cta-cards {
        gap: 0.3rem;
    }
    
    .cta-card {
        padding: 0.875rem 0.4rem;
    }
    
    .cta-icon {
        width: 1.25rem;
        height: 1.25rem;
    }
    
    .cta-text {
        font-size: 0.75rem;
    }
}

@media (max-width: 340px) {
    .hero {
        padding: 0.5rem;
        align-items: center;
    }
    
    .hero-content {
        margin-bottom: 0.75rem;
    }
    
    .map-container {
        margin-bottom: 1rem;
    }
    
    .heading {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    
    .cta-cards {
        gap: 0.25rem;
    }
    
    .cta-card {
        padding: 0.75rem 0.3rem;
        border-radius: 2px;
    }
    
    .cta-icon {
        width: 1.1rem;
        height: 1.1rem;
    }
    
    .cta-text {
        font-size: 0.7rem;
        letter-spacing: 0;
    }
    
    .contact-btn {
        padding: 0.75rem 1rem;
        font-size: 0.8rem;
    }
}
