:root {
    --primary-green: #1B4332;
    --secondary-green: #2D6A4F;
    --accent-green: #40916C;
    --soft-cream: #F8F9FA;
    --white-translucent: rgba(255, 255, 255, 0.15);
    --glass-border: rgba(255, 255, 255, 0.2);
    --text-main: #343a40;
    --text-white: #ffffff;
    --font-poppins: 'Poppins', sans-serif;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-poppins);
    background-color: var(--primary-green);
    color: var(--text-white);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    position: relative;
}

/* Ambient Background */
.ambient-blobs {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.blob {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
    animation: floating 20s infinite alternate;
}

.blob-1 {
    background: var(--secondary-green);
    top: -100px;
    right: -100px;
}

.blob-2 {
    background: var(--accent-green);
    bottom: -150px;
    left: -100px;
    animation-delay: -5s;
}

.blob-3 {
    background: #081c15;
    top: 30%;
    left: 40%;
    width: 300px;
    height: 300px;
    animation-delay: -10s;
}

@keyframes floating {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(30px, 40px) scale(1.1);
    }
}

/* Header */
.header {
    padding: 2rem;
    display: flex;
    justify-content: center;
    z-index: 10;
}

.logo {
    height: 400px;
    width: auto;
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.2));
}

/* Main Content */
.main-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    z-index: 10;
}

.glass-container {
    background: var(--white-translucent);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 4rem 3rem;
    max-width: 650px;
    text-align: center;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out;
    transition: var(--transition);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.badge {
    background: var(--accent-green);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 2rem;
}

h1 {
    font-size: 3.5rem;
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.line-1,
.line-2 {
    display: block;
}

.content-body {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    align-items: center;
}

.brand-desc {
    font-size: 1.2rem;
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 3rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    color: var(--soft-cream);
    opacity: 0.9;
}

.franchise-info {
    margin-bottom: 3.5rem;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.franchise-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--accent-green), transparent);
}

.franchise-info h2 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #95d5b2;
    text-transform: uppercase;
    letter-spacing: 3px;
    position: relative;
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

.contact-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
    min-width: 240px;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent-green);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Adaptive Layout Refinement */
@media (min-width: 850px) {
    .glass-container {
        max-width: 950px;
    }

    .contact-list {
        flex-direction: row;
        gap: 2rem;
        justify-content: center;
    }

    .contact-item {
        flex: 1;
    }
}

.contact-item .name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--soft-cream);
    letter-spacing: 0.5px;
}

.contact-item .phone {
    font-size: 1rem;
    color: #95d5b2;
    text-decoration: none;
    font-weight: 500;
    opacity: 0.9;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.contact-item .phone::before {
    content: '📱';
    font-size: 0.9rem;
}

.contact-item .phone:hover {
    color: white;
    opacity: 1;
}

p {
    font-size: 1.1rem;
    font-weight: 300;
    opacity: 0.9;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

/* Countdown */
.countdown {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.countdown-item {
    display: flex;
    flex-direction: column;
}

.countdown-item span {
    font-size: 2.5rem;
    font-weight: 600;
}

.countdown-item label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.7;
}

/* Footer */
.footer {
    padding: 2rem;
    text-align: center;
    z-index: 10;
}

.social-links {
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.social-links a {
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    opacity: 0.7;
    transition: var(--transition);
}

.social-links a:hover {
    opacity: 1;
    transform: translateY(-2px);
}

.copyright {
    font-size: 0.8rem;
    opacity: 0.5;
}

/* Responsive */
@media (max-width: 600px) {
    h1 {
        font-size: 2.5rem;
    }

    .glass-container {
        padding: 3rem 1.5rem;
    }

    .countdown {
        gap: 1rem;
    }

    .countdown-item span {
        font-size: 1.8rem;
    }

    .logo {
        height: 250px;
    }
}