/* ==========================================================================
   MegaGen EA Coming Soon Page Stylesheet
   ========================================================================== */

/* --- Custom Properties (Theme Variables) --- */
:root {
    --bg-primary: #081B33;
    --bg-darker: #040F1C;
    --bg-light: #F7FAFC;
    
    --gold: #FDB913;
    --gold-gradient: linear-gradient(135deg, #FFE259 0%, #FFA751 100%);
    --gold-hover: #E5A50E;
    --navy-highlight: #0D2B52;
    
    --text-white: #FFFFFF;
    --text-navy: #081B33;
    --text-muted: #A0AEC0;
    --text-light: #718096;
    
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-glow: rgba(253, 185, 19, 0.15);
    
    --card-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    --card-shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.15);
    
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Montserrat', sans-serif;
    
    --transition-smooth: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    background-color: var(--bg-primary);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-secondary);
    font-weight: 700;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-smooth);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* --- Utility Classes --- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.highlight {
    color: var(--gold);
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.highlight-navy {
    color: var(--bg-primary);
}

.link-hover:hover {
    color: var(--gold);
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 8px;
    font-family: var(--font-secondary);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--text-white);
}

.btn-outline:hover {
    background: var(--gold-gradient);
    border-color: transparent;
    color: var(--text-navy);
    box-shadow: 0 8px 20px rgba(253, 185, 19, 0.3);
    transform: translateY(-2px);
}

.btn-submit {
    width: 100%;
    background: var(--gold-gradient);
    color: var(--text-navy);
    border: none;
    box-shadow: 0 5px 15px rgba(253, 185, 19, 0.2);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(253, 185, 19, 0.45);
}

/* --- Preloader --- */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-darker);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader-content {
    text-align: center;
}

.preloader-logo {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    animation: pulseLogo 2s infinite ease-in-out;
}

.preloader-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(253, 185, 19, 0.1);
    border-top: 3px solid var(--gold);
    border-radius: 50%;
    margin: 0 auto;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes pulseLogo {
    0%, 100% { transform: scale(0.9); opacity: 0.6; }
    50% { transform: scale(1.1); opacity: 1; filter: drop-shadow(0 0 15px var(--gold)); }
}

/* --- Header Section --- */
.main-header {
    padding: 24px 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-img {
    width: 45px;
    height: 45px;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-family: var(--font-secondary);
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 1.2;
}

.logo-subtitle {
    font-size: 0.65rem;
    color: var(--text-muted);
    letter-spacing: 1.5px;
}

.social-links-header {
    display: flex;
    align-items: center;
    gap: 15px;
}

.follow-text {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-family: var(--font-secondary);
    font-weight: 500;
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icons a {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
}

.social-icons a:hover {
    background-color: var(--gold);
    color: var(--text-navy);
    border-color: transparent;
    transform: translateY(-3px);
}

/* --- Hero Section --- */
.hero-section {
    min-height: 100vh;
    padding-top: 130px;
    padding-bottom: 80px;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 10;
}

.hero-info {
    display: flex;
    flex-direction: column;
}

.hero-tagline {
    font-family: var(--font-secondary);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    color: var(--gold);
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.hero-title {
    font-size: clamp(2.2rem, 4.5vw, 3.8rem);
    line-height: 1.15;
    margin-bottom: 20px;
}

.hero-description {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 540px;
    margin-bottom: 35px;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

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

.feature-icon-wrapper {
    width: 45px;
    height: 45px;
    border-radius: 10px;
    background-color: rgba(253, 185, 19, 0.08);
    border: 1px solid rgba(253, 185, 19, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.feature-label {
    font-size: 0.9rem;
    font-family: var(--font-secondary);
    font-weight: 500;
    color: var(--text-white);
}

/* Countdown Timer */
.countdown-container {
    margin-bottom: 35px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 20px 25px;
    max-width: 500px;
}

.countdown-title {
    font-family: var(--font-secondary);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    display: block;
    margin-bottom: 15px;
}

.countdown-timer {
    display: flex;
    gap: 15px;
}

.timer-box {
    flex: 1;
    background: rgba(4, 15, 28, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 12px;
    text-align: center;
}

.timer-number {
    display: block;
    font-family: var(--font-secondary);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 2px;
}

.timer-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
}

.hero-cta {
    margin-top: 10px;
}

/* Hero Right Image Frame */
.hero-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, var(--glass-glow) 0%, transparent 70%);
    filter: blur(40px);
    z-index: 1;
    pointer-events: none;
}

.hero-image-frame {
    width: 100%;
    height: 520px;
    border-radius: 200px 30px 200px 30px;
    overflow: hidden;
    position: relative;
    z-index: 2;
    border-left: 6px solid var(--gold);
    border-right: 6px solid var(--gold);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.hero-img-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.05);
    transition: transform 6s ease;
}

.hero-image-frame:hover .hero-img-bg {
    transform: scale(1.15);
}

/* Background World Map Overlay */
.hero-map-overlay {
    position: absolute;
    top: 5%;
    right: 0;
    width: 80%;
    height: 90%;
    opacity: 0.05;
    z-index: 1;
    pointer-events: none;
}

.map-svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* --- About Section --- */
.about-section {
    background-color: var(--bg-light);
    color: var(--text-navy);
    padding: 100px 0;
    position: relative;
}

.about-container {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: center;
}

.about-text {
    display: flex;
    flex-direction: column;
}

.section-tagline {
    font-family: var(--font-secondary);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    color: var(--gold-hover);
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    line-height: 1.2;
    margin-bottom: 25px;
    color: var(--bg-primary);
}

.section-desc {
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 20px;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.about-card {
    background: var(--text-white);
    border-radius: 12px;
    padding: 30px;
    box-shadow: var(--card-shadow);
    transition: var(--transition-smooth);
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--card-shadow-hover);
}

.card-icon {
    font-size: 1.8rem;
    color: var(--bg-primary);
    margin-bottom: 20px;
}

.card-title {
    font-size: 1.15rem;
    margin-bottom: 10px;
    font-family: var(--font-secondary);
    font-weight: 700;
    color: var(--bg-primary);
}

.card-text {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.5;
}

/* --- Contact & Enquiry Section --- */
.contact-section {
    padding: 100px 0;
    background-color: var(--bg-primary);
    position: relative;
}

.contact-card-wrapper {
    background-color: var(--bg-darker);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.contact-info-pane {
    padding: 60px 40px;
    background: linear-gradient(180deg, rgba(8, 27, 51, 0.8) 0%, rgba(4, 15, 28, 0.9) 100%);
    border-right: 1px solid var(--glass-border);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 40px;
}

.info-tagline {
    font-family: var(--font-secondary);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
    color: var(--gold);
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
}

.info-title {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.info-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.contact-details-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.detail-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(253, 185, 19, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.detail-text {
    display: flex;
    flex-direction: column;
}

.detail-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 3px;
}

.detail-value {
    font-size: 0.95rem;
    color: var(--text-white);
    line-height: 1.5;
}

/* Contact Form Pane */
.contact-form-pane {
    padding: 60px;
    background-color: rgba(4, 15, 28, 0.4);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    position: relative;
    margin-bottom: 24px;
}

.form-row .form-group {
    margin-bottom: 0;
}

.msg-group {
    margin-bottom: 30px;
}

.form-group label {
    font-family: var(--font-secondary);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 8px;
}

.form-control {
    background-color: rgba(8, 27, 51, 0.6);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    padding: 14px 18px;
    color: var(--text-white);
    font-family: var(--font-primary);
    font-size: 0.95rem;
    transition: var(--transition-smooth);
    width: 100%;
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.2);
}

.form-control:focus {
    outline: none;
    border-color: var(--gold);
    background-color: rgba(8, 27, 51, 0.9);
    box-shadow: 0 0 15px rgba(253, 185, 19, 0.1);
}

.select-control {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg fill='white' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px;
}

.select-control option {
    background-color: var(--bg-darker);
    color: var(--text-white);
}

textarea.form-control {
    resize: none;
}

/* Form Validation Errors */
.error-msg {
    position: absolute;
    bottom: -18px;
    left: 0;
    font-size: 0.72rem;
    color: #ff4a4a;
    display: none;
}

.form-control.invalid {
    border-color: #ff4a4a;
    box-shadow: 0 0 10px rgba(255, 74, 74, 0.15);
}

.form-status {
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 25px;
    font-size: 0.9rem;
    display: none;
    animation: fadeIn 0.4s ease forwards;
}

.form-status.success {
    background-color: rgba(46, 204, 113, 0.15);
    border: 1px solid rgba(46, 204, 113, 0.3);
    color: #2ecc71;
    display: block;
}

.form-status.error {
    background-color: rgba(231, 76, 60, 0.15);
    border: 1px solid rgba(231, 76, 60, 0.3);
    color: #e74c3c;
    display: block;
}

/* --- Footer --- */
.main-footer {
    background-color: var(--bg-darker);
    border-top: 1px solid var(--glass-border);
    padding: 80px 0 0;
    position: relative;
    overflow: hidden;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
    position: relative;
    z-index: 10;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo .logo-title {
    font-size: 1.15rem;
}

.footer-about {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.7;
    max-width: 320px;
}

.footer-title {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-white);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--gold);
}

.links-list li {
    margin-bottom: 12px;
}

.links-list a {
    color: var(--text-muted);
    font-size: 0.88rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.links-list a i {
    font-size: 0.7rem;
    transition: var(--transition-smooth);
}

.links-list a:hover {
    color: var(--gold);
}

.links-list a:hover i {
    transform: translateX(4px);
}

.footer-socials {
    margin-bottom: 25px;
}

.footer-email-box {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-email-box i {
    color: var(--gold);
    font-size: 1rem;
}

/* Footer Map Column */
.footer-map {
    display: flex;
    justify-content: flex-end;
}

.mini-map-wrapper {
    width: 100%;
    max-width: 280px;
    height: 160px;
    position: relative;
    opacity: 0.35;
    transition: opacity var(--transition-smooth);
}

.mini-map-wrapper:hover {
    opacity: 0.65;
}

.footer-map-svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.hub-dot {
    position: absolute;
    width: 6px;
    height: 6px;
    background-color: var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--gold), 0 0 20px var(--gold);
    animation: beacon 2s infinite ease-in-out;
}

/* Map Hub Coordinates */
.hub-dot.dubai { top: 52%; left: 60%; }
.hub-dot.london { top: 38%; left: 47%; }
.hub-dot.newyork { top: 41%; left: 28%; }
.hub-dot.singapore { top: 61%; left: 75%; }

@keyframes beacon {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.8); opacity: 1; }
}

.footer-bottom {
    border-top: 1px solid var(--glass-border);
    padding: 30px 0;
}

.footer-bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright {
    color: var(--text-light);
    font-size: 0.8rem;
}

.policy-links {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--text-light);
    font-size: 0.8rem;
}

.separator {
    opacity: 0.3;
}

/* --- Floating WhatsApp Widget --- */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.whatsapp-icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #25d366;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-size: 2.2rem;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    transition: var(--transition-smooth);
    animation: whatsappPulse 2s infinite;
}

.whatsapp-tooltip {
    background-color: var(--text-white);
    color: var(--text-navy);
    padding: 10px 18px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
    margin-right: 15px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(15px);
    transition: var(--transition-smooth);
    white-space: nowrap;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.whatsapp-float:hover .whatsapp-icon-circle {
    transform: scale(1.08) rotate(8deg);
    background-color: #20ba59;
}

@keyframes whatsappPulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* --- Scroll Reveal Animations --- */
.scroll-reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 1s cubic-bezier(0.165, 0.84, 0.44, 1), transform 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.scroll-reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 1s cubic-bezier(0.165, 0.84, 0.44, 1), transform 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.scroll-reveal-up {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s cubic-bezier(0.165, 0.84, 0.44, 1), transform 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.scroll-reveal-active {
    opacity: 1;
    transform: translate(0);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- Responsive Media Queries --- */

/* Tablet & Smaller Desktops */
@media (max-width: 1024px) {
    .container {
        padding: 0 32px;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .hero-info {
        align-items: center;
    }
    
    .hero-features {
        max-width: 600px;
        margin: 0 auto 40px;
    }
    
    .countdown-container {
        max-width: 500px;
        margin: 0 auto 35px;
    }
    
    .hero-image-wrapper {
        min-height: 400px;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .hero-image-frame {
        height: 440px;
    }
    
    .about-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .about-text {
        text-align: center;
    }
    
    .about-grid {
        max-width: 800px;
        margin: 0 auto;
    }
    
    .contact-card-wrapper {
        grid-template-columns: 1fr;
    }
    
    .contact-info-pane {
        border-right: none;
        border-bottom: 1px solid var(--glass-border);
        padding: 50px;
    }
    
    .contact-form-pane {
        padding: 50px;
    }
    
    .footer-grid {
        grid-template-columns: 1.2fr 0.8fr 1fr;
        gap: 30px;
    }
    
    .footer-map {
        grid-column: span 3;
        justify-content: center;
        margin-top: 20px;
    }
    
    .mini-map-wrapper {
        max-width: 360px;
        height: 180px;
    }
}

/* Mobile Viewports */
@media (max-width: 768px) {
    html {
        font-size: 15px;
    }
    
    .container {
        padding: 0 20px;
    }
    
    .main-header {
        padding: 15px 0;
    }
    
    .social-links-header {
        display: none; /* Hide header social icons on small screens to save space */
    }
    
    .hero-section {
        padding-top: 100px;
        padding-bottom: 60px;
    }
    
    .hero-features {
        grid-template-columns: 1fr;
        gap: 15px;
        align-items: flex-start;
        text-align: left;
    }
    
    .timer-box {
        padding: 8px;
    }
    
    .timer-number {
        font-size: 1.5rem;
    }
    
    .hero-image-frame {
        height: 320px;
        border-radius: 100px 20px 100px 20px;
    }
    
    .about-section {
        padding: 60px 0;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .about-card {
        padding: 24px;
    }
    
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-info-pane {
        padding: 30px 20px;
    }
    
    .contact-form-pane {
        padding: 30px 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 0;
    }
    
    .form-group {
        margin-bottom: 20px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .footer-brand {
        align-items: center;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .footer-about {
        max-width: 100%;
    }
    
    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .links-list a {
        justify-content: center;
    }
    
    .footer-socials {
        justify-content: center;
    }
    
    .footer-email-box {
        justify-content: center;
    }
    
    .footer-map {
        grid-column: span 1;
    }
    
    .footer-bottom-container {
        flex-direction: column-reverse;
        text-align: center;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-icon-circle {
        width: 50px;
        height: 50px;
        font-size: 1.8rem;
    }
    
    .whatsapp-tooltip {
        display: none; /* Hide hover tooltip on mobile touchscreens */
    }
}
