/* ============================ */
/*:root (Theme Variables)   */
/* ============================ */

:root {
    /* ==========================
       THEME COLORS & VARIABLES
       ========================== */
    --color-red-primary: #e10a09;
    /* (Red Primary/Dark) */
    --color-orange-secondary: #fb8101;
    /* (Orange Secondary) */
    --color-white: #FFFFFF;
    --color-dark-text: #0D0D0D;
    /* (Dark Text) */
    --color-grey-body: #718096;
    /* For body copy/subtle text */

    /* GLOBAL SPACING */
    --max-content-width: 1200px;
    --max-navbar-width: 1350px;
    --navbar-height: 85px;
}

/* ============================ */
/* Reset & Base Styles          */
/* ============================ */

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

html,
body {
    height: 100%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Unified container (single source of truth) */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center {
    text-align: center;
}

.hidden {
    display: none;
}


/* ============================ */
/* HERO SECTION            */
/* ============================ */
.hero-section {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        /* Pink gradient overlay changed to Red/Orange overlay */
        linear-gradient(135deg, #ff000045, #0000004b),
        url('https://images.unsplash.com/photo-1629909613654-28e377c37b09?w=1400&h=400&fit=crop');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    text-align: center;
    color: #ffffff !important;
}

.hero-content h1 {
    font-size: 64px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 18px;
    opacity: 0.9;
}

.breadcrumb a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: opacity .3s ease;
}

/* ============================ */
/* SECTION HEADER          */
/* ============================ */
.section-header {
    max-width: 800px;
    margin: 0 auto 80px;
    text-align: center;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    /* Changed gradient to use new primary red variable */
    background: linear-gradient(90deg, var(--color-red-primary), var(--color-orange-secondary));
    color: var(--white);
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 40px auto 24px;
}

.section-title {
    font-size: 52px;
    font-weight: 700;
    color: #fb8101;
    line-height: 1.2;
    margin-bottom: 24px;
}

.section-description {
    font-size: 18px;
    color: #000000;
    /* Used new grey variable */
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto 50px;
}

.services-section {
    padding: 60px 20px 40px;
    background: #fdfdfd;
}

/* ---- FIXED SERVICE CARDS ---- */
/* ============================
   SERVICES GRID – FIXED WIDTH
   ============================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* 4 equal cards */
    gap: 28px;
    /* perfect spacing */
    width: 100%;
    max-width: 1350px;
    /* Best fit for 8 cards (4 per row) */
    margin: 0 auto;
    align-items: stretch;
}

/* Tablet – 2 per row */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile – 1 per row */
@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}

/* ============================
   SERVICE CARD
   ============================ */
.service-card {
    background: var(--white);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid rgba(224, 33, 36, 0.04);
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 0;
}

/* ============================
   HEADER
   ============================ */
.card-header {
    padding: 18px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.service-icon-small {
    width: 48px;
    height: 48px;
    background: linear-gradient(90deg, var(--color-red-primary), var(--color-orange-secondary));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-icon-small i {
    font-size: 18px;
    color:#ffffff;
}

.card-header h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

/* ============================
   IMAGE
   ============================ */
.card-image {
    height: 170px;
    overflow: hidden;
    margin: 0 15px;
    border-radius: 10px;
    flex-shrink: 0;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .card-image img {
    transform: scale(1.03);
}

/* ============================
   CONTENT
   ============================ */
.card-content {
    padding: 15px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-content p {
    font-size: 14px;
    color: var(--color-grey-body);
    line-height: 1.5;
    margin-bottom:0 !important;
    flex-grow: 1;
}

/* ============================
   FEATURES TAGS
   ============================ */
.card-features {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 12px;
    margin-top: 5px;
}

.card-features span {
    background: var(--light-pink);
    color: #ffffff;
    padding: 5px 19px;
    border-radius: 18px;
    font-size: 12px;
    font-weight: 500;
    background-color: lightsalmon;
}

/* ============================
   BOTTOM BUTTON
   ============================ */
.card-bottom {
    margin-top: auto;
    padding: 15px 20px 20px;
    display: flex;
    justify-content: center;
}

.know-more-btn {
    font-size: 14px;
    font-weight: 600;
    color: red;
    background: var(--primary-light);
    padding: 8px 20px;
    border-radius: 6px;
    border: 1px solid red;
    text-decoration: none;
    transition: 0.3s ease;
    display: inline-block;
}

.know-more-btn:hover {
    background: linear-gradient(90deg, var(--color-red-primary), var(--color-orange-secondary));
    color: #fff;
    box-shadow: 0 4px 10px rgba(44, 62, 80, 0.2);
}

/* ===== Responsive ===== */
@media (max-width: 1200px) {
    .section-title {
        font-size: 46px;
    }
}

@media (max-width: 992px) {
    .section-title {
        font-size: 40px;
    }

    .services-grid {
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 34px;
    }

    .section-description {
        font-size: 16px;
        margin-bottom: -30px;
    }

    .card-image {
        height: 200px;
        margin: 0 15px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 28px;
    }

    .section-description {
        font-size: 14px;
    }

    .card-image {
        height: 180px;
        margin: 0 10px;
    }

    .card-content p {
        font-size: 13px;
    }
}

/* ============================ */
/* PRICING SECTION         */
/* ============================ */
/* PRICING SECTION */
.pricing-section {
    padding: 60px 20px 10px !important;
    background: var(--white);
}

/* Center the whole header section */
.pricing-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Badge */
.section-badge {
    display: inline-block;
    padding: 6px 15px;
    /* Hardcoded pink changed to primary red */
    background: linear-gradient(90deg, var(--color-red-primary), var(--color-orange-secondary));
    color: white;
    border-radius: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

/* Heading + paragraph */
.pricing-info {
    width: 100%;
    max-width: 700px;
    text-align: center;
    margin-bottom: 40px;
    color: #fb8101;
}

.pricing-info h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
}

.pricing-info p {
    font-size: 16px;
    color: #000000;
    /* Used new grey variable */
}

/* ⭐ MAKE CARDS SIDE-BY-SIDE */
.pricing-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 35px;
    max-width: 1200px;
    margin: 0 auto;
}

/* CARD STYLING */
.price-card {
    /* Hardcoded pink changed to primary red */
    background-color: var(--primary);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    /* Hardcoded pink border color changed to use new primary variable (with low opacity) */
    border: 1px solid rgba(224, 33, 36, 0.04);
    width: 300px;
    transition: 0.3s ease;
}

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

.price-image {
    width: 100%;
    height: 120px;
    overflow: hidden;
}

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

.price-content {
    padding: 25px 20px 30px;
}

.price {
    font-size: 32px;
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
    text-align: center;
}

.price-content h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    /* Used new dark text variable */
    margin-bottom: 15px;
    text-align: center;
}

/* Bullet points */
.price-content ul {
    list-style: none;
    padding-left: 20px;
}

.price-content li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: var(--text-dark);
    /* Used new dark text variable */
}

.price-content li i {
    color: white;
    font-size: 14px;
}

/* CALL FOR APPOINTMENT BUTTON */
.call-appointment-btn {
    /* Hardcoded pink changed to primary red */
    background: linear-gradient(90deg, var(--color-red-primary), var(--color-orange-secondary));
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: 0.3s ease;
    margin: 20px auto 40px auto;
    /* top 20px, bottom 40px, centered horizontally */
    text-align: center;
}

.call-appointment-btn:hover {
    /* Hardcoded pink hover color changed to a dark red */
    background-color: var(--color-red-primary);
}


/* ============================ */
/* RESPONSIVE              */
/* ============================ */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

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

    .pricing-cards {
        gap: 15px;
    }
}

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

    .pricing-cards {
        flex-direction: column;
        gap: 20px;
    }

    .contact-info {
        flex-direction: column;
        gap: 10px;
    }
}

/* ============================ */
/* CTA SECTION              */
/* ============================ */

.cta-section {
    /* Changed gradient to use new primary red/orange variables */
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    padding: 80px 0;
    color: var(--white);
}

.cta-content {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 40px;
}

.cta-text h3 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.2;
}

.cta-text p {
    font-size: 18px;
    opacity: 0.95;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    align-items: center;
}

.cta-btn {
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all .3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.cta-btn.primary {
    background: var(--white);
    color: var(--primary);
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.12);
}

.cta-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 255, 255, 0.18);
}

.cta-btn.secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-actions {
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
}

.cta-phone {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
}



/* ========== BACK TO TOP & FLOATING ACTION BUTTONS ========== */
.back-to-top-wrap {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1100;
}

#backToTopBtn {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1E88E5;
    color: #fff;
    font-size: 22px;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

#backToTopBtn:hover {
    filter: brightness(0.95);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
    transform: translateY(-4px);
}

#backToTopBtn.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.floating-social-container {
    position: fixed;
    bottom: 110px;
    right: 30px;
    left: auto;
    z-index: 1201;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 14px;
}

.floating-social-menu {
    display: flex;
    flex-direction: column;
    gap: 14px;
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
}

/* Individual Social Buttons */
.floating-social-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    font-size: 24px;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    opacity: 1;
    transform: scale(1);
}

/* Individual Button Colors */
.btn-call {
    background: #1E88E5;
}

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

.floating-social-btn[aria-label="instagram"],
.floating-social-btn[data-tooltip="instagram"] {
    background: linear-gradient(45deg, #feda75 0%, #fa7e1e 25%, #d62976 50%, #962fbf 75%, #4f5bd5 100%);
    color: #ffffff;
}

.btn-facebook {
    background: #1877F2;
}

.btn-youtube {
    background: #FF0000;
}

/* Hover Effects */
.floating-social-btn:hover {
    transform: scale(1.15);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.5);
}

.floating-social-btn i {
    transition: transform 0.3s ease;
}

.floating-social-btn:hover i {
    transform: rotate(360deg);
}








/* ============================ */
/* ANIMATIONS              */
/* ============================ */

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all .6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all .6s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all .6s ease;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.9);
    transition: all .6s ease;
}

.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

@keyframes shimmer {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

/* ============================ */
/* UTILITIES               */
/* ============================ */

/* Loading shimmer */
.loading {
    position: relative;
    overflow: hidden;
}

.loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    /* Pink gradient changed to a Red/Orange gradient */
    background: linear-gradient(90deg,
            rgba(224, 33, 36, 0.06),
            rgba(244, 140, 6, 0.06),
            rgba(224, 33, 36, 0.06));
    animation: shimmer 1.5s infinite;
}

.loading-sm {
    height: 20px;
    border-radius: 4px;
}

.loading-md {
    height: 32px;
    border-radius: 6px;
}

.loading-lg {
    height: 48px;
    border-radius: 8px;
}

/* Scroll to top button */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all .3s ease;
    z-index: 1000;
    /* Hardcoded pink shadow changed to a red shadow */
    box-shadow: 0 4px 20px rgba(224, 33, 36, 0.12);
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-2px);
    /* Hardcoded pink shadow changed to a red shadow */
    box-shadow: 0 6px 25px rgba(224, 33, 36, 0.16);
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    /* Hardcoded pink track changed to use new light pink (light orange/peach) variable */
    background: var(--light-pink);
}

::-webkit-scrollbar-thumb {
    /* Hardcoded pink thumb changed to a red with opacity */
    background: rgba(224, 33, 36, 0.6);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    /* Hardcoded pink hover thumb changed to a red with opacity */
    background: rgba(224, 33, 36, 0.8);
}

/* Selection highlight */
::selection {
    /* Hardcoded pink selection changed to a red/orange tint */
    background: rgba(224, 33, 36, 0.14);
    color: var(--text-dark);
}

::-moz-selection {
    /* Hardcoded pink selection changed to a red/orange tint */
    background: rgba(224, 33, 36, 0.14);
    color: var(--text-dark);
}

/* ============================ */
/* RESPONSIVE MEDIA QUERIES */
/* ============================ */

@media (max-width: 1200px) {
    .container {
        padding: 0 30px;
    }

    .hero-content h1 {
        font-size: 56px;
    }

    .section-title {
        font-size: 48px;
    }
}

@media (max-width: 992px) {
    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        right: 0;
        background: white;
        width: 100%;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
        padding: 20px 0;
        z-index: 999;
    }

    .nav-menu.active {
        display: flex;
    }

    .hero-section {
        height: 320px;
    }

    .hero-content h1 {
        font-size: 48px;
    }
}

@media (max-width: 768px) {
    .top-info {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .hero-section {
        height: 280px;
    }

    .hero-content h1 {
        font-size: 36px;
    }
}

@media (max-width: 480px) {
    .hero-section {
        height: 240px;
        padding: 0 10px;
    }

    .hero-content h1 {
        font-size: 24px;
    }
}


.floating-social-btn .fa-brands{
    color: white;
}