/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #0e27a4; /* Maroon */
    --secondary-color: #F8F9FA;
    --accent-color: #0aa722;
    --text-color: #000000;
    --light-text: #1d0f0f;
    --border-color: #E0E0E0;
    --shadow: 0 4px 12px rgba(0,0,0,0.08);
    --radius: 12px;
    --transition: all 0.3s ease;
}

body {
    font-family: Inter, system-ui, -apple-system, sans-serif;


    line-height: 1.6;
    color: var(--text-color);
    background-color: #FFFFFF;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.3;
}

h1 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

h2 {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

h3 {
    font-size: 1.0rem;
    margin-bottom: 0.5rem;
}

p {
    margin-bottom: 0.5rem;
    color: var(--light-text);
}

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.61);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: var(--radius);
    transition: var(--transition);
}

.nav-menu a:hover,
.nav-menu a.active {
    background: var(--primary-color);
    color: white;
}

.btn-install-app {
    background: #179604;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius);
    cursor: pointer;
    font-weight: 500;
    transition: var(--transition);
}

.btn-install-app:hover {
    background: #0b0d9899;
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    padding: 0.2rem;
    background: linear-gradient(135deg, #9ea9db 0%, #FFFFFF 100%);
}

.hero .container {
    display: flex;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content h2 {
    font-size: 3rem;
    color: var(--primary-color);
    padding-top: 10px;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--light-text);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--accent-color);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 500;
    display: inline-block;
    transition: var(--transition);
    cursor: pointer;
}

.btn-primary:hover {
    background: #2a47a5;
    transform: translateY(-2px);
}

.btn-secondary {
    background: white;
    color: var(--accent-color);
    padding: 1rem 2rem;
    border: 2px solid var(--primary-color);
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 500;
    display: inline-block;
    transition: var(--transition);
    cursor: pointer;
}

.btn-secondary:hover {
    background:var(--primary-color);
    color: rgb(243, 245, 243);
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

/* Services Section */
.services {
    padding: 4rem 0;
    background: var(--secondary-color);
}

.section-subtitle {
    text-align: center;
    color: var(--light-text);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-card {
    background: rgba(21, 42, 226, 0.126);
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-link {
    display: inline-flexbox ;
    margin-top: 1rem;
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
}

/* Why Us Section */
.why-us {
    padding: 4rem 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.benefit-card {
    background: rgba(25, 10, 159, 0.251);
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* Process Preview */
.process-preview {
    padding: 4rem 0;
    background: rgba(8, 190, 210, 0.103);
}

.process-steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin: 3rem 0;
}

.step {
    background: rgba(7, 167, 42, 0.217);
    padding: 1.5rem;
    border-radius: var(--radius);
    text-align: center;
    min-width: 150px;
    box-shadow: var(--shadow);
}

.step-number {
    display: block;
    width: 30px;
    height: 30px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    margin: 0 auto 1rem;
    line-height: 40px;
    font-weight: bold;
}

.step-arrow {
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: bold;
}

.cta-center {
    text-align: center;
    margin-top: 2rem;
}

/* Application Form */
.application-form {
    padding: 3rem 0;
}

.form-section {
    background: rgba(44, 17, 224, 0.247);
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    margin-bottom: 2rem;
}

.form-section h2 {
    text-align: left;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.form-section h2 span {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    text-align: center;
    line-height: 30px;
    margin-right: 10px;
    font-size: 0.9rem;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-color);
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--border-color);
    border-radius: var(--radius);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(139, 0, 0, 0.1);
}

.form-hint {
    display: block;
    margin-top: 0.5rem;
    color: var(--light-text);
    font-size: 0.9rem;
}

/* Photo Upload */
.photo-upload-area {
    text-align: center;
}

.photo-preview {
    width: 200px;
    height: 200px;
    border: 2px dashed var(--border-color);
    border-radius: var(--radius);
    margin: 0 auto 1rem;
    position: relative;
    overflow: hidden;
}

.photo-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none;
}

.upload-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--light-text);
}

.upload-placeholder span {
    font-size: 3rem;
    margin-bottom: 1rem;
}

#photoUpload {
    display: none;
}

.btn-upload {
    background: var(--primary-color);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius);
    cursor: pointer;
    display: inline-block;
    margin-bottom: 0.5rem;
    transition: var(--transition);
}

.btn-upload:hover {
    background: #1bab33;
}

/* Skills Grid */
.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.skill-checkbox {
    display: flex;
    align-items: center;
    padding: 1rem;
    background: var(--secondary-color);
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
}

.skill-checkbox:hover {
    background: #E9ECEF;
}

.skill-checkbox input {
    margin-right: 1rem;
}

.skill-label {
    font-weight: 500;
}

/* Submit Section */
.submit-section {
    text-align: center;
}

.privacy-note {
    margin-bottom: 2rem;
    text-align: left;
    background: #FFF5F5;
    padding: 1rem;
    border-radius: var(--radius);
}

.privacy-note label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    cursor: pointer;
}

.privacy-note input {
    margin-top: 0.25rem;
}

.btn-submit {
    background: var(--primary-color);
    color: white;
    padding: 1rem 3rem;
    border: none;
    border-radius: var(--radius);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-submit:hover {
    background: #32a52a;
    transform: translateY(-2px);
}

.btn-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.loading-spinner {
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s ease-in-out infinite;
    display: none;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: var(--radius);
}

.success-message {
    background: #D4EDDA;
    color: #155724;
    border: 1px solid #C3E6CB;
}

.error-message {
    background: #F8D7DA;
    color: #c20518;
    border: 1px solid #F5C6CB;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.modal-content {
    background: white;
    padding: 3rem;
    border-radius: var(--radius);
    max-width: 500px;
    text-align: center;
    box-shadow: var(--shadow);
}

.modal-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

/* Footer */
.footer {
    background: #0e27a4bb;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-col h3,
.footer-col h4 {
    color: white;
    margin-bottom: 1rem;
}

.footer-col p,
.footer-col address p {
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col a {
    color: #ffffff;
    text-decoration: none;
    transition: var(--transition);
}

.footer-col a:hover {
    color: rgb(6, 232, 52);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: rgba(64, 59, 59, 0.696);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    font-size: 1.2rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
    text-align: center;
}

.footer-bottom a {
    color: #e5ebf0;
    text-decoration: none;
    margin: 0 0.5rem;
}

.footer-bottom a:hover {
    color: white;
}

.seo-text {
    font-size: 0.9rem;
    color: #95A5A6;
    margin-top: 0.5rem;
}

/* PWA Install Banner */
.pwa-banner {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(248, 248, 248, 0.589);
    color: rgb(1, 0, 0);
    padding: 1rem;
    border-radius: var(--radius);
    box-shadow: 0 8px 32px rgba(139, 0, 0, 0.2);
    z-index: 1001;
    display: none;
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        transform: translateX(-50%) translateY(100px);
        opacity: 0;
    }
    to {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }
}

.banner-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: space-between;
}

.btn-install {
    background:  var(--accent-color);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.btn-install:hover {
    transform: scale(1.05);
}

.btn-close {
    background: none;
    border: none;
    color: rgb(255, 6, 6);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0 0.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    
    .hero {
        padding-top: 0;
  min-height: 100vh;
  background:
    linear-gradient(
      rgba(23, 23, 25, 0.493),
      rgba(0, 0, 0, 0.507)
    ),
    url("https://i.pinimg.com/736x/61/67/c3/6167c30149efe46c9ce081477f0feea4.jpg");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  position:relative ;
  display: flex;
  text-align: left;
  gap: 3rem;
  padding-top: 10px;
  justify-content: center;
}
.hero-image{
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;

}

    .hero-content h1 {
        font-size: clamp( 1.5rem, 5vw, 3rem );
        color: rgb(208, 213, 247);
        margin-bottom: 5rem;
        margin-top: 0;

    }
    .hero-content p{
        font-size: 1.0rem;
        color: #f2f5f2;
        font-weight: bold;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 1rem;
        box-shadow: var(--shadow);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .mobile-menu-btn {
        display: block;
        background: none;
        border: none;
        cursor: pointer;
    }
    
    .mobile-menu-btn span {
        display: block;
        width: 25px;
        height: 3px;
        background: var(--text-color);
        margin: 5px 0;
        transition: var(--transition);
    }
    
    .process-steps {
        flex-direction: column;
    }
    
    .step-arrow {
        transform: rotate(90deg);
    }
    
    .pwa-banner {
        width: 90%;
    }
    
    .banner-content {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
}

@media (min-width: 769px) {
    .mobile-menu-btn {
        display: none;
    }
}
/* Process Page Styles */
.process-detail {
    padding: 4rem 0;
    background: #f8f9fa;
}

.process-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

.process-step {
    display: flex;
    margin-bottom: 3rem;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
    z-index: 1;
    margin-right: 2rem;
}

.step-content {
    background: rgba(40, 24, 186, 0.365);
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    flex: 1;
}

.step-content h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.step-content ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.step-content li {
    margin-bottom: 0.5rem;
    color: var(--light-text);
}

.requirements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.requirement {
    background: white;
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.requirement h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* FAQ Styles */
.faq {
    padding: 4rem 0;
    background: white;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--secondary-color);
    padding: 2rem;
    border-radius: var(--radius);
    margin-bottom: 1.5rem;
}

.faq-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Contact Page Styles */
.contact-page {
    padding: 4rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

.contact-info h2,
.contact-form-container h2 {
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.office {
    background: white;
    padding: 1.5rem;
    border-radius: var(--radius);
    margin-bottom: 2rem;
    box-shadow: var(--shadow);
}

.office h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.office address p {
    margin-bottom: 0.5rem;
}

.quick-contact {
    background: white;
    padding: 1.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.contact-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.whatsapp-btn,
.call-btn,
.email-btn {
    display: block;
    padding: 1rem;
    text-align: center;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.whatsapp-btn {
    background: #25D366;
    color: white;
}

.call-btn {
    background: var(--primary-color);
    color: white;
}

.email-btn {
    background: #EA4335;
    color: white;
}

.whatsapp-btn:hover,
.call-btn:hover,
.email-btn:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

/* Contact Form */
.contact-form {
    background: white;
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--border-color);
    border-radius: var(--radius);
    font-family: 'Inter', sans-serif;
}

.contact-form textarea {
    resize: vertical;
}

/* Map Section */
.map-section {
    margin-top: 4rem;
}

.map-section h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.map-container {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}
/* ============================================
   PROCESS PAGE SPECIFIC STYLES
============================================ */

.process-detail {
    padding: 4rem 0;
    background: linear-gradient(135deg, #FFF5F5 0%, #FFFFFF 100%);
}

.process-timeline {
    position: relative;
    max-width: 900px;
    margin: 4rem auto;
    padding-left: 2rem;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, var(--primary-color) 0%, #ff6b6b 100%);
    border-radius: 2px;
}

.process-step {
    display: flex;
    margin-bottom: 3rem;
    position: relative;
    align-items: flex-start;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
    z-index: 2;
    margin-right: 2rem;
    box-shadow: 0 4px 15px rgba(139, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.process-step:hover .step-number {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(139, 0, 0, 0.3);
}

.step-content {
    background: white;
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    flex: 1;
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.process-step:hover .step-content {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.step-content h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.step-content > p {
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    padding: 0.5rem 1rem;
    background: #FFF5F5;
    border-radius: 20px;
    display: inline-block;
}

.step-content ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.step-content li {
    margin-bottom: 0.75rem;
    color: var(--text-color);
    position: relative;
    padding-left: 1.5rem;
}

.step-content li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.step-content .btn-primary {
    margin-top: 1.5rem;
}

/* Process Requirements */
.process-requirements {
    background: white;
    padding: 3rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    margin-top: 4rem;
}

.process-requirements h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.requirements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.requirement {
    background: #FFF5F5;
    padding: 2rem;
    border-radius: var(--radius);
    border-top: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.requirement:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(139, 0, 0, 0.1);
}

.requirement h4 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.requirement ul {
    list-style: none;
    padding-left: 0;
}

.requirement li {
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-color);
}

.requirement li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 1.5rem;
    line-height: 1;
}

/* FAQ Section */
.faq {
    padding: 4rem 0;
    background: var(--secondary-color);
}

.faq-grid {
    max-width: 900px;
    margin: 3rem auto 0;
    display: grid;
    gap: 1.5rem;
}

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    cursor: pointer;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.faq-item:hover {
    border-left-color: var(--primary-color);
    transform: translateX(5px);
}

.faq-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-item h3::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-item.active h3::after {
    content: '−';
    transform: rotate(180deg);
}

.faq-item p {
    margin: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.3s ease;
}

.faq-item.active p {
    max-height: 500px;
    opacity: 1;
    margin-top: 1rem;
}

/* ============================================
   CONTACT PAGE SPECIFIC STYLES
============================================ */

.contact-page {
    padding: 4rem 0;
    background: linear-gradient(135deg, #FFFFFF 0%, #FFF5F5 100%);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin: 3rem 0;
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

/* Contact Info Styles */
.contact-info h2 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.office {
    background: white;
    padding: 2rem;
    border-radius: var(--radius);
    margin-bottom: 2rem;
    box-shadow: var(--shadow);
    border: 1px solid rgba(139, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.office:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.office h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.office address {
    font-style: normal;
}

.office address p {
    margin-bottom: 0.75rem;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.office address p strong {
    min-width: 70px;
    color: var(--primary-color);
}

.office address p::before {
    content: '';
    display: none;
}

/* Quick Contact Buttons */
.quick-contact {
    background: white;
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    margin-top: 2rem;
}

.quick-contact h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.contact-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.whatsapp-btn,
.call-btn,
.email-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    text-align: center;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    font-size: 1rem;
    cursor: pointer;
}

.whatsapp-btn {
    background: #25D366;
    color: white;
}

.whatsapp-btn:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.call-btn {
    background: var(--primary-color);
    color: white;
}

.call-btn:hover {
    background: #A52A2A;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(139, 0, 0, 0.3);
}

.email-btn {
    background: #EA4335;
    color: white;
}

.email-btn:hover {
    background: #D32F2F;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(234, 67, 53, 0.3);
}

/* Contact Form Styles */
.contact-form-container {
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.contact-form-container h2 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-form .form-group {
    margin-bottom: 0;
}

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-color);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: var(--radius);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(139, 0, 0, 0.1);
}

.contact-form textarea {
    resize: vertical;
    min-height: 150px;
}

.contact-form .btn-primary {
    align-self: flex-start;
    padding: 1rem 3rem;
    font-size: 1.1rem;
    margin-top: 1rem;
}

/* Map Section */
.map-section {
    margin-top: 4rem;
    background: white;
    padding: 3rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.map-section h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--primary-color);
    font-size: 1.8rem;
}

.map-container {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    height: 400px;
    position: relative;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(139, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.map-container:hover .map-overlay {
    opacity: 1;
}

.map-overlay button {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: var(--radius);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.map-overlay button:hover {
    background: #A52A2A;
    transform: scale(1.05);
}

/* Success/Error Messages */
.form-feedback {
    padding: 1rem;
    border-radius: var(--radius);
    margin-top: 1rem;
    display: none;
}

.form-feedback.success {
    background: #D4EDDA;
    color: #155724;
    border: 1px solid #C3E6CB;
    display: block;
}

.form-feedback.error {
    background: #F8D7DA;
    color: #721C24;
    border: 1px solid #F5C6CB;
    display: block;
}

/* Contact Hours */
.contact-hours {
    background: #FFF5F5;
    padding: 1.5rem;
    border-radius: var(--radius);
    margin-top: 2rem;
}

.contact-hours h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.contact-hours ul {
    list-style: none;
    padding-left: 0;
}

.contact-hours li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(139, 0, 0, 0.1);
}

.contact-hours li:last-child {
    border-bottom: none;
}

/* Social Media Links */
.contact-social {
    margin-top: 2rem;
    text-align: center;
}

.contact-social h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: #A52A2A;
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(139, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .process-timeline {
        padding-left: 1rem;
    }
    
    .process-timeline::before {
        left: 25px;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        margin-right: 1.5rem;
    }
    
    .step-content {
        padding: 1.5rem;
    }
    
    .process-requirements,
    .office,
    .contact-form-container,
    .map-section {
        padding: 1.5rem;
    }
    
    .requirements-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form .btn-primary {
        width: 100%;
        text-align: center;
    }
    
    .map-container {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .process-step {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .step-number {
        margin-bottom: 1rem;
    }
    
    .process-timeline::before {
        left: 25px;
    }
    
    .contact-buttons a {
        font-size: 0.9rem;
        padding: 0.875rem 1rem;
    }
}
/* CTA Section for Process Page */
.cta-process {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #A52A2A 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-process .btn-primary {
    background: white;
    color: var(--primary-color);
}

.cta-process .btn-primary:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

.cta-process .btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-process .btn-secondary:hover {
    background: white;
    color: var(--primary-color);
}

/* Emergency Contact */
.emergency-contact {
    margin-top: 4rem;
    text-align: center;
}

.emergency-card {
    background: linear-gradient(135deg, #FF6B6B 0%, #FF5252 100%);
    color: white;
    padding: 2.5rem;
    border-radius: var(--radius);
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 8px 30px rgba(255, 107, 107, 0.3);
}

.emergency-card h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.emergency-card p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.emergency-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

.emergency-phone,
.emergency-whatsapp {
    display: inline-block;
    padding: 1rem 2rem;
    background: white;
    color: #FF5252;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.emergency-phone:hover,
.emergency-whatsapp:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.emergency-card small {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    display: block;
    margin-top: 1rem;
}/* WhatsApp Chat Widget */
#whatsapp-widget {
    position: fixed;
    bottom: 20px;
    left: 20px; /* left side */
    z-index: 10000;
    font-family: Inter, system-ui, sans-serif;
}

/* Chat popup box */
#whatsapp-popup-widget {
    background: #ffffff;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    max-width: 280px;
    padding: 15px 20px;
    margin-bottom: 10px;
    opacity: 0;
    pointer-events: none;
    transform: translateX(-20px);
    transition: all 0.5s ease;
}

/* Show popup */
#whatsapp-popup-widget.show {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
}

/* Popup title */
#whatsapp-popup-widget h4 {
    margin: 0 0 5px 0;
    color: #05760e;
    font-size: 1rem;
    font-weight: 600;
}

/* Popup message */
#whatsapp-popup-widget p {
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 10px;
    color: var(--text-color);
}

/* Buttons container */
.whatsapp-popup-buttons {
    display: flex;
    gap: 10px;
}

/* Start Chat button */
.btn-start-chat {
    flex: 1;
    text-align: center;
    background: #0dd958;
    color: white;
    padding: 6px 0;
    border-radius: var(--radius);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: transform 0.2s ease;
}

.btn-start-chat:hover {
    transform: translateY(-2px);
}

/* Maybe Later button */
.btn-maybe-later {
    flex: 1;
    background: #c20303;
    color: #ffffff;
    border: none;
    padding: 6px 0;
    border-radius: var(--radius);
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 500;
    transition: transform 0.2s ease, background 0.2s ease;
}

.btn-maybe-later:hover {
    background: #e0e0e0;
    transform: translateY(-2px);
}

/* Floating WhatsApp button */
#whatsapp-floating {
    width: 50px;
    height: 50px;
    background: #13d059;
    border-radius: 50%;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s ease;
}

#whatsapp-floating img {
    width: 28px;
    height: 28px;
}

#whatsapp-floating:hover {
    transform: scale(1.1);
}

/* Mobile */
@media (max-width: 768px) {
    #whatsapp-popup-widget {
        max-width: 220px;
        font-size: 0.65rem;
    }

    #whatsapp-floating {
        width: 35px;
        height: 35px;
    }

    #whatsapp-floating img {
        width: 25px;
        height: 25px;
    }
}
/* Button style for links */
.btn-book-medical {
    display: inline-block;
    background-color: var(--accent-color); /* green accent */
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    font-size: 0.95rem;
}

.btn-book-medical:hover {
    background-color: #08991a; /* slightly darker green */
    transform: translateY(-2px);
}
