/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Poppins', sans-serif;
    background: #ffffff;
    color: #333333;
    overflow-x: hidden;
}
a {
    text-decoration: none;
}

/* Heading Styles */
h1, h2, h3, h4 {
    font-family: 'Dancing Script', cursive;
    color: #007bff;
    text-align: center;
    font-weight: 700;
    margin-bottom: 20px;
}
h1 {
    font-size: 3rem;
}
h2 {
    font-size: 2.5rem;
}
h3 {
    font-size: 1.5rem;
}
h4 {
    font-size: 1.2rem;
}

/* Top Header */
.top-header {
    background: linear-gradient(135deg, #ff2a70, #a100a1);
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    padding: 0 10px;
    text-align: center;
}
.top-header p {
    color: #ffffff;
    margin: 0;
    font-size: 16px;
}
.top-header b {
    text-decoration: underline;
    font-size: 18px;
    color: #ffffff;
}

/* Navbar Styles */
.navbar {
    background: linear-gradient(135deg, #ffffff, #ff80ab);
    padding: 10px 15px;
    box-shadow: 0 8px 8px rgba(0, 0, 0, 0.1), inset 0 2px 4px rgba(255, 255, 0.3);
    position: relative;
    z-index: 10;
    width: 85%;
    border-radius: 50px;
    margin: 20px auto;
    transition: transform 0.2s ease;
}
.navbar:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 16px rgba(0, 0, 0, 0.2), inset 0 2px 4px rgba(255, 255, 255, 0.4);
}
.navbar nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.brand-image {
    font-family: 'Dancing Script', cursive;
    font-size: 2.2rem;
    color: #ff2a70;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    letter-spacing: 1px;
}
.navbar ul {
    list-style: none;
    display: flex;
    gap: 15px;
    align-items: center;
}
.navbar ul li {
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 20px;
    transition: all 0.3s ease;
    color: #333333;
    background-color: transparent;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1), inset 0 1px 2px rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 36px;
    line-height: 1;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
}
.navbar ul li a {
    text-decoration: none;
    color: #333333;
    display: block;
    width: 100%;
    text-align: center;
    line-height: 1;
}
.navbar ul li:hover {
    background: linear-gradient(135deg, #ff2a70, #a100a1);
    color: #ffffff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2), inset 0 -1px 3px rgba(0, 0, 0, 0.2);
}
.navbar ul li:hover a {
    color: #ffffff;
}
.post-ad-link {
    color: #ffffff;
    font-size: 15px;
    padding: 8px 18px;
    border-radius: 30px;
    background: linear-gradient(135deg, #ff2a70, #a100a1);
    border: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}
.post-ad-link span {
    font-weight: 700;
    font-style: italic;
    color: #ffffff;
}
.post-ad-link i {
    color: #ffffff;
    font-size: 18px;
    margin-left: 8px;
}
.post-ad-link:hover {
    background: linear-gradient(135deg, #a100a1, #ff2a70);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    transform: translateY(-3px) scale(1.05);
    animation: none;
}
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Phone-Specific Sliding Menu */
.toggle-icon {
    font-size: 26px;
    cursor: pointer;
    color: #333333;
    display: none;
}
.sliding-menu {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100%;
    background: linear-gradient(135deg, #ffffff, #ff80ab);
    box-shadow: -4px 0 6px rgba(0, 0, 0, 0.2);
    transition: right 0.3s ease;
    z-index: 20;
    flex-direction: column;
    padding: 15px;
}
.sliding-menu.show {
    right: 0;
}
.sliding-menu ul {
    list-style: none;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.sliding-menu ul li {
    color: #333333;
    font-size: 17px;
    padding: 8px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}
.sliding-menu ul li:hover {
    background: linear-gradient(135deg, #ff2a70, #a100a1);
    color: #ffffff;
}
.close-btn {
    align-self: flex-end;
    font-size: 22px;
    cursor: pointer;
    color: #333333;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #ffffff, #ff80ab);
    padding: 50px 15px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.3), transparent);
    opacity: 0.5;
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}
.hero-content p {
    font-size: 1.1rem;
    color: #333333;
    margin-bottom: 25px;
    line-height: 1.6;
}
.hero-cta {
    display: inline-flex;
    align-items: center;
    padding: 10px 25px;
    font-size: 0.95rem;
    color: #ffffff;
    background: linear-gradient(135deg, #ff2a70, #a100a1);
    border-radius: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    text-decoration: none;
    animation: pulse 2s infinite;
}
.hero-cta:hover {
    background: linear-gradient(135deg, #a100a1, #ff2a70);
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    animation: none;
}
.hero-cta i {
    margin-left: 8px;
    font-size: 1.1rem;
}

/* Profile Gallery */
.profile-gallery {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 15px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}
.profile-card {
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
}
.profile-card:hover {
    transform: translateY(-5px);
}
.profile-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

/* Article Section */
.article-section {
    background: linear-gradient(135deg, #ffffff, #ff80ab);
    font-family: 'Poppins', sans-serif;
    padding: 15px;
    margin: 15px auto;
    max-width: 1200px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.article-section p, .article-section ul li {
    color: #333333;
    font-weight: 400;
}

/* FAQ Section */
.faq-container {
    background: linear-gradient(135deg, #ffffff, #ff80ab);
    max-width: 1200px;
    margin: 40px auto;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 15px;
}
.faq-header {
    margin-bottom: 15px;
}
.faq-item {
    border-bottom: 1px solid #333333;
    padding: 12px 0;
    cursor: pointer;
    transition: all 0.3s ease;
}
.faq-item:last-child {
    border-bottom: none;
}
.faq-question {
    font-size: 17px;
    color: #333333;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 500;
}
.faq-answer {
    font-size: 15px;
    color: #333333;
    margin-top: 8px;
    display: none;
    font-weight: 400;
}
.faq-item.active .faq-answer {
    display: block;
}
.faq-item.active .faq-question::after {
    content: '-';
    font-size: 18px;
    color: #ff2a70;
}
.faq-question::after {
    content: '+';
    font-size: 18px;
    color: #ff2a70;
}

/* Service Locations */
.service-locations {
    max-width: 1200px;
    margin: 40px auto;
    padding: 30px 15px;
    background: linear-gradient(135deg, #ffffff, #ff80ab);
    border-radius: 8px;
}
.locations-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
}
.location-btn {
    padding: 8px 12px;
    border-radius: 20px;
    transition: all 0.3s ease;
    color: #333333;
    background-color: transparent;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1), inset 0 1px 2px rgba(255, 255, 255, 0.2);
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
}
.location-btn:hover {
    background: linear-gradient(135deg, #ff2a70, #a100a1);
    color: #ffffff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2), inset 0 -1px 3px rgba(0, 0, 0, 0.2);
}

/* Footer Styling */
.footer {
    background-color: #2c2c2c;
    padding: 15px;
    text-align: center;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    border-top: 3px solid transparent;
    background-image: linear-gradient(135deg, #ff2a70, #a100a1);
    background-origin: border-box;
    background-clip: padding-box, border-box;
}
.footer footer {
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    font-weight: 400;
}

/* Contact Popup */
.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 30;
}
.contact-popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    z-index: 40;
    max-width: 450px;
    width: 90%;
    padding: 15px;
    max-height: 400px;
    overflow-y: auto;
}
.contact-popup.show, .popup-overlay.show {
    display: block;
}
.popup-content {
    position: relative;
}
.close-popup {
    position: absolute;
    top: -10px;
    right: -10px;
    font-size: 18px;
    cursor: pointer;
    color: #333333;
    background: #ffffff;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.contact-buttons {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-bottom: 15px;
}
.contact-btn {
    color: #ffffff;
    padding: 6px 12px;
    border-radius: 20px;
    background: linear-gradient(135deg, #ff2a70, #a100a1);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.85rem;
    transition: all 0.25s ease;
}
.contact-btn:hover {
    background: linear-gradient(135deg, #a100a1, #ff2a70);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.form-group {
    margin-bottom: 10px;
    position: relative;
}
.form-group input, .form-group textarea {
    width: 100%;
    padding: 6px 10px 6px 30px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 0.85rem;
    font-family: 'Poppins', sans-serif;
}
.form-group textarea {
    resize: none;
    height: 60px;
}
.form-group input::placeholder, .form-group textarea::placeholder {
    color: #999;
}
.form-group input#name::before {
    content: '\f007';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    font-size: 14px;
}
.form-group input#email::before {
    content: '\f0e0';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    font-size: 14px;
}
.form-group input#phone::before {
    content: '\f095';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    font-size: 14px;
}
.form-group textarea#message::before {
    content: '\f075';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 10px;
    top: 15px;
    color: #999;
    font-size: 14px;
}
.captcha-group {
    display: flex;
    align-items: center;
    gap: 8px;
}
.captcha-group span {
    font-size: 0.85rem;
    color: #333333;
}
.captcha-group input {
    width: 80px;
    padding: 6px 10px 6px 30px;
}
.captcha-group input::before {
    content: '\f4a9';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    font-size: 14px;
}
.submit-btn {
    width: 100%;
    padding: 8px;
    border: none;
    border-radius: 20px;
    background: linear-gradient(135deg, #ff2a70, #a100a1);
    color: #ffffff;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.25s ease;
}
.submit-btn:hover {
    background: linear-gradient(135deg, #a100a1, #ff2a70);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Sticky Buttons */
.sticky-buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #ffffff;
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 10px 0;
    box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.1);
    z-index: 20;
}
.sticky-btn {
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 20px;
    background: linear-gradient(135deg, #ff2a70, #a100a1);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}
.sticky-btn:hover {
    background: linear-gradient(135deg, #a100a1, #ff2a70);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Media Queries */
@media (max-width: 768px) {
    .top-header {
        height: auto;
        padding: 8px;
        font-size: 14px;
        flex-wrap: wrap;
    }
    .top-header p,
    .top-header b {
        font-size: 13px;
    }
    .navbar {
        width: 95%;
        margin: 15px auto;
    }
    .navbar ul {
        display: none;
    }
    .toggle-icon {
        display: block;
    }
    .sliding-menu {
        display: flex;
        width: 75%;
    }
    .hero-content h1 {
        font-size: 2.1rem;
    }
    .hero-content p {
        font-size: 0.95rem;
    }
    .hero-cta {
        padding: 8px 15px;
        font-size: 0.85rem;
    }
    .profile-gallery {
        grid-template-columns: 1fr;
    }
    .locations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    h1 {
        font-size: 2.2rem;
    }
    h2 {
        font-size: 1.8rem;
    }
    h3 {
        font-size: 1.5rem;
    }
    h4 {
        font-size: 1.2rem;
    }
    .contact-popup {
        width: 95%;
        padding: 12px;
        max-height: 350px;
    }
    .contact-buttons {
        flex-direction: column;
        gap: 6px;
        margin-bottom: 12px;
    }
    .contact-btn {
        padding: 5px 10px;
        font-size: 0.8rem;
    }
    .form-group input, .form-group textarea {
        padding: 5px 8px 5px 28px;
        font-size: 0.8rem;
    }
    .form-group textarea {
        height: 50px;
    }
    .captcha-group input {
        width: 70px;
        padding: 5px 8px 5px 28px;
    }
    .captcha-group span {
        font-size: 0.8rem;
    }
    .submit-btn {
        padding: 7px;
        font-size: 0.85rem;
    }
    .sticky-buttons {
        gap: 10px;
        padding: 8px 0;
    }
    .sticky-btn {
        padding: 6px 15px;
        font-size: 0.85rem;
    }
}
@media (max-width: 480px) {
    .top-header {
        font-size: 12px;
        padding: 6px 8px;
    }
    .top-header p,
    .top-header b {
        font-size: 10px;
    }
    .brand-image {
        font-size: 1.8rem;
    }
    .post-ad-link {
        font-size: 11px;
        padding: 8px 12px;
    }
    .post-ad-link i {
        font-size: 14px;
    }
    .hero-content h1 {
        font-size: 1.6rem;
    }
    .hero-content p {
        font-size: 0.85rem;
    }
    .hero-cta {
        padding: 6px 12px;
        font-size: 0.75rem;
    }
    .locations-grid {
        grid-template-columns: 1fr;
    }
    .location-btn {
        font-size: 0.75rem;
        padding: 6px 8px;
    }
    .footer {
        padding: 8px;
    }
    .footer footer {
        font-size: 0.75rem;
    }
    h1 {
        font-size: 1.6rem;
    }
    h2 {
        font-size: 1.4rem;
    }
    h3 {
        font-size: 1.1rem;
    }
    h4 {
        font-size: 0.9rem;
    }
    .contact-popup {
        max-height: 320px;
    }
    .contact-btn {
        padding: 5px 8px;
        font-size: 0.75rem;
    }
    .form-group input, .form-group textarea {
        padding: 4px 8px 4px;
        font-size: 0.75rem;
    }
    .form-group textarea {
        height: 40px;
    }
    .captcha-group input {
        width: 100px;
        padding: 4px 8px 4px 25px;
    }
    .captcha-group span {
        font-size: 0.75rem;
    }
    .submit-btn {
        padding: 6px;
        font-size: 0.8rem;
    }
    .sticky-btn {
        padding: 5px 10px;
        font-size: 0.75rem;
    }
    
    .profile-image img {
    height: 350px;
}
}