:root {
    /* Premium Light/Clean Theme */
    --bg-color: #f8fafc;
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --accent-color: #f59e0b;      /* Solar Orange */
    --accent-glow: rgba(245, 158, 11, 0.15);
    --card-bg: rgba(255, 255, 255, 0.9);
    --card-border: rgba(0, 0, 0, 0.05);
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 10px 10px -5px rgba(0, 0, 0, 0.02);
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-primary);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow-x: hidden;
    line-height: 1.6;
    background-image: 
        radial-gradient(at 0% 0%, hsla(38, 100%, 74%, 0.2) 0px, transparent 50%),
        radial-gradient(at 100% 100%, hsla(200, 100%, 85%, 0.3) 0px, transparent 50%);
    background-attachment: fixed;
}

.container {
    width: 100%;
    max-width: 1200px;
    padding: 2rem;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.header {
    margin-bottom: 2rem;
    animation: fadeInDown 1s ease-out;
}

/* Logo styling adapted for light background */
.logo {
    max-height: 120px;
    width: auto;
    object-fit: contain;
    /* Clean presentation, assuming logo looks good on light bg */
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.02);
}

.main-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    animation: fadeInUp 1s ease-out 0.2s backwards;
}

.badge {
    background: rgba(245, 158, 11, 0.1);
    color: var(--accent-color);
    padding: 0.5rem 1.25rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(245, 158, 11, 0.2);
}

.title {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    color: #1e293b;
}

.highlight {
    color: var(--accent-color);
    position: relative;
    display: inline-block;
}

.description {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-secondary);
    max-width: 700px;
    margin-bottom: 3rem;
}

/* Premium Contact Card */
.contact-card {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--card-border);
    border-radius: 1.5rem;
    padding: 2.5rem;
    width: 100%;
    max-width: 800px;
    box-shadow: var(--shadow-lg);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: fadeInUp 1s ease-out 0.4s backwards;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
}

.contact-card h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #1e293b;
}

.contact-info {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 2rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    text-align: left;
    padding: 1.5rem;
    border-radius: 1rem;
    background: rgba(248, 250, 252, 0.8);
    border: 1px solid rgba(0,0,0,0.03);
    transition: all 0.3s ease;
    flex: 1;
}

.info-item:hover {
    background: #ffffff;
    box-shadow: var(--shadow-sm);
    transform: translateY(-2px);
}

.icon-wrapper {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.15) 0%, rgba(245, 158, 11, 0.05) 100%);
    color: var(--accent-color);
    padding: 1rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(245, 158, 11, 0.1);
}

.info-text {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.value {
    font-size: 1rem;
    color: var(--text-primary);
    font-weight: 500;
    line-height: 1.5;
}

.footer {
    margin-top: 4rem;
    color: var(--text-secondary);
    font-size: 0.875rem;
    animation: fadeIn 1s ease-out 0.6s backwards;
}

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

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

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

/* ==========================================
   Responsive Breakpoints for All Devices
   ========================================== */

/* Big Desktop (> 1440px) */
@media (min-width: 1440px) {
    .container {
        max-width: 1400px;
    }
    .title {
        font-size: 4.5rem;
    }
    .contact-card {
        max-width: 900px;
        padding: 3.5rem;
    }
    .info-item {
        padding: 2rem;
    }
    .logo {
        max-height: 140px;
    }
}

/* Tablet Landscape & Small Desktop (max-width: 1024px) */
@media (max-width: 1024px) {
    .contact-info {
        flex-direction: column;
        gap: 1.5rem;
    }
    .info-item {
        width: 100%;
        padding: 1.25rem;
    }
    .logo {
        max-height: 100px;
    }
}

/* Tablet Portrait & Mobile Large (max-width: 768px) */
@media (max-width: 768px) {
    .container {
        padding: 1.5rem;
    }
    .header {
        margin-bottom: 2rem;
    }
    .title {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    .description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    .contact-card {
        padding: 1.5rem;
    }
    .contact-card h2 {
        font-size: 1.25rem;
        margin-bottom: 1.5rem;
    }
    .info-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1rem;
    }
    .icon-wrapper {
        padding: 0.75rem;
    }
    .value {
        font-size: 0.95rem;
    }
}

/* Mobile Small (max-width: 480px) */
@media (max-width: 480px) {
    .container {
        padding: 1rem;
    }
    .title {
        font-size: 2rem;
    }
    .logo {
        max-height: 80px;
    }
    .contact-card {
        padding: 1.25rem;
        border-radius: 1rem;
    }
    .info-item {
        padding: 1rem;
    }
    .badge {
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
    }
}
