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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #fefdf8 0%, #fffbeb 100%);
    min-height: 100vh;
}

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

/* Header Styles */
header {
    background: rgba(45, 45, 45, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
}

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

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #fef9e7;
    text-decoration: none;
}

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

nav a {
    color: #fef9e7;
    text-decoration: none;
    transition: color 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

nav a:hover, nav a.active {
    color: #fbbf24;
    background: rgba(251, 191, 36, 0.15);
}

/* WhatsApp Floating Pill Button */
.whatsapp-pill {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #1f1f1f;
    padding: 12px 18px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: bold;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(251, 191, 36, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    z-index: 1000;
}

.whatsapp-pill img {
    width: 22px;
    height: 22px;
}

.whatsapp-pill:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(251, 191, 36, 0.4);
}

/* Main Content */
.main-content {
    margin-top: 100px;
    padding: 2rem 0;
}

/* Page Header */
.page-header {
    text-align: center;
    margin-bottom: 4rem;
}

.page-header h1 {
    font-size: 3rem;
    color: #1f1f1f;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #f59e0b 0%, #eab308 50%, #ca8a04 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-header p {
    font-size: 1.2rem;
    color: #404040;
    max-width: 600px;
    margin: 0 auto;
}

/* Contact Content */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

/* Contact Info */
.contact-info {
    /* Animation will be handled by .fade-in class */
}

.contact-info h2 {
    font-size: 2rem;
    color: #1f1f1f;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #f59e0b 0%, #eab308 50%, #ca8a04 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-details {
    margin-bottom: 3rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(39, 39, 51, 0.05);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(39, 39, 51, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(251, 191, 36, 0.25);
}

.contact-icon {
    font-size: 1.5rem;
    min-width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f59e0b;
}

.contact-item div {
    flex: 1;
}

.contact-item strong {
    color: #272733;
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-item p {
    color: #272733;
    margin: 0;
}

/* Social Media */
.social-media {
    margin-bottom: 2rem; /* 👈 new line for spacing */
}


.social-media h3 {
    font-size: 1.5rem;
    color: #1f1f1f;
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-link {
    padding: 0.8rem 1.5rem;
    background: rgba(39, 39, 51, 0.05);
    color: #272733;
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s ease;
    border: 1px solid rgba(39, 39, 51, 0.1);
}

.social-link:hover {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(251, 191, 36, 0.3);
}

/* Contact Form */
.contact-form-container {
    /* Animation will be handled by .fade-in class */
}

.contact-form {
    background: rgba(39, 39, 51, 0.05);
    padding: 2.5rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(39, 39, 51, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #272733;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(39, 39, 51, 0.1);
    border: 1px solid rgba(39, 39, 51, 0.2);
    border-radius: 10px;
    color: #272733;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #fbbf24;
    box-shadow: 0 0 0 2px rgba(251, 191, 36, 0.2);
    background: rgba(39, 39, 51, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
}

.form-group select option {
    background: #ebe4e4;
    color: #272733;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    width: 100%;
    padding: 1.2rem 2rem;
    background: linear-gradient(135deg, #f59e0b 0%, #eab308 50%, #ca8a04 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(251, 191, 36, 0.4);
}

.submit-btn:active {
    transform: translateY(-1px);
}

/* Footer */
footer {
    background: rgba(39, 39, 51, 0.9);
    color: #fef9e7;
    text-align: center;
    padding: 2rem 0;
    margin-top: 4rem;
}

/* Fade-in Animation */
.fade-in {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.8s ease;
}

/* Only apply fade-in effect when JavaScript is available */
.js-enabled .fade-in {
    opacity: 0;
    transform: translateY(50px);
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .page-header h1 {
        font-size: 2.5rem;
    }

    .contact-info h2 {
        font-size: 1.8rem;
    }

    nav ul {
        gap: 1rem;
    }

    nav a {
        padding: 0.3rem 0.8rem;
        font-size: 0.9rem;
    }

    .logo {
        font-size: 1.5rem;
    }

    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .contact-item {
        padding: 1rem;
    }

    .whatsapp-pill span {
        display: none;
    }

    .whatsapp-pill {
        padding: 12px;
        border-radius: 50%;
    }
}

@keyframes twinkle {
    0%   { opacity: 0.4; transform: scale(0.9); }
    50%  { opacity: 1;   transform: scale(1.1); }
    100% { opacity: 0.5; transform: scale(1); }
}
