/* -------------------------------------------------------------------------- */
/*                               DESIGN SYSTEM                                */
/* -------------------------------------------------------------------------- */

:root {
    --primary: #000000;
    /* Pure Black */
    --primary-dark: #111111;
    --secondary: #333333;
    --accent: #FFB800;
    /* Keeping yellow for stars/ratings as per image */
    --white: #ffffff;
    --light-gray: #f4f4f4;
    --dark-navy: #1a1a1a;
    --text-main: #000000;
    --text-muted: #666666;
    --bg-light: #ffffff;
    --bg-white: #ffffff;
    --glass-bg: rgba(255, 255, 255, 1);
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 10px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
    --border-radius: 8px;
    /* Sharper edges for B&W theme */
}

/* -------------------------------------------------------------------------- */
/*                                   GLOBALS                                  */
/* -------------------------------------------------------------------------- */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
.logo {
    font-family: 'Outfit', sans-serif;
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(0, 123, 255, 0.1);
    color: var(--primary);
    font-weight: 600;
    font-size: 0.85rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
}

/* -------------------------------------------------------------------------- */
/*                                   TOP BAR                                  */
/* -------------------------------------------------------------------------- */

.top-bar {
    background: #f8f9fa;
    border-bottom: 1px solid #eee;
    padding: 0.5rem 0;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.top-bar-container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 2rem;
    padding-top: 5px;
    padding-bottom: 5px;
}

.top-contact {
    display: flex;
    gap: 1.5rem;
}

.top-contact a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.top-contact i {
    color: var(--text-muted);
}

/* -------------------------------------------------------------------------- */
/*                                   NAVBAR                                   */
/* -------------------------------------------------------------------------- */

.navbar {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: var(--white);
    transition: var(--transition);
}

.navbar-container {
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    width: 70px;
    height: 70px;
    overflow: hidden;
}

.logo-icon img {
    width: 150%;
    height: 150%;
    object-fit: cover;
}

.logo span span {
    color: var(--primary);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-links a {
    font-weight: 500;
    font-size: 1rem;
    color: var(--text-main);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.btn-nav-whatsapp {
    background: var(--dark-navy);
    color: var(--white) !important;
    padding: 0.6rem 1.2rem;
    border-radius: 6px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.btn-nav-whatsapp i {
    font-size: 1.1rem;
}

.btn-nav-whatsapp:hover {
    background: #000;
    transform: translateY(-2px);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btn-icon {
    width: 45px;
    height: 45px;
    background: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.25rem;
}

.burger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.burger span {
    width: 30px;
    height: 3px;
    background: var(--text-main);
    border-radius: 2px;
    transition: var(--transition);
}

/* -------------------------------------------------------------------------- */
/*                                    HERO                                    */
/* -------------------------------------------------------------------------- */

.hero {
    position: relative;
    padding: 100px 0 150px;
    background: var(--white);
    color: var(--text-main);
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg-graphics {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

/* Shape Keyframe Animations */
@keyframes floatUp {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-25px); }
}

@keyframes floatDown {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(25px); }
}

@keyframes rotateSlow {
    from { transform: rotate(45deg); }
    to { transform: rotate(405deg); }
}

@keyframes rotateReverse {
    from { transform: rotate(45deg); }
    to { transform: rotate(-315deg); }
}

@keyframes pulseFade {
    0%, 100% { opacity: 0.4; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.05); }
}

@keyframes spiralSpin {
    0% { transform: rotate(0deg) scale(1); opacity: 0.3; }
    50% { transform: rotate(180deg) scale(1.1); opacity: 0.5; }
    100% { transform: rotate(360deg) scale(1); opacity: 0.3; }
}

.shape-spiral {
    position: absolute;
    top: -50px;
    left: -150px;
    width: 500px;
    opacity: 0.4;
    animation: spiralSpin 20s linear infinite;
    transform-origin: center center;
}

.shape-circle {
    position: absolute;
    border-radius: 50%;
}

.shape-1 {
    width: 800px;
    height: 800px;
    background: linear-gradient(135deg, rgba(235, 235, 235, 0.6) 0%, rgba(210, 210, 210, 0.3) 100%);
    bottom: -200px;
    right: -100px;
    animation: floatUp 8s ease-in-out infinite;
}

.shape-2 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, rgba(245, 245, 245, 0.8) 0%, rgba(225, 225, 225, 0.5) 100%);
    bottom: -50px;
    right: 150px;
    animation: floatDown 6s ease-in-out infinite;
}

.shape-rect {
    position: absolute;
}

.shape-3 {
    width: 600px;
    height: 600px;
    background: var(--dark-navy);
    bottom: -300px;
    right: -200px;
    opacity: 0.9;
    animation: rotateSlow 25s linear infinite;
    transform-origin: center center;
}

.shape-4 {
    width: 300px;
    height: 300px;
    background: rgba(10, 25, 47, 0.05);
    bottom: 100px;
    right: 0%;
    animation: rotateReverse 18s linear infinite;
    transform-origin: center center;
}

.hero-content {
    position: relative;
    z-index: 2;
}

/* Hero Text Animations */
@keyframes heroSlideUp {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroFadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

@keyframes textShimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

.hero-text-area {
    max-width: 800px;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 3rem;
    color: #1a1a1a;
    opacity: 0;
    animation: heroSlideUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.2s forwards;
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
    opacity: 0;
    animation: heroSlideUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.6s forwards;
}

.btn-dark-whatsapp {
    background: var(--dark-navy);
    color: var(--white) !important;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
}

.btn-light-gray {
    background: #e9ecef;
    color: var(--text-main) !important;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 1rem;
}

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

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

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

.btn-outline:hover {
    background: var(--white);
    color: var(--primary);
}

.hero-stats {
    display: flex;
    gap: 3rem;
}

.stat-item strong {
    display: block;
    font-size: 2.5rem;
    font-family: 'Outfit';
    color: var(--secondary);
}

.stat-item span {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* -------------------------------------------------------------------------- */
/*                                  SERVICES                                  */
/* -------------------------------------------------------------------------- */

.services {
    padding-top: 0;
}

.services-dark-bg {
    background: #000000;
    padding: 80px 0 100px;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #fff;
}

.section-header p {
    color: rgba(255, 255, 255, 0.7);
}

.section-header h2 span {
    color: var(--accent);
}

/* Services V2 Styling */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.service-v2-card {
    background: #1a1a1a;
    /* Lighter black / Charcoal */
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 3rem 1.5rem 2.5rem;
    border-radius: 16px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: var(--white);
    /* overflow: hidden; Removed to allow badge to overlap top */
}

.service-v2-card:hover {
    transform: translateY(-8px);
    border-color: var(--white);
    background: #0a0a0a;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.svc-number {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #ffffff;
    color: #000000;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1rem;
    font-weight: 800;
    font-family: 'Outfit';
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.svc-icon {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: var(--white);
    transition: transform 0.3s ease;
}

.service-v2-card:hover .svc-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-v2-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.4;
    margin: 0;
}

.services-footer {
    display: flex;
    justify-content: center;
    margin-top: 4rem;
}

.btn-light-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 1rem 3rem;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-light-outline:hover {
    background: var(--white);
    color: #000000;
    border-color: var(--white);
}

/* Animation for revealing services */
@keyframes fadeInUpSvc {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.extra-svc.reveal {
    display: flex !important;
    animation: fadeInUpSvc 0.6s forwards;
}

/* -------------------------------------------------------------------------- */
/*                                    ABOUT                                   */
/* -------------------------------------------------------------------------- */

.about {
    padding: 100px 0;
    background: var(--bg-white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image img {
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.sub-title {
    color: var(--primary);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 1.5rem;
    display: block;
    margin-bottom: 1rem;
    font-family: 'Outfit', sans-serif;
}

.about-content h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.about-content h2 span {
    color: var(--primary);
}

.about-content p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.features-list {
    margin-bottom: 2.5rem;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.features-list i {
    color: #4CAF50;
    font-size: 1.5rem;
}

/* -------------------------------------------------------------------------- */
/*                               SUCCESS NUMBERS                              */
/* -------------------------------------------------------------------------- */

.success-numbers {
    padding: 80px 0;
    background: #f8f9fa;
    text-align: center;
}

.success-header {
    margin-bottom: 50px;
}

.success-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.numbers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.number-card {
    background: var(--white);
    padding: 40px 20px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.number-card:hover {
    transform: translateY(-5px);
}

.num-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    color: var(--primary);
}

.counter,
.counter-float {
    font-size: 3.5rem;
    font-weight: 800;
    font-family: 'Outfit';
    margin: 0;
    line-height: 1;
}

.num-wrapper .plus {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent);
}

.number-card p {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-main);
    margin: 0;
}

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

/* -------------------------------------------------------------------------- */
/*                                   REVIEWS                                  */
/* -------------------------------------------------------------------------- */

.reviews {
    padding: 120px 0;
    background: #1a1a1a;
    /* Dark background as per image */
    color: var(--white);
    overflow: hidden;
}

.reviews-grid-main {
    display: grid;
    grid-template-columns: 1.2fr 1.5fr;
    gap: 4rem;
    align-items: center;
}

.reviews-left h2 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 2rem;
}

.reviews-rating {
    margin-bottom: 2rem;
}

.reviews-rating p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
}

.reviews-rating span {
    color: var(--accent);
    font-weight: 700;
}

.avatar-stack {
    display: flex;
    align-items: center;
}

.avatar-stack img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 3px solid #1a1a1a;
    margin-left: -15px;
    object-fit: cover;
}

.avatar-stack img:first-child {
    margin-left: 0;
}

/* Slider implementation */
.reviews-right {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.slider-container {
    overflow: hidden;
    width: 100%;
}

.slider-track {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.5s ease;
}

.review-card-google {
    flex: 0 0 320px;
    flex-shrink: 0;
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    position: relative;
}

.card-header {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-bottom: 1.5rem;
}

.user-img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--white);
    overflow: hidden;
}

.user-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.user-meta h4 {
    font-size: 0.95rem;
    margin-bottom: 0px;
}

.user-meta span {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.card-content {
    flex-grow: 1;
    font-size: 0.9rem;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.9);
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.5rem;
}

.stars-small {
    color: var(--accent);
    display: flex;
    gap: 3px;
    font-size: 0.9rem;
}

.google-icon {
    width: 24px;
    height: 24px;
}

/* Navigation Buttons */
.slider-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--white);
    color: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    border: none;
    transition: var(--transition);
}

.slider-btn:hover {
    transform: scale(1.1);
}

/* Pagination Dots */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 3rem;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
}

.dot.active {
    background: var(--white);
    width: 20px;
    border-radius: 10px;
}

/* -------------------------------------------------------------------------- */
/*                                   CONTACT                                  */
/* -------------------------------------------------------------------------- */

.contact {
    padding: 100px 0;
}

.contact-card {
    background: var(--bg-white);
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.contact-info {
    background: var(--primary);
    color: var(--white);
    padding: 4rem;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.contact-info h2 span {
    color: var(--secondary);
}

.info-items {
    margin-top: 3rem;
}

.info-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    align-items: center;
}

.info-item i {
    font-size: 2rem;
    background: rgba(255, 255, 255, 0.1);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.info-item h4 {
    margin-bottom: 0.25rem;
    color: var(--secondary);
}

.contact-form {
    padding: 4rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border-radius: 10px;
    border: 1px solid #ddd;
    font-family: inherit;
    font-size: 1rem;
    background: var(--bg-light);
}

.form-group textarea {
    height: 120px;
    resize: none;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

/* -------------------------------------------------------------------------- */
/*                                   FOOTER                                   */
/* -------------------------------------------------------------------------- */

.footer {
    background: #0A0A0A;
    color: var(--white);
    padding: 80px 0 40px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 4rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 60px;
}

.footer-brand .logo {
    margin-bottom: 1.5rem;
}

.footer-brand p {
    color: #888;
    max-width: 300px;
}

.footer-links h4,
.footer-social h4 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.footer-links a {
    display: block;
    color: #888;
    margin-bottom: 0.75rem;
}

.footer-links a:hover {
    color: var(--white);
}

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

.social-icons a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.25rem;
}

.social-icons a:hover {
    background: var(--primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    color: #555;
    font-size: 0.9rem;
}

/* -------------------------------------------------------------------------- */
/*                                 MOBILE CTA                                 */
/* -------------------------------------------------------------------------- */

.mobile-cta {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    display: none;
    gap: 10px;
    z-index: 999;
}

.mobile-cta .btn {
    flex: 1;
    padding: 0.75rem;
    border-radius: 50px;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background: var(--white);
    color: var(--text-main);
}

/* -------------------------------------------------------------------------- */
/*                                RESPONSIVE                                  */
/* -------------------------------------------------------------------------- */

@media (max-width: 1024px) {
    .hero h1 {
        font-size: 3rem;
    }

    .hero-stats {
        gap: 1.5rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .contact-card {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }

    .nav-links {
        display: none;
    }

    .burger {
        display: flex;
    }

    .hero {
        padding: 60px 0;
        text-align: left;
        background: linear-gradient(180deg, #ffffff 0%, #f9f9f9 100%);
    }

    .logo {
        flex-direction: row;
        align-items: center;
        text-align: left;
    }
    .logo span {
        display: flex;
        flex-direction: column;
        line-height: 1.1;
    }
    .logo span span {
        display: inline;
    }
    .hero-bg-graphics {
        display: block;
        opacity: 0.6;
    }

    .shape-1 {
        width: 300px;
        height: 300px;
        bottom: -50px;
        right: -80px;
    }

    .shape-2 {
        display: none;
    }

    .shape-3 {
        width: 250px;
        height: 250px;
        bottom: -100px;
        right: -100px;
        opacity: 0.15;
    }

    .shape-spiral {
        width: 250px;
        top: -60px;
        left: -80px;
        opacity: 0.2;
    }

    .hero::before {
        content: '';
        position: absolute;
        top: -50px;
        right: -50px;
        width: 200px;
        height: 200px;
        background: radial-gradient(circle, rgba(255, 184, 0, 0.08) 0%, transparent 70%);
        border-radius: 50%;
        z-index: 1;
        pointer-events: none;
    }

    .hero h1 {
        font-size: 2.2rem;
        margin-top: 0;
        line-height: 1.2;
    }

    .logo {
        font-size: 1.3rem;
        gap: 0.5rem;
    }

    .logo-icon {
        width: 60px;
        height: 60px;
    }

    .hero-btns {
        justify-content: flex-start;
        flex-direction: row;
        width: 100%;
        gap: 15px;
        flex-wrap: wrap;
    }

    .hero-btns .btn {
        width: auto;
        justify-content: center;
    }

    .hero-stats {
        justify-content: flex-start;
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .about-content h2 {
        font-size: 2.2rem;
    }

    .success-header h2 {
        font-size: 2rem;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .footer-brand p {
        margin: 0 auto;
        text-align: center;
    }

    .social-icons {
        justify-content: center;
    }

    .mobile-cta {
        display: flex;
    }

    .services {
        padding-top: 60px;
    }

    .services-dark-bg {
        padding: 60px 0;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .success-numbers {
        padding: 60px 0;
    }

    .counter,
    .counter-float {
        font-size: 2.5rem;
    }

    .num-wrapper .plus {
        font-size: 1.8rem;
    }

    .btn-light-outline,
    .btn-dark-outline {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .reviews {
        padding: 60px 0;
    }

    /* Contact Card Mobile Fixes */
    .contact-info,
    .contact-form {
        padding: 2rem 1.5rem;
        text-align: center;
    }

    .info-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .info-item i {
        margin: 0 auto;
    }

    .contact-card {
        width: 100%;
        margin: 0 auto;
    }

    /* Hide navbar contact button on mobile */
    .header-actions .btn-nav-whatsapp {
        display: none;
    }

    /* Review Section Mobile Redesign */
    .reviews {
        padding: 50px 0;
    }

    .reviews-grid-main {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: left;
        padding: 0 1rem;
    }

    .reviews-left {
        padding-bottom: 0;
    }

    .reviews-left h2 {
        font-size: 1.75rem;
        line-height: 1.3;
        margin-bottom: 0.75rem;
        white-space: normal;
        word-wrap: break-word;
        overflow-wrap: break-word;
        max-width: 100%;
    }

    .reviews-left h2 .break-word {
        display: block;
    }

    .reviews-rating {
        margin-bottom: 1.25rem;
    }

    .reviews-rating p {
        font-size: 0.95rem;
    }

    .card-content p {
        white-space: normal;
        word-wrap: break-word;
        overflow-wrap: break-word;
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .avatar-stack {
        justify-content: flex-start;
    }

    /* Slider redesign for mobile */
    .reviews-right {
        width: 100%;
        position: relative;
        padding: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .slider-container {
        width: 100%;
        overflow: hidden;
        border-radius: 12px;
    }

    .slider-track {
        display: flex;
        gap: 0;
        transition: transform 0.4s ease;
    }

    .review-card-google {
        flex: 0 0 100%;
        width: 100%;
        box-sizing: border-box;
        padding: 1.5rem;
        min-height: 200px;
        border-radius: 12px;
        word-wrap: break-word;
        overflow-wrap: break-word;
        white-space: normal;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .slider-btn {
        display: none;
    }
}

/* Extra small phones */
@media (max-width: 480px) {
    .reviews-grid-main {
        padding: 0 0.5rem;
    }

    .review-card-google {
        padding: 1.25rem;
        min-height: 180px;
    }

    .reviews-left h2 {
        font-size: 1.5rem;
    }

    .logo {
        font-size: 1.1rem;
    }

    .logo-icon {
        width: 50px;
        height: 50px;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .section-header h2,
    .about-content h2,
    .success-header h2 {
        font-size: 1.6rem;
    }

    .sub-title {
        font-size: 1.1rem;
    }

    p {
        font-size: 1rem;
    }

    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
    }

    .container {
        padding: 0 1rem;
    }

    .logo {
        font-size: 1.1rem;
    }

    .logo-icon {
        width: 50px;
        height: 50px;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .section-header h2,
    .about-content h2,
    .success-header h2 {
        font-size: 1.6rem;
    }

    .sub-title {
        font-size: 1.1rem;
    }
}

/* -------------------------------------------------------------------------- */
/*                                   GALLERY                                  */
/* -------------------------------------------------------------------------- */

.gallery {
    padding: 100px 0;
    background: var(--bg-light);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

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

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
    color: var(--white);
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
    transform: translateY(0);
}

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

.gallery-overlay h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-family: 'Outfit';
}

.gallery-overlay span {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent);
}

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

    /* Show Speciality overlay permanently on mobile */
    .gallery-overlay {
        opacity: 1;
        transform: translateY(0);
        background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.3) 100%);
    }

    /* Disable hover animation on mobile */
    .gallery-item:hover img {
        transform: scale(1);
    }
}

@media (max-width: 480px) {
    .gallery-item {
        height: 250px;
    }

    .gallery-overlay {
        padding: 1.2rem;
    }

    .gallery-overlay h4 {
        font-size: 1.2rem;
    }
}


