/* Base Styles */
:root {
    --primary-color: #22c55e;
    --primary-dark: #16a34a;
    --secondary-color: #3b82f6;
    --accent-color: #1f2937;
    --dark-color: #111827;
    --light-color: #f8fafc;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 8px 24px rgba(0, 0, 0, 0.12);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--light-color);
    color: var(--dark-color);
    line-height: 1.5;
    overflow-x: hidden;
    font-size: 16px; /* Increased from 14px */
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.75rem;
    letter-spacing: -0.5px;
}

h1 { font-size: clamp(1.75rem, 4vw, 2.5rem); } /* Increased sizes */
h2 { font-size: clamp(1.5rem, 3.5vw, 2rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }
h4 { font-size: 1.25rem; } /* Increased from 1rem */

p { 
    margin-bottom: 1rem;
    font-size: 1rem; /* Increased from 0.9rem */
    color: #4b5563;
}

/* Header Styles */
.glass-header {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(34, 197, 94, 0.1);
    padding: 0.75rem 5%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.category-btn {
    padding: 0.7rem 1.3rem;
    border: 2px solid var(--primary-color);
    background: transparent;
    color: var(--primary-color);
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem; /* Increased from 0.85rem */
}

.category-btn:hover {
    background: rgba(34, 197, 94, 0.1);
}

.category-btn.active {
    background: var(--primary-color);
    color: white;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    width: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.25rem; /* Increased from 1rem */
    margin-right: 12px;
}

.brand-names h1 {
    font-size: 1.5rem; /* Increased from 1.2rem */
    margin-bottom: 0;
    color: var(--dark-color);
}

.sub-brand {
    font-size: 0.9rem; /* Increased from 0.7rem */
    color: #666;
    margin: 0;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 22px;
    height: 2px;
    background: var(--dark-color);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.holographic-nav {
    transition: all 0.3s ease;
}

.holographic-nav ul {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.holographic-nav a {
    color: var(--dark-color);
    font-weight: 500;
    font-size: 1rem; /* Increased from 0.85rem */
    position: relative;
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.holographic-nav a:hover,
.holographic-nav a.active {
    color: var(--primary-color);
    background: rgba(34, 197, 94, 0.1);
}

/* Contact Page Specific Styles */
.contact-page {
    margin-top: 70px;
}

.contact-hero {
    text-align: center;
    padding: 5rem 5% 5rem;
    color: white;
    position: relative;
    background: 
        linear-gradient(135deg, 
            rgba(34, 197, 94, 0.85) 30%, 
            rgba(59, 130, 246, 0.85) 100%),
        url('https://images.unsplash.com/photo-1467232004584-a241de8bcf5d?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') no-repeat center center/cover;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.contact-hero h1 {
    font-size: clamp(2rem, 5vw, 3rem); /* Increased sizes */
    margin-bottom: 0.3rem;
    position: relative;
    z-index: 2;
}

.contact-hero .subtitle {
    font-size: 1.25rem; /* Increased from 1.1rem */
    opacity: 0.95;
    margin: 0 auto;
    max-width: 700px;
    position: relative;
    z-index: 2;
    line-height: 1.6;
    color: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 3rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.contact-form-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.contact-image {
    background-image: url('https://images.unsplash.com/photo-1551434678-e076c223a692?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    border-radius: 16px;
    box-shadow: var(--shadow);
}

.contact-form-section {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(34, 197, 94, 0.1);
}

.holographic-form {
    display: grid;
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--dark-color);
    font-size: 1rem; /* Increased from 0.9rem */
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.9rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem; /* Increased from 0.9rem */
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
    outline: none;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.neon-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.9rem 1.8rem;
    background: var(--primary-color);
    color: white;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
    font-size: 1rem; /* Increased from 0.9rem */
}

.neon-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
    background: var(--primary-dark);
}

.contact-info-section {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.contact-info-item {
    background: white;
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border: 1px solid rgba(34, 197, 94, 0.1);
}

.info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem; /* Increased from 1.25rem */
    margin-bottom: 1rem;
}

.contact-info-item h3 {
    margin-bottom: 0.75rem;
    font-size: 1.25rem; /* Increased from 1.1rem */
}

.contact-info-item p {
    margin-bottom: 0.5rem;
    font-size: 1rem; /* Increased from 0.85rem */
}

.social-media {
    margin-top: 1rem;
}

.social-icons {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
}

.social-icons a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem; /* Increased from 1rem */
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icons a:hover {
    transform: translateY(-3px);
}

.facebook { background: #1877f2; }
.instagram { background: #e4405f; }
.linkedin { background: #0077b5; }
.twitter { background: #1da1f2; }

.map-section {
    padding: 0 5% 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.map-container {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid rgba(34, 197, 94, 0.1);
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
}

/* Form Status Messages */
.form-status {
    padding: 0.9rem;
    border-radius: 8px;
    margin-bottom: 1.25rem;
    text-align: center;
    display: none;
    font-size: 1rem; /* Increased from 0.9rem */
}

.form-status.success {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success-color);
    display: block;
}

.form-status.error {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    display: block;
}

/* Footer */
.holographic-footer {
    background: var(--dark-color);
    color: white;
    padding: 3rem 5% 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
}

.footer-brand .logo {
    width: 120px;
    margin-bottom: 1rem;
}

.footer-links h4,
.footer-contact h4,
.footer-social h4 {
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-size: 1.25rem; /* Increased from 1rem */
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #d1d5db;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 1rem; /* Increased from 0.85rem */
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-contact p {
    margin-bottom: 0.75rem;
    color: #d1d5db;
    font-size: 1rem; /* Increased from 0.85rem */
}

.copyright {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #9ca3af;
    font-size: 0.9rem; /* Increased from 0.8rem */
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .contact-form-container {
        grid-template-columns: 1fr;
    }
    
    .contact-info-section {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .glass-header {
        padding: 0.75rem 3%;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .holographic-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        box-shadow: var(--shadow);
        border-radius: 0 0 12px 12px;
    }

    .holographic-nav.active {
        display: block;
    }

    .holographic-nav ul {
        flex-direction: column;
        padding: 1rem;
        gap: 0;
    }

    .holographic-nav li {
        margin: 0;
    }

    .holographic-nav a {
        display: block;
        padding: 0.75rem;
        border-radius: 8px;
        margin-bottom: 0.25rem;
    }

    .contact-hero {
        padding: 4rem 3% 2rem;
    }

    .contact-content {
        padding: 2rem 3%;
    }

    .contact-form-section {
        padding: 1.5rem;
    }

    .contact-info-section {
        grid-template-columns: 1fr;
    }

    .map-section {
        padding: 0 3% 2rem;
    }

    .map-container iframe {
        height: 300px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .social-icons {
        justify-content: left;
    }
}