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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #2C2C2C;
    background: linear-gradient(135deg, #FFF8E7 0%, #FFE8D1 50%, #FFDAB9 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    position: relative;
    overflow-x: hidden;
}

.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(117, 30, 79, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(164, 116, 40, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.container {
    max-width: 900px;
    width: 100%;
    position: relative;
    z-index: 1;
}

/* Logo Section */
.logo-section {
    text-align: center;
    margin-bottom: 70px;
    animation: fadeInDown 0.8s ease-out;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
}

.logo-img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 20px 60px rgba(117, 30, 79, 0.2);
    border: 6px solid #FFFFFF;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.logo-img:hover {
    transform: scale(1.05);
    box-shadow: 0 25px 70px rgba(117, 30, 79, 0.3);
}

.brand-name {
    font-size: 64px;
    font-weight: 900;
    color: #751E4F;
    margin-bottom: 12px;
    line-height: 1.2;
    letter-spacing: -1px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.subtitle {
    font-size: 20px;
    color: #666;
    font-weight: 500;
    font-style: italic;
    opacity: 0.9;
}

/* Branch Selection */
.branch-selection {
    text-align: center;
    margin-bottom: 60px;
    animation: fadeIn 1s ease-out 0.3s both;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.section-title {
    font-size: 44px;
    font-weight: 800;
    color: #2C2C2C;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.instruction {
    font-size: 18px;
    color: #666;
    margin-bottom: 45px;
    font-weight: 400;
}

/* Branch Cards - Premium Design */
.branch-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 60px;
}

.branch-card {
    background: #FFFFFF;
    border-radius: 24px;
    padding: 45px 35px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(117, 30, 79, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(117, 30, 79, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.branch-card:hover .card-glow {
    opacity: 1;
}

.branch-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 60px rgba(117, 30, 79, 0.2);
    border-color: rgba(117, 30, 79, 0.3);
}

.branch-card h2 {
    font-size: 32px;
    font-weight: 800;
    color: #751E4F;
    margin-bottom: 18px;
    text-align: center;
    letter-spacing: -0.5px;
    transition: color 0.3s ease;
}

.branch-card:hover h2 {
    color: #6F4E37;
}

.branch-info {
    font-size: 16px;
    color: #666;
    margin-bottom: 28px;
    text-align: center;
    font-weight: 500;
    line-height: 1.5;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #751E4F 0%, #6F4E37 100%);
    color: white;
    padding: 16px 38px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 17px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(117, 30, 79, 0.3);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.branch-card:hover .btn::before {
    left: 100%;
}

.branch-card:hover .btn {
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(117, 30, 79, 0.4);
}

.btn svg {
    transition: transform 0.3s ease;
}

.branch-card:hover .btn svg {
    transform: translateX(4px);
}

/* Features - Simple Text */
.features {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.feature {
    display: flex;
    align-items: center;
    gap: 6px;
}

.veg-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.feature span {
    font-size: 15px;
    font-weight: 600;
    color: #2C2C2C;
}

/* Footer */
.footer {
    text-align: center;
    padding-top: 30px;
    border-top: 2px solid rgba(117, 30, 79, 0.1);
}

.footer .fssai {
    font-size: 13px;
    margin-bottom: 10px;
    color: #666;
    font-weight: 500;
}

.copyright {
    font-size: 13px;
    color: #999;
    font-weight: 400;
}

/* Tablet Responsive */
@media (max-width: 768px) {
    body {
        padding: 30px 20px;
    }

    .logo-img {
        width: 140px;
        height: 140px;
    }
    
    .brand-name {
        font-size: 44px;
    }
    
    .subtitle {
        font-size: 17px;
    }

    .section-title {
        font-size: 34px;
    }
    
    .instruction {
        font-size: 16px;
    }
    
    .branch-cards {
        gap: 20px;
    }
    
    .branch-card {
        padding: 35px 25px;
    }
    
    .branch-card h2 {
        font-size: 26px;
    }
    
    .branch-info {
        font-size: 14px;
    }
    
    .btn {
        padding: 14px 32px;
        font-size: 15px;
    }

    .features {
        gap: 20px;
    }

    .feature span {
        font-size: 14px;
    }
}

/* Mobile Responsive */
@media (max-width: 480px) {
    body {
        padding: 25px 15px;
    }
    
    .logo-section {
        margin-bottom: 50px;
    }

    .logo-container {
        margin-bottom: 20px;
    }
    
    .logo-img {
        width: 110px;
        height: 110px;
        border-width: 4px;
    }
    
    .brand-name {
        font-size: 32px;
    }

    .subtitle {
        font-size: 15px;
    }

    .section-title {
        font-size: 26px;
    }
    
    .instruction {
        font-size: 14px;
        margin-bottom: 35px;
    }
    
    .branch-cards {
        gap: 15px;
    }
    
    .branch-card {
        padding: 30px 20px;
    }
    
    .branch-card h2 {
        font-size: 22px;
        margin-bottom: 14px;
    }
    
    .branch-info {
        font-size: 13px;
        margin-bottom: 22px;
    }
    
    .btn {
        padding: 12px 28px;
        font-size: 14px;
    }

    .features {
        gap: 15px;
    }

    .veg-icon {
        width: 16px;
        height: 16px;
    }

    .feature span {
        font-size: 13px;
    }

    .footer .fssai,
    .copyright {
        font-size: 11px;
    }
}