/* contact.css - FIXED VERSION - Cards Full Width on Mobile */

/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-black: #000000;
    --secondary-black: #1a1a1a;
    --primary-white: #ffffff;
    --off-white: #f8f8f8;
    --gray-light: #e5e5e5;
    --gray-medium: #9ca3af;
    --gray-dark: #4b5563;
    --accent: #333333;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px rgba(0,0,0,0.1);
    --shadow-xl: 0 20px 25px rgba(0,0,0,0.1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--secondary-black);
    background-color: var(--primary-white);
    
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

/* ===== NAVBAR STYLES ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    /* background: var(--primary-white); */
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    padding: 0.8rem 0;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 45px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--secondary-black);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding: 0.5rem 0;
    transition: var(--transition);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-black);
    transition: var(--transition);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
    z-index: 1001;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--primary-black);
    transition: var(--transition);
    border-radius: 3px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ===== FLOATING BUTTONS ===== */
.floating-buttons {
    position: fixed;
    bottom: 25px;
    left: 25px;
    right: 25px;
    z-index: 2000;
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
    pointer-events: none;
}

.float-wa, .float-call {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-white);
    font-size: 1.6rem;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    text-decoration: none;
}

.float-wa {
    background: #25D366;
}

.float-call {
    background: var(--primary-black);
}

.float-wa:hover, .float-call:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: var(--shadow-xl);
}

/* ===== PAGE HERO SECTION ===== */
.page-hero {
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    padding: 100px 5% 50px;
    gap: 3rem;
    background: linear-gradient(135deg, #fff 0%, #f8f8f8 100%);
    width: 100%;
}

.hero-content {
    flex: 1;
}

.hero-content h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.2rem;
    letter-spacing: -0.02em;
}

.hero-content h1 span {
    display: inline-block;
}

.hero-content p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--gray-dark);
    margin-bottom: 1.8rem;
    max-width: 600px;
    line-height: 1.7;
}

.hero-image {
    flex: 1;
    position: relative;
    overflow: hidden;
    border-radius: 25px;
    box-shadow: var(--shadow-xl);
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 25px;
    transition: var(--transition);
    display: block;
}

.hero-image:hover img {
    transform: scale(1.05);
}

/* ===== CONTACT INFO SECTION ===== */
.contact-info-section {
    padding: 70px 5%;
    background: var(--off-white);
    width: 100%;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    width: 100%;
}

.info-card {
    /* background: var(--primary-white); */
    padding: 2rem 1.5rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid var(--gray-light);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.info-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.info-card i {
    font-size: 2.5rem;
    color: var(--primary-black);
    margin-bottom: 1.2rem;
    transition: var(--transition);
}

.info-card:hover i {
    transform: scale(1.1);
}

.info-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
    color: var(--secondary-black);
}

.info-card p {
    color: var(--gray-dark);
    margin-bottom: 0.3rem;
    font-size: 0.95rem;
}

.info-card a {
    color: var(--primary-black);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    display: inline-block;
    margin-top: 0.5rem;
    word-break: break-word;
}

.info-card a:hover {
    color: var(--primary-gold, #0054a6);
    transform: translateY(-2px);
}

.form-header-premium {
    margin-bottom: 2rem;
    text-align: center;
}

.form-address-block {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.form-address-block i {
    font-size: 1.2rem;
    color: var(--primary-black);
}

.form-address-block p {
    font-size: 0.95rem;
    font-weight: 500;
    margin: 0;
    color: var(--secondary-black);
}

/* ===== CONTACT FORM SECTION ===== */
.contact-form-section {
    padding: 80px 5%;
    background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
    width: 100%;
}

.contact-form {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: var(--transition);
}

.contact-form:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

.form-map-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
    width: 100%;
}

.contact-form h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 1.8rem;
    letter-spacing: -0.02em;
}

.contact-form h2 span {
    display: inline-block;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 2px solid var(--gray-light);
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    transition: var(--transition);
    background: var(--off-white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-black);
    /* background: var(--primary-white); */
    box-shadow: 0 0 0 4px rgba(0,0,0,0.05);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%234b5563' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1.2rem center;
    background-size: 1rem;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn {
    padding: 1.1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    display: inline-block;
    border: none;
    cursor: pointer;
    background: linear-gradient(135deg, #000 0%, #333 100%);
    color: var(--primary-white);
    width: 100%;
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: 0.5s;
    z-index: -1;
}

.btn:hover::after {
    left: 100%;
}

.btn:hover {
    background: #000;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

.form-message {
    margin-top: 1.2rem;
    padding: 0.8rem;
    border-radius: 8px;
    display: none;
}

.form-message.success {
    display: block;
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    display: block;
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.map-container {
    height: 450px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: var(--primary-black);
    color: var(--primary-white);
    text-align: center;
    padding: 80px 5%;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0) 100%);
    pointer-events: none;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    padding: 0 1rem;
}

.cta-content h2 {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.cta-content p {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-outline-light {
    background: transparent;
    color: var(--primary-white);
    border: 2px solid var(--primary-white);
    padding: 0.9rem 2.2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    display: inline-block;
}

.btn-outline-light:hover {
    /* background: var(--primary-white); */
    color: var(--primary-black);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255,255,255,0.2);
}

/* ===== FOOTER STYLES ===== */
.footer {
    background: var(--secondary-black);
    color: var(--primary-white);
    padding: 50px 5% 20px;
    width: 100%;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-logo {
    height: 35px;
    width: auto;
    margin-bottom: 0.8rem;
}

.footer-section p {
    color: var(--gray-medium);
    line-height: 1.6;
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    gap: 0.8rem;
}

.social-links a {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-links a:hover {
    /* background: var(--primary-white); */
    transform: translateY(-3px);
}

.social-links img {
    width: 18px;
    height: 18px;
    filter: brightness(0) invert(1);
}

.social-links a:hover img {
    filter: brightness(0);
}

.footer-section h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.6rem;
}

.footer-section ul li a {
    color: var(--gray-medium);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.9rem;
}

.footer-section ul li a:hover {
    color: var(--primary-white);
    padding-left: 5px;
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--gray-medium);
    font-size: 0.9rem;
}

.contact-info img {
    width: 18px;
    height: 18px;
    filter: brightness(0) invert(1);
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: var(--gray-medium);
    font-size: 0.85rem;
}

/* ===== RESPONSIVE DESIGN - FIXED FOR MOBILE ===== */

/* Tablet Landscape */
@media (max-width: 1024px) {
    .page-hero {
        flex-direction: column;
        text-align: center;
        padding: 100px 5% 50px;
        gap: 1.5rem;
    }
    
    .hero-content p {
        margin: 0 auto 1.5rem;
    }
    
    .hero-image {
        width: 100%;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .form-map-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .cta-content h2 {
        font-size: 2.5rem;
    }
}

/* Tablet Portrait */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        /* background: var(--primary-white); */
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding: 2rem 1.5rem;
        transition: left 0.3s ease;
        gap: 1.2rem;
        box-shadow: var(--shadow-lg);
        z-index: 999;
        overflow-y: auto;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu a {
        font-size: 1.1rem;
        padding: 0.8rem 0;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    /* ===== CARDS FULL WIDTH ON MOBILE - BORDER SE ATTACHED ===== */
    .info-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
        padding: 0 !important;
        margin: 0 !important;
        width: 100% !important;
    }
    
    .info-card {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        border-radius: 12px !important;
        padding: 1.8rem !important;
    }
    
    .contact-form h2 {
        font-size: 2rem;
        text-align: center;
    }
    
    .form-map-grid {
        gap: 1.5rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .btn, .btn-outline-light {
        width: 100%;
    }
    
    .floating-buttons {
    position: fixed;
    bottom: 25px;
    left: 25px;
    right: 25px;
    z-index: 2000;
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
    pointer-events: none;
}
    
    .float-wa, .float-call {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
    }
    
    .footer-content {
        grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
        text-align: center;
        gap: 1.8rem;
    }
    
    .footer-section {
        align-items: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .contact-info li {
        justify-content: center;
    }
    
    .map-container {
        height: 350px;
    }
}

/* Mobile Landscape */
@media (max-width: 640px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .info-card {
        padding: 1.6rem !important;
    }
    
    .info-card i {
        font-size: 2.2rem;
    }
    
    .info-card h3 {
        font-size: 1.2rem;
    }
    
    .info-card p {
        font-size: 0.9rem;
    }
    
    .info-card a {
        font-size: 0.95rem;
    }
}

/* Mobile Portrait */
@media (max-width: 480px) {
    .logo img {
        height: 35px;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .hero-content p {
        font-size: 0.95rem;
    }
    
    .contact-form h2 {
        font-size: 1.6rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.9rem 1rem;
        font-size: 0.9rem;
    }
    
    .btn {
        padding: 0.9rem 2rem;
        font-size: 0.95rem;
    }
    
    .cta-content h2 {
        font-size: 1.6rem;
    }
    
    .cta-content p {
        font-size: 0.95rem;
    }
    
    .footer-section h3 {
        font-size: 0.95rem;
    }
    
    .footer-section p,
    .footer-section ul li a,
    .contact-info li {
        font-size: 0.85rem;
    }
    
    .info-card {
        padding: 1.5rem !important;
    }
    
    .info-card i {
        font-size: 2rem;
    }
    
    .map-container {
        height: 300px;
    }
}

/* Small Mobile */
@media (max-width: 360px) {
    .hero-content h1 {
        font-size: 1.6rem;
    }
    
    .float-wa, .float-call {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    .info-card {
        padding: 1.2rem !important;
    }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Apply animations */
.page-hero {
    animation: fadeInUp 1s ease-out;
}

.contact-info-section {
    animation: fadeInUp 1s ease-out;
}

.contact-form-section {
    animation: fadeInUp 1s ease-out;
}

.cta-section {
    animation: fadeInUp 1s ease-out;
}

/* ===== UTILITY CLASSES ===== */
::selection {
    background: var(--primary-black);
    color: var(--primary-white);
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--off-white);
}

::-webkit-scrollbar-thumb {
    background: var(--gray-dark);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-black);
}
.social-links {
        display: flex;
        gap: 12px;
        margin-top: 15px;
    }
    
    .social-icon {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
        color: white;
        font-size: 1.2rem;
        text-decoration: none;
    }
    
    /* Facebook */
    .social-icon.facebook {
        background: #1877f2;
    }
    
    .social-icon.facebook:hover {
        background: #0d5ab9;
        transform: translateY(-5px);
        box-shadow: 0 5px 15px rgba(24, 119, 242, 0.4);
    }
    
    /* Instagram */
    .social-icon.instagram {
        background: linear-gradient(45deg, #f09433, #d62976, #962fbf, #4f5bd5);
    }
    
    .social-icon.instagram:hover {
        transform: translateY(-5px);
        box-shadow: 0 5px 15px rgba(225, 48, 108, 0.4);
    }
    
    /* TikTok */
    .social-icon.tiktok {
        background: #000000;
        position: relative;
    }
    
    .social-icon.tiktok:hover {
        background: #1a1a1a;
        transform: translateY(-5px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
    }
    
    /* LinkedIn */
    .social-icon.linkedin {
        background: #0a66c2;
    }
    
    .social-icon.linkedin:hover {
        background: #004182;
        transform: translateY(-5px);
        box-shadow: 0 5px 15px rgba(10, 102, 194, 0.4);
    }
    
    /* Mobile responsive */
    @media (max-width: 768px) {
        .social-links {
            justify-content: center;
        }
    }

/* FAQ Section */
.faq-section {
    padding: 80px 5%;
    /* background: var(--primary-white); */
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid var(--gray-light);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-question {
    padding: 20px 25px;
    /* background: var(--primary-white); */
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--off-white);
}

.faq-question i {
    transition: var(--transition);
    color: var(--primary-black);
}

.faq-item.active {
    border-color: var(--primary-black);
    box-shadow: var(--shadow-md);
}

.faq-item.active .faq-question {
    background: var(--off-white);
    border-bottom: 1px solid var(--gray-light);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    /* background: var(--primary-white); */
}

.faq-item.active .faq-answer {
    padding: 20px 25px;
    max-height: 500px;
}

.faq-answer p {
    color: var(--gray-dark);
    line-height: 1.6;
    margin: 0;
}

/* Navbar Dropdown Styles */
.nav-menu li.dropdown {
    position: relative;
}

.dropdown-toggle i {
    font-size: 0.8rem;
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    /* background: var(--primary-white); */
    min-width: 220px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-radius: 12px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    list-style: none;
    border: 1px solid var(--gray-light);
}

.nav-menu li.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav-menu li.dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu li {
    width: 100%;
    margin: 0 !important;
    padding: 0 !important;
}

.dropdown-menu li a {
    padding: 12px 25px !important;
    display: block !important;
    color: var(--primary-black) !important;
    font-size: 0.9rem !important;
    font-weight: 500 !important;
    text-align: left !important;
    transition: all 0.3s ease !important;
}

.dropdown-menu li a:after {
    display: none !important; /* Remove any underline effect from main nav */
}

.dropdown-menu li a:hover {
    background: var(--off-white) !important;
    color: var(--primary-black) !important;
    padding-left: 30px !important;
}

/* Mobile Dropdown Fix */
@media (max-width: 768px) {
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: transparent;
        border: none;
        padding: 0 0 0 20px;
        display: none;
        width: 100%;
    }
    
    .nav-menu li.dropdown.active .dropdown-menu {
        display: block;
    }
    
    .dropdown-toggle {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }
}

/* CTA Button Styles */
.btn-whatsapp { background: #25D366 !important; color: #ffffff !important; border: none !important; }
.btn-whatsapp:hover { background: #20b358 !important; transform: translateY(-3px); box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3); }
.btn-call { background: transparent !important; color: #ffffff !important; border: 2px solid #ffffff !important; }
.btn-call:hover { background: #ffffff !important; color: #000000 !important; transform: translateY(-3px); }
.btn-call:focus, .btn-call:active { color: #ffffff !important; background: transparent !important; outline: none; box-shadow: none !important; }
.btn-call:hover:active { background: rgba(255, 255, 255, 0.9) !important; color: #000000 !important; }
.cta-buttons { display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; margin-top: 2rem; }
@media (max-width: 768px) { .cta-buttons { flex-direction: column; align-items: center; } .cta-buttons .btn { width: 100%; max-width: 300px; } }
/* ===== GLOBAL FIXES FOR SOCIAL & CTA ===== */
.facebook { background: #1877F2 !important; color: #ffffff !important; display: inline-flex !important; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 50%; transition: 0.3s; text-decoration: none; }
.instagram { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285AEB 90%) !important; color: #ffffff !important; display: inline-flex !important; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 50%; transition: 0.3s; text-decoration: none; }
.facebook:hover, .instagram:hover { transform: translateY(-3px); opacity: 0.8; color: #ffffff !important; }

.btn-whatsapp { background: #25D366 !important; color: #ffffff !important; border: none !important; padding: 0.9rem 2rem; border-radius: 50px; font-weight: 600; text-decoration: none; display: inline-flex; align-items: center; gap: 10px; transition: 0.3s; }
.btn-whatsapp:hover { background: #20b358 !important; transform: translateY(-3px); box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3); color: #ffffff !important; }

.btn-call { background: transparent !important; color: #ffffff !important; border: 2px solid #ffffff !important; padding: 0.9rem 2rem; border-radius: 50px; font-weight: 600; text-decoration: none; display: inline-flex; align-items: center; gap: 10px; transition: 0.3s; }
.btn-call:hover { background: #ffffff !important; color: #000000 !important; transform: translateY(-3px); }
.btn-call:focus, .btn-call:active { color: #ffffff !important; background: transparent !important; outline: none !important; box-shadow: none !important; }
.btn-call:hover:active { background: rgba(255, 255, 255, 0.9) !important; color: #000000 !important; }

.cta-buttons { display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; margin-top: 2rem; width: 100%; }
@media (max-width: 768px) { 
    .cta-buttons { flex-direction: column !important; align-items: center !important; } 
    .cta-buttons .btn { width: 100% !important; max-width: 300px; justify-content: center; } 
}

/* ===== FINAL OVERRIDE FOR CTA BUTTONS (Fixing overlapping/circle issues) ===== */
.cta-section .btn-whatsapp, 
.cta-section .btn-call {
    width: auto !important;
    height: auto !important;
    min-width: 180px !important;
    padding: 12px 30px !important;
    border-radius: 50px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    white-space: nowrap !important;
    font-size: 1.1rem !important;
    line-height: 1.2 !important;
    text-transform: none !important;
    margin: 5px !important;
}

.cta-section .btn-call i, 
.cta-section .btn-whatsapp i {
    margin-right: 10px !important;
    font-size: 1.2rem !important;
}

@media (max-width: 768px) {
    .cta-section .btn-whatsapp, 
    .cta-section .btn-call {
        width: 100% !important;
        max-width: 300px !important;
        margin: 10px 0 !important;
    }
}

/* ===== EMERGENCY FIX: DO NOT REMOVE ===== */
/* This fixes the conflict where Call Now button became a small circle */
.cta-section .cta-buttons .btn-call, 
.cta-section .cta-buttons .btn-whatsapp {
    width: auto !important;
    height: auto !important;
    min-width: 200px !important;
    max-width: none !important;
    aspect-ratio: auto !important;
    border-radius: 50px !important;
    padding: 15px 35px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 12px !important;
    font-size: 1.1rem !important;
    line-height: 1 !important;
    box-sizing: border-box !important;
}

.cta-section .cta-buttons .btn-call i, 
.cta-section .cta-buttons .btn-whatsapp i {
    width: auto !important;
    height: auto !important;
    margin: 0 !important;
    font-size: 1.2rem !important;
}

@media (max-width: 768px) {
    .cta-section .cta-buttons .btn-call, 
    .cta-section .cta-buttons .btn-whatsapp {
        width: 100% !important;
        max-width: 320px !important;
        min-width: unset !important;
    }
}

/* ===== SERVICES SUB-NAVBAR (Desktop Mega Menu) ===== */
.services-sub-navbar {
    position: fixed;
    top: 70px; /* Adjust based on navbar height */
    left: 0;
    width: 100%;
    background: #ffffff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    z-index: 1500;
    display: none;
    padding: 15px 0;
    border-bottom: 2px solid #f0f0f0;
    animation: navSlideDown 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.services-sub-navbar.active {
    display: block;
}

.sub-nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
    display: flex;
    justify-content: center;
    gap: 40px;
}

.sub-nav-container a {
    text-decoration: none;
    color: #000000;
    font-weight: 600;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 8px 15px;
    border-radius: 8px;
}

.sub-nav-container a i {
    color: #0054a6; /* Gold accent */
    font-size: 1rem;
}

.sub-nav-container a:hover {
    background: #f8f8f8;
    color: #0054a6;
    transform: translateY(-2px);
}

@keyframes navSlideDown {
    from { transform: translateY(-100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* Ensure main navbar stays on top */
.navbar {
    z-index: 2001 !important;
}

@media (max-width: 1024px) {
    .services-sub-navbar {
        display: none !important; /* Hide sub-nav on mobile, use mobile menu instead */
    }
}

/* Disable old dropdown on desktop to use new sub-navbar */
@media (min-width: 1025px) {
    .dropdown-menu {
        display: none !important;
    }
    .dropdown-toggle i {
        transition: transform 0.3s ease;
    }
    .dropdown-toggle.active i {
        transform: rotate(180deg);
    }
}

/* ===== PREMIUM DARK SUB-NAVBAR ENHANCEMENT ===== */
.services-sub-navbar {
    background: #0a0a0a !important; /* Deep dark background */
    border-bottom: 2px solid #0054a6 !important; /* Gold bottom accent */
    box-shadow: 0 10px 30px rgba(0,0,0,0.3) !important;
}

.sub-nav-container a {
    color: #ffffff !important; /* White text for contrast */
    font-size: 0.8rem !important;
    padding: 10px 20px !important;
}

.sub-nav-container a i {
    color: #0054a6 !important; /* Ensure icons stay gold */
}

.sub-nav-container a:hover {
    background: #1a1a1a !important;
    color: #0054a6 !important;
    border-radius: 4px !important;
}

/* Adjust top position if needed - ensuring it fits perfectly */
.services-sub-navbar {
    top: 68px !important; 
}

/* Navbar Background Fix */
.navbar {
    background: #ffffff !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1) !important;
}

.nav-menu a {
    color: #000000 !important;
}

.nav-menu a:hover, .nav-menu a.active {
    color: #0054a6 !important;
}

/* Sub-navbar alignment fix */
.services-sub-navbar {
    top: 70px !important;
}

/* Hero Address Block */
.hero-address {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-top: 1.5rem;
    font-weight: 600;
    font-size: 1.1rem;
    color: #000;
    background: rgba(0,0,0,0.05);
    padding: 0.8rem 1.2rem;
    border-radius: 50px;
    width: fit-content;
}

.hero-address i {
    color: #000;
    font-size: 1.2rem;
}

.floating-buttons a { pointer-events: auto; }





