/* Base Styles */
:root {
  --primary-color: #2d79f3;
  --secondary-color: #063e9e;
  --accent-color: #ff7a01;
  --text-color: #333;
  --light-text: #fff;
  --bg-color: #f8f9fa;
  --footer-bg: #a1afcb;
  --section-bg: #f0f4f8;
  --border-radius: 8px;
  --box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--bg-color);
}

.container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

 /* ====================== 
               HEADER
         ====================== */
        .header {
            background-color: #ffffff;
            padding: 5px 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: relative;
        }

        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-bottom: 0px;
            border-bottom: 1px solid #eaeaea;
        }

        .logo img {
            height: 80px;
            width: auto;
            transition: var(--transition);
        }

        .language-social-container {
            display: flex;
            align-items: center;
            gap: 30px;
        }

        .social-links {
            display: flex;
            align-items: center;
            gap: 10px;
            list-style: none;
            padding: 0;
        }

        .social-links span {
            font-size: 12px;
            font-weight: 600;
            color: var(--text-color);
        }

        .social-links a {
            color: var(--text-color);
            font-size: 16px;
            transition: var(--transition);
        }

        .social-links a:hover {
            color: var(--primary-color);
            transform: translateY(-2px);
        }

        .language-selector {
            display: flex;
            gap: 12px;
        }

        .language-item {
            display: flex;
            align-items: center;
            gap: 5px;
            font-size: 12px;
        }

        .language-selector img {
            width: 24px;
            height: auto;
            border-radius: 3px;
        }

        .language-selector a {
            display: flex;
            align-items: center;
            gap: 8px;
            cursor: pointer;
            font-weight: 500;
            color: var(--text-color);
            text-decoration: none;
            transition: var(--transition);
        }

        .language-selector a:hover {
            color: var(--primary-color);
        }

        .header-bottom {
            display: flex;
            justify-content: center;
            align-items: center;
            padding-top: 8px;
        }

        .nav-menu {
            display: flex;
            gap: 12px;
            align-items: center;
        }

        .med-import-btn {
            border: none;
            display: block;
            position: relative;
            padding: 0.7em 1.4em;
            font-size: 13px;
            background-color: #00173c;
            cursor: pointer;
            user-select: none;
            overflow: hidden;
            color: rgb(255, 255, 255);
            z-index: 1;
            font-family: inherit;
            font-weight: 700;
            transition: all 0.4s ease;
            border-radius: 6px;
            white-space: nowrap;
        }

        .med-import-btn:hover {
            background-color: #002b6e;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.2);
        }

        .nav-menu a {
            text-decoration: none;
            color: #444;
            font-weight: 700;
            font-size: 12px;
            text-transform: uppercase;
            transition: all 0.3s ease;
            padding: 3px 0;
            position: relative;
            letter-spacing: 0.5px;
        }

        .nav-menu a:hover {
            color: #1a5f9c;
        }

        .nav-menu a.active {
            color: #1a5f9c;
        }

        .nav-menu a:hover,
        .nav-menu a.active {
            color: var(--primary-color);
        }

        .nav-menu a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 1.5px;
            background: #1a5f9c;
            bottom: 0;
            left: 0;
            transition: width 0.3s;
        }

        .nav-menu a:hover::after, 
        .nav-menu a.active::after {
            width: 100%;
        }

        /* Hamburger Menu */
        .hamburger {
            display: none;
            cursor: pointer;
            background: none;
            border: none;
            padding: 10px;
            z-index: 1001;
        }

        .hamburger-line {
            width: 25px;
            height: 2px;
            background-color: var(--text-color);
            display: block;
            margin: 5px auto;
            transition: all 0.3s ease;
        }

        /* Mobile Navigation */
        .mobile-nav {
            position: fixed;
            top: 0;
            left: -100%;
            width: 80%;
            max-width: 300px;
            height: 100vh;
            background-color: white;
            z-index: 1000;
            padding: 80px 20px 20px;
            box-shadow: 2px 0 10px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            overflow-y: auto;
        }

        .mobile-nav.active {
            left: 0;
        }

        .mobile-nav-links {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .mobile-nav-links a {
            text-decoration: none;
            color: var(--text-color);
            font-weight: 600;
            padding: 10px 0;
            border-bottom: 1px solid #eee;
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .mobile-nav-links a:hover {
            color: var(--primary-color);
        }

        .mobile-nav-links .med-import-btn {
            width: 100%;
            text-align: center;
            margin-top: 10px;
        }

        .mobile-nav-links a.active {
    color: var(--primary-color) !important;
    position: relative;
}

.mobile-nav-links a.active::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 1.5px;
    background: var(--primary-color);
    bottom: 0;
    left: 0;
    transition: width 0.3s;
}

        .overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.5);
            z-index: 999;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .overlay.active {
            opacity: 1;
            visibility: visible;
        }

        /* Responsive Styles */
        @media (max-width: 992px) {
            .language-social-container {
                gap: 15px;
            }
            
            .nav-menu {
                gap: 8px;
            }
        }

        @media (max-width: 768px) {
            .header-top {
                flex-wrap: wrap;
                gap: 15px;
            }
            
            .language-social-container {
                order: 3;
                width: 100%;
                justify-content: center;
            }
            
            .header-bottom {
                display: none;
            }
            
            .hamburger {
                display: block;
            }
            
            .logo img {
                height: 60px;
            }
        }

        @media (max-width: 576px) {
            .language-selector {
                gap: 8px;
            }
            
            .social-links {
                gap: 8px;
            }
            
            .logo img {
                height: 50px;
            }
            
            .social-links span {
                display: none;
            }
        }

        /* Hamburger Animation */
        .hamburger.active .hamburger-line:nth-child(1) {
            transform: translateY(7px) rotate(45deg);
        }

        .hamburger.active .hamburger-line:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active .hamburger-line:nth-child(3) {
            transform: translateY(-7px) rotate(-45deg);
        }

/* Hero Section */
.hero-section {
    padding: 55px 0 80px;
    background-color: var(--section-bg);
    margin-top: 0;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-color);
}

.hero-subtitle {
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 20px;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.hero-image {
    flex: 1;
    max-width: 600px;
}

.hero-img {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: contain;
    position: relative;
    left: 20px;
}

/* Contact Options Section */
.contact-options-section {
    padding: 5px 0;
    background-color: #fff;
}

.contact-options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.contact-card {
    background: #fff;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 30px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

.contact-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.contact-card p {
    margin-bottom: 20px;
    color: #666;
}

.contact-details {
    text-align: center;
    margin-bottom: 25px;
    padding: 0 13px;
}

.contact-details p {
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.contact-details strong {
    color: var(--text-color);
}

.contact-btn {
    display: inline-block;
    padding: 12px 25px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    border: 2px solid var(--primary-color);
}

.contact-btn:hover {
    background-color: transparent;
    color: var(--primary-color);
}

/* Contact Form Section */
.contact-form-section {
    padding: 80px 0;
    background-color: var(--section-bg);
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 2.2rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-family: inherit;
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.submit-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
}

.submit-btn:hover {
    background: var(--secondary-color);
}
.phone-input-wrapper {
  display: flex;
  gap: 8px;
}

.country-code {
  width: 80px !important;
  flex-shrink: 0;
}

.phone-number {
  flex-grow: 1;
}

.form-group {
    flex: 1;
    margin-bottom: 20px;
}

.form-group.full-width {
    flex: 0 0 100%;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--secondary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(45, 121, 243, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.form-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
}

.submit-btn {
    padding: 15px 30px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.submit-btn:hover {
    background-color: var(--secondary-color);
}

.form-note {
    font-size: 0.9rem;
    color: #666;
}

/* Locations Section */
.locations-section {
    padding: 80px 0;
    background-color: #f9f9f9; /* Fallback if CSS variable not defined */
    background-color: var(--section-bg, #f9f9f9);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 2.2rem;
    color: #333; /* Fallback */
    color: var(--secondary-color, #333);
    margin-bottom: 15px;
    font-weight: 600;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
}

.locations-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.location-card {
    background: white;
    border-radius: 8px; /* Fallback */
    border-radius: var(--border-radius, 8px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1); /* Fallback */
    box-shadow: var(--box-shadow, 0 5px 15px rgba(0,0,0,0.1));
    overflow: hidden;
    transition: all 0.3s ease; /* Fallback */
    transition: var(--transition, all 0.3s ease);
    width: calc(50% - 15px);
    min-width: 300px;
}

.location-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.location-info {
    padding: 30px;
}

.location-info h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #333; /* Fallback */
    color: var(--secondary-color, #333);
    position: relative;
    padding-bottom: 10px;
}

.location-info h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background-color: #0066cc; /* Fallback */
    background-color: var(--primary-color, #0066cc);
}

.location-info p {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #555;
    line-height: 1.6;
    font-size: 1rem;
}

.location-info i {
    color: #0066cc; /* Fallback */
    color: var(--primary-color, #0066cc);
    width: 20px;
    text-align: center;
    margin-top: 3px; /* Better icon alignment */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .locations-section {
        padding: 60px 0;
    }
    
    .location-card {
        width: 100%;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .location-info {
        padding: 20px;
    }
    
    .location-info h3 {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }
    
    .location-info p {
        font-size: 0.9rem;
        gap: 8px;
    }
}

/* Footer */
.footer {
    background-color: var(--footer-bg);
    color: var(--text-color);
    padding: 50px 0 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-main {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 30px;
}

.footer-brand {
    flex: 1;
    min-width: 250px;
}

.footer-logo {
    height: 70px;
    width: auto;
    margin-bottom: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    mix-blend-mode: color-burn;
}

.footer-description {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
    text-align: center;
}

.footer-social {
    display: flex;
    justify-content: center;
}

.social-links {
    display: flex;
    gap: 10px;
    list-style: none;
    padding: 0;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: white;
    color: var(--text-color);
    transition: var(--transition);
    font-size: 14px;
}

.social-links a:hover {
    transform: translateY(-3px);
    color: white;
}

.social-links a:hover.facebook {
    background-color: #1877F2;
}

.social-links a:hover.twitter {
    background-color: #1DA1F2;
}

.social-links a:hover.instagram {
    background-color: #E4405F;
}

.social-links a:hover.whatsapp {
    background-color: #25D366;
    color: white;
}

.footer-links {
    flex: 1;
    display: flex;
    gap: 20px;
    min-width: 250px;
    justify-content: center;
}

.links-column {
    flex: 1;
    min-width: 120px;
    text-align: center;
}

.links-column h3 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.links-column ul {
    list-style: none;
    padding: 0;
}

.links-column li {
    margin-bottom: 8px;
}

.links-column a {
    text-decoration: none;
    color: var(--text-color);
    transition: var(--transition);
    font-size: 14px;
    display: inline-block;
}

.links-column a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer-contact-form {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.footer-contact-form h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-family: 'Poppins', sans-serif;
    transition: var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(45, 121, 243, 0.2);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.form-actions {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.submit-btn,
.reset-btn {
    padding: 12px 20px;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.submit-btn {
    background-color: var(--accent-color);
    color: white;
    flex: 2;
}

.submit-btn:hover {
    background-color: #e06b00;
}

.reset-btn {
    background-color: #ddd;
    color: var(--text-color);
    flex: 1;
}

.reset-btn:hover {
    background-color: #ccc;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.copyright {
    font-size: 14px;
    color: var(--text-color);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .locations-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        background-color: #fff;
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
        transition: var(--transition);
        z-index: 999;
        padding: 20px 0;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-links ul {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .hero-container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content {
        margin-bottom: 40px;
    }
    
    .hero-img {
        left: 0;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .footer-main {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-links {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        gap: 30px;
    }
    
    .footer-brand,
    .footer-contact-form {
        width: 100%;
        max-width: 400px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .form-container {
        padding: 30px 20px;
    }
    
    .locations-grid {
        grid-template-columns: 1fr;
    }
    
    .location-card {
        min-width: 100%;
        position: relative;
        left: 0%;
    }
    
    .footer-contact-form .form-actions {
        flex-direction: column;
    }
    
    .footer-contact-form .submit-btn,
    .footer-contact-form .reset-btn {
        width: 100%;
    }
}

/* Alert Styles */
.alert {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 15px 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    z-index: 1000;
    animation: slideIn 0.3s ease-out;
    max-width: 400px;
}

.alert-success {
    background: #4CAF50;
    color: white;
}

.alert-error {
    background: #f44336;
    color: white;
}

.alert-content {
    display: flex;
    align-items: center;
    gap: 10px;
}

.alert-content i {
    font-size: 20px;
}

.alert-content button {
    background: transparent;
    border: none;
    color: inherit;
    cursor: pointer;
    margin-left: auto;
}

@keyframes slideIn {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

/* Form Styles */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-family: inherit;
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.submit-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
}

.submit-btn:hover {
    background: var(--secondary-color);
}

/* scroll to up  */
        .scroll-to-top {
            position: fixed;
            bottom: 35px;
            right: 30px;
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #1f5ec5, #ba7cd2);
            color: white;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            z-index: 1000;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            transform: translateY(20px);
            border: none;
            outline: none;
        }
        
        .scroll-to-top.show {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        
        .scroll-to-top:hover {
            background: linear-gradient(135deg, #ba7cd2, #1f5ec5);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
            transform: scale(1.05) translateY(0);
        }
        
        .scroll-to-top:active {
            transform: scale(0.95) translateY(0);
        }
        
        .scroll-to-top::after {
            content: "↑";
            font-size: 28px;
            font-weight: bold;
            transition: transform 0.3s ease;
        }
        
        .scroll-to-top:hover::after {
            animation: bounce 0.8s infinite alternate;
        }
        
        .scroll-to-top .progress-circle {
            position: absolute;
            top: -5px;
            left: -5px;
            width: calc(100% + 10px);
            height: calc(100% + 10px);
            border: 3px solid rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            border-top-color: white;
            transform: rotate(0deg);
            transition: transform 0.3s ease;
        }
        
        /* Pulse animation */
        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(157, 80, 187, 0.7); }
            70% { box-shadow: 0 0 0 15px rgba(157, 80, 187, 0); }
            100% { box-shadow: 0 0 0 0 rgba(157, 80, 187, 0); }
        }
        
        /* Bounce animation */
        @keyframes bounce {
            0% { transform: translateY(0); }
            100% { transform: translateY(-5px); }
        }
        
        /* Tooltip */
        .scroll-to-top .tooltip {
            position: absolute;
            top: -70px;
            background: white;
            color: #1f5ec5;
            padding: 8px 12px;
            border-radius: 5px;
            font-size: 14px;
            font-weight: bold;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            white-space: nowrap;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
        }
        
        .scroll-to-top .tooltip::after {
            content: "";
            position: absolute;
            bottom: -8px;
            left: 50%;
            transform: translateX(-50%);
            border-width: 8px 8px 0;
            border-style: solid;
            border-color: white transparent transparent;
        }
        
        .scroll-to-top:hover .tooltip {
            opacity: 1;
            visibility: visible;
            top: -60px;
        }
        
       /* Responsive adjustments */
@media (max-width: 768px) {
    .scroll-to-top {
        width: 50px;
        height: 50px;
        bottom: 90px;
        right: 20px;
    }
    
    .scroll-to-top::after {
        font-size: 24px;
    }
    
    .scroll-to-top .tooltip {
        font-size: 12px;
        padding: 6px 10px;
        top: -45px;
    }
    
    .scroll-to-top:hover .tooltip {
        top: -50px;
    }
}

  /* Responsive adjustments */
@media (max-width: 768px) {
    .scroll-to-top {
        width: 50px;
        height: 50px;
        bottom: 90px;
        right: 20px;
    }
    
    .scroll-to-top::after {
        font-size: 24px;
    }
    
    .scroll-to-top .tooltip {
        font-size: 12px;
        padding: 6px 10px;
        top: -45px;
    }
    
    .scroll-to-top:hover .tooltip {
        top: -50px;
    }
}

.direct-contact {
        margin-top: 30px;
        text-align: center;
        width: 100%;
    }
    
    .direct-contact p {
        margin-bottom: 15px;
        color: #666;
        font-size: 16px;
    }
    
    .whatsapp-btn {
        display: inline-block;
        background-color: #25D366;
        color: white;
        padding: 7px 15px;
        border-radius: 5px;
        text-decoration: none;
        font-weight: 600;
        transition: all 0.3s ease;
        border: none;
        cursor: pointer;
        font-size: 16px;
    }
    
    .whatsapp-btn:hover {
        background-color: #128C7E;
        transform: translateY(-2px);
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    }
    
    .form-footer {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .submit-btn {
        width: 200px; /* Match width with WhatsApp button */
    }
    
    .form-note {
        text-align: center;
    }
