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

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* Modal Overlay */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    animation: fadeIn 0.5s ease-out;
}

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

.modal-content {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    max-width: 500px;
    margin: 0 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    animation: slideUpModal 0.5s ease-out;
    border: 3px solid;
    border-image: linear-gradient(45deg, #ff0040, #ff0080, #8000ff, #0080ff, #00ff80) 1;
    position: relative;
}

.modal-content::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(45deg, #ff0040, #ff0080, #8000ff, #0080ff, #00ff80, #ffff00);
    background-size: 300% 300%;
    animation: rgbGradientBorder 4s ease infinite;
    border-radius: 20px;
    z-index: -1;
}

@keyframes rgbGradientBorder {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes slideUpModal {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.modal-content h2 {
    background: linear-gradient(45deg, #ff0040, #ff0080, #8000ff, #0080ff, #00ff80);
    background-size: 200% 200%;
    animation: rgbGradientText 4s ease infinite;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: bold;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.modal-content p {
    color: #333;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.modal-subtext {
    color: #666 !important;
    font-size: 1rem !important;
}

.modal-phone {
    margin: 2rem 0;
}

.modal-phone a {
    display: inline-block;
    background: linear-gradient(45deg, #ff0040, #ff0080, #8000ff, #0080ff, #00ff80);
    background-size: 300% 300%;
    animation: rgbGradientButton 4s ease infinite;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255,0,100,0.4);
    border: 2px solid rgba(255,255,255,0.3);
}

.modal-phone a:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255,0,100,0.6);
    border: 2px solid rgba(255,255,255,0.8);
}

.modal-button {
    background: linear-gradient(45deg, #ffd93d, #ffab00);
    color: #333;
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.modal-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255,171,0,0.3);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.phone-highlight {
    background: linear-gradient(45deg, #e53e3e, #c53030);
    color: white;
    padding: 5px 15px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    margin: 0 10px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.3);
}

.phone-highlight:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 5px 15px rgba(229,62,62,0.4);
    border: 1px solid rgba(255,255,255,0.6);
}

/* Header */
header {
    background: #2d3748;
    color: white;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.2);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 2rem;
    font-weight: bold;
    color: white;
    filter: drop-shadow(0 0 8px rgba(255,255,255,0.3));
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 25px;
}

.nav-links a:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255,255,255,0.1);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #4a5568 0%, #2d3748 50%, #1a202c 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    animation: float 20s infinite linear;
}

@keyframes float {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    animation: slideUp 1s ease-out;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    animation: slideUp 1s ease-out 0.2s both;
}

.cta-button {
    display: inline-block;
    background: #e53e3e;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    animation: slideUp 1s ease-out 0.4s both;
    box-shadow: 0 10px 30px rgba(229,62,62,0.4);
    border: 2px solid rgba(255,255,255,0.2);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(229,62,62,0.6);
    border: 2px solid rgba(255,255,255,0.4);
    background: #c53030;
}

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

/* Location Section */
.location {
    padding: 80px 0;
    background: white;
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.location-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #333;
}

.location-text p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #666;
}

.highlight {
    background: linear-gradient(45deg, #ff0040, #ff0080, #8000ff, #0080ff, #00ff80, #ffff00);
    background-size: 300% 300%;
    animation: rgbGradientText 6s ease infinite;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: bold;
    filter: drop-shadow(0 1px 2px rgba(0,0,0,0.3));
}

.location-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2rem;
}

.stat {
    text-align: center;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
}

.stat-number {
    font-size: 2rem;
    font-weight: bold;
    background: linear-gradient(45deg, #ff0040, #ff0080, #8000ff, #0080ff, #00ff80);
    background-size: 200% 200%;
    animation: rgbGradientText 4s ease infinite;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.location-visual {
    background: linear-gradient(135deg, #4299e1 0%, #3182ce 50%, #2c5282 100%);
    border-radius: 15px;
    padding: 2rem;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.location-visual h3,
.location-visual p {
    position: relative;
    z-index: 2;
}

.led-screen {
    position: relative;
    z-index: 2;
    background: #000;
    border-radius: 10px;
    padding: 2rem;
    margin: 1rem 0;
    border: 3px solid #333;
}

.map-container {
    margin-bottom: 2rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    border: 3px solid rgba(255,255,255,0.2);
}

.map-container iframe {
    display: block;
    width: 100%;
}

.led-pixels {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    gap: 2px;
    margin-bottom: 1rem;
}

.pixel {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    animation: pulse-led 2s infinite;
}

.pixel:nth-child(odd) {
    background: #e53e3e;
}

.pixel:nth-child(even) {
    background: #ffd93d;
}

@keyframes pulse-led {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: linear-gradient(135deg, #e53e3e 0%, #c53030 50%, #a02828 100%);
    color: white;
    text-align: center;
}

.contact h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255,255,255,0.1);
    padding: 1rem 2rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-3px);
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: #4299e1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.contact-item:hover .contact-icon {
    background: #3182ce;
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(0,0,0,0.3);
}

/* Footer */
footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 2rem 0;
}

/* Additional animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .location-content {
        grid-template-columns: 1fr;
    }

    .contact-info {
        flex-direction: column;
        align-items: center;
    }

    .led-pixels {
        grid-template-columns: repeat(5, 1fr);
    }

    .modal-content {
        padding: 2rem;
        margin: 0 10px;
    }

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

    .modal-icon {
        font-size: 3rem;
    }

    .map-container iframe {
        height: 250px;
    }
}
/* Email Contact Styles - Add these to your existing styles.css */

/* Modal Email Section */
.modal-email {
    margin: 2rem 0;
}

.modal-email a {
    display: inline-block;
    background: linear-gradient(45deg, #ff0040, #ff0080, #8000ff, #0080ff, #00ff80);
    background-size: 300% 300%;
    animation: rgbGradientButton 4s ease infinite;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255,0,100,0.4);
    border: 2px solid rgba(255,255,255,0.3);
}

.modal-email a:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255,0,100,0.6);
    border: 2px solid rgba(255,255,255,0.8);
}

/* Main Contact Section - Email Item */
.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

/* Ensure all contact items have consistent styling */
.contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 15px;
    transition: all 0.3s ease;
    text-align: center;
}

.contact-item:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-3px);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.contact-item:hover .contact-icon {
    background: rgba(255,255,255,0.3);
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(0,0,0,0.3);
}

/* Email links styling */
.contact-item a[href^="mailto:"] {
    color: white;
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: bold;
    transition: all 0.3s ease;
}

.contact-item a[href^="mailto:"]:hover {
    transform: scale(1.05);
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

/* Phone links styling for consistency */
.contact-item a[href^="tel:"] {
    color: white;
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: bold;
    transition: all 0.3s ease;
}

.contact-item a[href^="tel:"]:hover {
    transform: scale(1.05);
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

/* RGB Gradient Animation for Modal Email Button */
@keyframes rgbGradientButton {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Responsive adjustments for email contact */
@media (max-width: 768px) {
    .contact-info {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .modal-email a {
        font-size: 1.1rem;
        padding: 12px 25px;
    }
    
    .contact-item {
        padding: 1.5rem;
    }
    
    .contact-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}