/* fitouts.css - Fitouts Page Styles */

/* ===== 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);
    opacity: 1;
    transition: opacity 0.3s ease;
    overflow-x: hidden;
}

/* ===== NAVBAR STYLES ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    /* background: var(--primary-white); */
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    padding: 1rem 0;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
    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;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background: var(--primary-black);
    transition: var(--transition);
}

.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: 30px;
    right: 30px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.float-wa, .float-call {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-white);
    font-size: 1.8rem;
    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: 70vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    padding: 120px 5% 50px;
    gap: 4rem;
    background: linear-gradient(135deg, #fff 0%, #f8f8f8 100%);
}

.hero-content {
    flex: 1;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero-content h1 span {
    border-bottom: 4px solid var(--primary-black);
    display: inline-block;
    padding-bottom: 5px;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--gray-dark);
    margin-bottom: 2rem;
    max-width: 600px;
    line-height: 1.8;
}

.hero-image {
    flex: 1;
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    box-shadow: var(--shadow-xl);
}

.hero-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 30px;
    transition: var(--transition);
    display: block;
}

.hero-image:hover img {
    transform: scale(1.05);
}

/* ===== SERVICES GRID SECTION ===== */
.services-grid-section {
    padding: 100px 5%;
    background: var(--off-white);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.section-header h2 span {
    border-bottom: 3px solid var(--primary-black);
    padding-bottom: 5px;
}

.section-header p {
    color: var(--gray-dark);
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.services-grid-8 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

/* 3D Card Styles */
.service-card-3d {
    perspective: 1500px;
    height: 400px;
    cursor: pointer;
}

.card-3d-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
    border-radius: 20px;
}

.service-card-3d:hover .card-3d-inner {
    transform: rotateY(180deg);
}

.card-3d-front, .card-3d-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.card-3d-front {
    /* background: var(--primary-white); */
    display: flex;
    flex-direction: column;
    border: 1px solid var(--gray-light);
}

.card-3d-front img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: var(--transition);
}

.card-3d-front:hover img {
    transform: scale(1.1);
}

.card-3d-front h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 1.2rem 1rem 0.5rem;
    color: var(--secondary-black);
}

.card-3d-front p {
    color: var(--gray-dark);
    margin: 0 1rem 1rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.card-3d-back {
    background: var(--primary-black);
    color: var(--primary-white);
    transform: rotateY(180deg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    text-align: center;
}

.card-3d-back h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-white);
}

.card-3d-back p {
    margin-bottom: 1.8rem;
    line-height: 1.7;
    font-size: 0.95rem;
    opacity: 0.9;
}

.btn-card {
    /* background: var(--primary-white); */
    color: var(--primary-black);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    display: inline-block;
    margin-bottom: 1.2rem;
    border: 2px solid var(--primary-white);
}

.btn-card:hover {
    background: transparent;
    color: var(--primary-white);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255,255,255,0.2);
}

.card-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.btn-wa, .btn-call {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-white);
    font-size: 1.3rem;
    transition: var(--transition);
    text-decoration: none;
}

.btn-wa {
    background: #25D366;
}

.btn-call {
    background: var(--accent);
}

.btn-wa:hover, .btn-call:hover {
    transform: scale(1.15) translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

/* ===== WHY CHOOSE US SECTION ===== */
.why-choose {
    padding: 100px 5%;
    /* background: var(--primary-white); */
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.feature-item {
    text-align: center;
    padding: 2.5rem 2rem;
    background: var(--off-white);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: var(--transition);
    border: 1px solid var(--gray-light);
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border-color: transparent;
}

.feature-item i {
    font-size: 3rem;
    color: var(--primary-black);
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.feature-item:hover i {
    transform: scale(1.1);
}

.feature-item h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: var(--secondary-black);
}

.feature-item p {
    color: var(--gray-dark);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: var(--primary-black);
    color: var(--primary-white);
    text-align: center;
    padding: 100px 5%;
    position: relative;
    overflow: hidden;
}

.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;
}

.cta-content h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.cta-content p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap; /* Added for responsiveness */
}

.btn {
    padding: 1rem 2.8rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    display: inline-block;
    border: none;
    cursor: pointer;
}

.btn-whatsapp {
    background: #25D366;
    color: var(--primary-white);
}

.btn-whatsapp:hover {
    background: #20b358;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
}

.btn-call {
    background: transparent;
    color: var(--primary-white);
    border: 2px solid var(--primary-white);
}

.btn-call:hover {
    background: var(--primary-white);
    color: var(--primary-black) !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.2);
}

/* Fix for Call Now button text color on click/focus */
.btn-call:focus, 
.btn-call:active {
    color: var(--primary-white) !important;
    background: transparent !important;
    outline: none;
}

.btn-call:hover:active {
    background: rgba(255, 255, 255, 0.9) !important;
    color: var(--primary-black) !important;
}

/* ===== FOOTER STYLES ===== */
.footer {
    background: var(--secondary-black);
    color: var(--primary-white);
    padding: 60px 5% 20px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo {
    height: 40px;
    width: auto;
    margin-bottom: 1rem;
}

.footer-section p {
    color: var(--gray-medium);
    line-height: 1.7;
    font-size: 0.95rem;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    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 {
    transform: translateY(-3px);
    opacity: 0.9;
}

.social-links a.facebook {
    background: #1877F2;
    color: #ffffff;
}

.social-links a.instagram {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285AEB 90%);
    color: #ffffff;
}

.social-links i {
    font-size: 1.2rem;
}

.footer-section h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
    color: var(--primary-white);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: var(--gray-medium);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
}

.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.95rem;
    margin-bottom: 0.8rem;
}

.contact-info i {
    width: 20px;
    color: var(--primary-white);
}

.contact-info a {
    color: var(--gray-medium);
    text-decoration: none;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: var(--gray-medium);
    font-size: 0.9rem;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .page-hero {
        flex-direction: column;
        text-align: center;
        padding-top: 100px;
    }
    .services-grid-8 {
        grid-template-columns: repeat(2, 1fr);
    }
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* ===== PROJECT GALLERY STYLES ===== */
.project-gallery {
    padding: 100px 5%;
    /* background: var(--primary-white); */
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    height: 350px;
    box-shadow: var(--shadow-lg);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
    display: block;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    .gallery-item {
        height: 250px;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}


/* Stats Section */
.stats-section {
    padding: 80px 5%;
    background: var(--off-white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.stat-item {
    padding: 20px;
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary-black);
    line-height: 1.2;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--gray-dark);
    font-weight: 500;
}

@media (max-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    .stat-number {
        font-size: 2.2rem;
    }
}

/* 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;
}

/* Google Reviews Section */
.reviews-section {
    padding: 80px 5%;
    background: var(--off-white);
    overflow: hidden;
}

.google-branding {
    text-align: center;
    margin-bottom: 40px;
}

.google-logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.google-logo-text span:nth-child(1) { color: #4285F4; }
.google-logo-text span:nth-child(2) { color: #EA4335; }
.google-logo-text span:nth-child(3) { color: #FBBC05; }
.google-logo-text span:nth-child(4) { color: #4285F4; }
.google-logo-text span:nth-child(5) { color: #34A853; }
.google-logo-text span:nth-child(6) { color: #EA4335; }

.google-rating-summary {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.google-rating-summary .stars {
    color: #FBBC05;
}

.reviews-slider-container {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
}

.reviews-track {
    display: flex;
    gap: 25px;
    transition: transform 0.5s ease-in-out;
}

.review-card {
    min-width: 350px;
    /* background: var(--primary-white); */
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-light);
    position: relative;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.reviewer-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.reviewer-info h4 {
    font-size: 1rem;
    margin: 0;
    color: var(--primary-black);
}

.reviewer-info span {
    font-size: 0.8rem;
    color: var(--gray-medium);
}

.review-stars {
    color: #FBBC05;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.review-text {
    font-size: 0.95rem;
    color: var(--gray-dark);
    line-height: 1.6;
    font-style: italic;
}

.google-icon-badge {
    position: absolute;
    top: 30px;
    right: 30px;
    color: #4285F4;
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .review-card {
        min-width: 300px;
    }
}

/* Animation for Google Reviews */
@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-375px * 5)); }
}

.reviews-track {
    display: flex;
    gap: 25px;
    animation: scroll 30s linear infinite;
    width: max-content;
}

.reviews-track:hover {
    animation-play-state: paused;
}

/* Adjust card min-width to match calculation */
.review-card {
    min-width: 350px;
    max-width: 350px;
}
.google-icon-badge {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 20px;
    height: 20px;
}

/* 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%;
    }
}

/* ===== 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: #d4af37; /* Gold accent */
    font-size: 1rem;
}

.sub-nav-container a:hover {
    background: #f8f8f8;
    color: #d4af37;
    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 #d4af37 !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: #d4af37 !important; /* Ensure icons stay gold */
}

.sub-nav-container a:hover {
    background: #1a1a1a !important;
    color: #d4af37 !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: #d4af37 !important;
}

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