:root {
    --brand-color: #d3707c;
    --brand-glow: rgba(211, 112, 124, 0.4);
    --bg-dark: #0f0a0b;
    /* Very dark shade related to #d3707c */
    --card-bg: rgba(255, 255, 255, 0.03);
    --text-main: #f9f9f9;
    --text-muted: #a0a0a0;
}

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

body {
    font-family: 'Noto Sans', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    min-height: 100vh;
    overflow-x: hidden;
    overflow-y: auto;
    position: relative;
}

.background-wrapper {
    position: fixed;
    inset: 0;
    overflow: hidden;
    z-index: -2;
}

/* Background Animations */
.ambient-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    z-index: -2;
    animation: float 10s ease-in-out infinite alternate;
}

.glow-1 {
    width: 60vw;
    height: 60vw;
    max-width: 800px;
    max-height: 800px;
    background: radial-gradient(circle, var(--brand-glow) 0%, transparent 60%);
    top: -20%;
    left: -10%;
    opacity: 0.5;
}

.glow-2 {
    width: 50vw;
    height: 50vw;
    max-width: 600px;
    max-height: 600px;
    background: radial-gradient(circle, rgba(211, 112, 124, 0.2) 0%, transparent 70%);
    bottom: -10%;
    right: -10%;
    animation-delay: -5s;
}

.grid-overlay {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: -1;
    mask-image: linear-gradient(to bottom, transparent, black, transparent);
    -webkit-mask-image: linear-gradient(to bottom, transparent, black, transparent);
}

@keyframes float {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(50px, 30px) scale(1.1);
    }
}

/* Main Container */
.container {
    width: 100%;
    max-width: 1200px;
    padding: 20px;
    min-height: 100vh;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    z-index: 1;
}

/* Logo Section */
.logo-container {
    /* margin-bottom: 30px; */
    animation: fadeInDown 1s ease-out;
}

.brand-logo {
    max-width: 400px;
    max-height: 25vh;
    object-fit: contain;
    height: auto;
    filter: drop-shadow(0 10px 20px var(--brand-glow));
    transition: transform 0.4s ease, filter 0.4s ease;
}

.brand-logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 15px 30px var(--brand-color));
}

/* About Section */
.about-section {
    text-align: center;
    max-width: 924px;
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    border-left: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    padding: 20px 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-main);
    animation: fadeInUp 1s ease-out backwards;
    animation-delay: 0.1s;
}

/* Cards Wrapper */
.cards-wrapper {
    display: flex;
    gap: 20px;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
}

/* Cards */
.location-card {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    border-left: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    padding: 30px;
    width: 100%;
    max-width: 450px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    animation: fadeInUp 1s ease-out backwards;
}

.location-card:nth-child(2) {
    animation-delay: 0.2s;
}

.location-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(135deg, rgba(211, 112, 124, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 0;
}

.location-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3), 0 0 8px rgba(211, 112, 124, 0.08);
    border-color: rgba(211, 112, 124, 0.15);
}

.location-card:hover::before {
    opacity: 1;
}

.location-card>* {
    position: relative;
    z-index: 1;
    text-align: center;
}

/* Card Icon */
.card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--brand-color), #a85862);
    border-radius: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 5px 10px rgba(211, 112, 124, 0.15);
    margin-bottom: 8px;
    display: none;
}

.card-icon svg {
    color: white;
}

.location-content .title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 16px;
}

.location-content .title img {
    width: 30px;
    height: auto;
}

/* Typography */
.location-content h2 {
    font-size: 2rem;
    font-weight: 700;
    /* margin-bottom: 12px; */
    background: linear-gradient(to right, #ffffff, #dedede);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.location-content p {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.6;
    font-weight: 300;
}

.location-card p.timeings {
    margin-top: 10px;
}

/* Buttons */
.card-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: auto;
    padding-top: 20px;
}

.btn {
    text-decoration: none;
    padding: 14px 24px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    flex: 1;
    min-width: 150px;
}

.primary-btn {
    background: var(--brand-color);
    color: white;
    box-shadow: 0 2px 8px rgba(211, 112, 124, 0.2);
}

.primary-btn:hover {
    background: #e3828e;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(211, 112, 124, 0.3);
}

.secondary-btn {
    background: transparent;
    color: var(--text-main);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.secondary-btn:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-3px);
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

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

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

/* Responsive */
@media (max-width: 768px) {
    .cards-wrapper {
        flex-direction: column;
        align-items: center;
    }

    .location-card {
        max-width: 100%;
    }

    .brand-logo {
        max-width: 200px;
    }

    .location-content h2 {
        font-size: 1.5rem;
    }
}