/* ============================================
   CUSTOM DECOR - STYLE.CSS
   Theme: Black & Yellow
   Author: Custom Decor
============================================ */

/* ============================
   ROOT VARIABLES
============================ */
:root {
    --primary-black: #0a0a0a;
    --secondary-black: #1a1a1a;
    --primary-yellow: #ffd700;
    --bright-yellow: #ffc107;
    --dark-yellow: #e6a800;
    --text-dark: #2c2c2c;
    --text-muted: #6c757d;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 5px 20px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 35px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 15px;
}

/* ============================
   GLOBAL STYLES
============================ */
* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
    background: var(--white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--primary-black);
    line-height: 1.3;
}

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

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

.text-warning {
    color: var(--primary-yellow) !important;
}

.section-padding {
    padding: 90px 0;
}

/* ============================
   COMMON BUTTONS
============================ */
.btn-yellow {
    background: var(--primary-yellow);
    color: var(--primary-black);
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 50px;
    border: 2px solid var(--primary-yellow);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.btn-yellow:hover {
    background: var(--primary-black);
    color: var(--primary-yellow);
    border-color: var(--primary-black);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.3);
}

.btn-outline-light:hover {
    color: var(--primary-black) !important;
}

/* ============================
   SECTION HEADING
============================ */
.section-heading {
    margin-bottom: 50px;
}

.section-tag {
    display: inline-block;
    color: var(--dark-yellow);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 12px;
    position: relative;
    padding-left: 50px;
}

.section-tag::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 40px;
    height: 2px;
    background: var(--primary-yellow);
}

.text-center .section-tag {
    padding-left: 0;
    padding: 0 50px;
}

.text-center .section-tag::before {
    left: 0;
}

.text-center .section-tag::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    width: 40px;
    height: 2px;
    background: var(--primary-yellow);
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 15px;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 16px;
    max-width: 700px;
    margin: 0 auto;
}

/* ============================
   TOP BAR
============================ */
.top-bar {
    background: var(--primary-black);
    color: #ddd;
    padding: 10px 0;
    font-size: 14px;
    border-bottom: 2px solid var(--primary-yellow);
}

.top-info {
    color: #ddd;
    margin-right: 25px;
    display: inline-block;
    font-size: 13px;
}

.top-info i {
    color: var(--primary-yellow);
    margin-right: 6px;
}

.top-info:hover {
    color: var(--primary-yellow);
}

.top-social a {
    color: #ddd;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    display: inline-block;
    margin-left: 5px;
    font-size: 13px;
    transition: var(--transition);
}

.top-social a:hover {
    background: var(--primary-yellow);
    color: var(--primary-black);
    transform: translateY(-3px);
}

/* ============================
   HEADER / NAVBAR
============================ */
.main-header {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    z-index: 1020;
}

.navbar {
    padding: 15px 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0;
}

.brand-mark {
    width: 48px;
    height: 48px;
    background: var(--primary-black);
    color: var(--primary-yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 20px;
    border: 2px solid var(--primary-yellow);
}

.brand-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 24px;
    color: var(--primary-black);
}

.toggler-icon {
    color: var(--primary-black);
    font-size: 24px;
}

.navbar-toggler {
    border: 2px solid var(--primary-yellow);
    padding: 6px 12px;
    border-radius: var(--radius-sm);
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-nav .nav-link {
    color: var(--primary-black);
    font-weight: 600;
    font-size: 15px;
    padding: 10px 18px !important;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--dark-yellow);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-yellow);
    transition: var(--transition);
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 50%;
}

.navbar-nav .btn-yellow::after {
    display: none;
}

/* ============================
   HERO CAROUSEL
============================ */
.hero-section {
    position: relative;
}

.hero-img {
    width: 100%;
    height: 650px;
    object-fit: cover;
}

.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.5) 60%, rgba(0, 0, 0, 0.3) 100%);
}

.carousel-caption {
    top: 50%;
    transform: translateY(-50%);
    bottom: auto;
    text-align: left;
    padding: 0;
    right: 0;
    left: 0;
}

.hero-content {
    max-width: 700px;
    animation: fadeInLeft 1s ease;
}

.hero-tag {
    display: inline-block;
    background: var(--primary-yellow);
    color: var(--primary-black);
    padding: 6px 18px;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 2px;
    margin-bottom: 20px;
    border-radius: 30px;
}

.hero-title {
    font-size: 64px;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.1;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 18px;
    color: #f0f0f0;
    margin-bottom: 35px;
    max-width: 600px;
    line-height: 1.6;
}

.hero-buttons .btn-outline-light {
    border: 2px solid var(--white);
    padding: 11px 30px;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.5px;
}

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

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--primary-yellow);
    opacity: 0.5;
    border: none;
    margin: 0 6px;
}

.carousel-indicators button.active {
    opacity: 1;
    width: 30px;
    border-radius: 10px;
}

.carousel-control-prev,
.carousel-control-next {
    width: 5%;
    opacity: 0.7;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
}

@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}

/* ============================
   ABOUT SECTION
============================ */
.about-section {
    background: var(--light-bg);
}

.about-image-wrap {
    position: relative;
    padding-right: 30px;
    padding-bottom: 30px;
}

.about-img-main {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 5px solid var(--white);
}

.about-experience {
    position: absolute;
    bottom: 0;
    right: 0;
    background: var(--primary-yellow);
    color: var(--primary-black);
    padding: 25px 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.about-experience h3 {
    font-size: 42px;
    font-weight: 900;
    margin: 0;
    color: var(--primary-black);
}

.about-experience p {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
}

.about-text {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 18px;
    line-height: 1.8;
}

.about-features {
    list-style: none;
    padding: 0;
    margin: 25px 0 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.about-features li {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 15px;
}

.about-features li i {
    color: var(--dark-yellow);
    margin-right: 8px;
}

/* ============================
   SERVICES SECTION
============================ */
.services-section {
    background: var(--white);
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid #f0f0f0;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-yellow);
}

.service-img {
    position: relative;
    overflow: hidden;
    /* height: 230px; */
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.service-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 45px;
    height: 45px;
    background: var(--primary-yellow);
    color: var(--primary-black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 16px;
    box-shadow: var(--shadow-sm);
}

.service-body {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-name {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--primary-black);
}

.service-content {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 20px;
    flex-grow: 1;
    line-height: 1.6;
}

.btn-call-now {
    background: var(--primary-black);
    color: var(--primary-yellow);
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 2px solid var(--primary-black);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    align-self: flex-start;
}

.btn-call-now:hover {
    background: var(--primary-yellow);
    color: var(--primary-black);
    border-color: var(--primary-yellow);
}

/* ============================
   WHY CHOOSE US
============================ */
.why-section {
    background: var(--light-bg);
}

.why-card {
    background: var(--white);
    padding: 35px 25px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-align: center;
    height: 100%;
    border-bottom: 4px solid transparent;
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-bottom-color: var(--primary-yellow);
}

.why-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-yellow), var(--dark-yellow));
    color: var(--primary-black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin: 0 auto 20px;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
    transition: var(--transition);
}

.why-card:hover .why-icon {
    transform: rotate(360deg);
}

.why-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary-black);
}

.why-card p {
    color: var(--text-muted);
    font-size: 14px;
    margin: 0;
    line-height: 1.7;
}

/* ============================
   COUNTER SECTION
============================ */
.counter-section {
    background: var(--primary-black);
    padding: 70px 0;
    position: relative;
    overflow: hidden;
}

.counter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(255, 215, 0, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 215, 0, 0.08) 0%, transparent 50%);
}

.counter-item {
    position: relative;
    padding: 20px;
}

.counter-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 215, 0, 0.15);
    color: var(--primary-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 15px;
    border: 2px solid var(--primary-yellow);
}

.counter-number {
    font-size: 48px;
    font-weight: 900;
    color: var(--primary-yellow);
    margin-bottom: 8px;
    font-family: 'Montserrat', sans-serif;
}

.counter-label {
    color: var(--white);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
    margin: 0;
}

/* ============================
   HOW IT WORKS
============================ */
.how-section {
    background: var(--white);
}

.step-card {
    background: var(--white);
    padding: 35px 25px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition);
    position: relative;
    height: 100%;
    border: 2px solid #f0f0f0;
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-yellow);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: var(--primary-black);
    color: var(--primary-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 16px;
    border: 3px solid var(--primary-yellow);
}

.step-icon {
    width: 80px;
    height: 80px;
    background: #fff8d6;
    color: var(--dark-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin: 25px auto 20px;
    transition: var(--transition);
}

.step-card:hover .step-icon {
    background: var(--primary-yellow);
    color: var(--primary-black);
}

.step-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.step-card p {
    color: var(--text-muted);
    font-size: 14px;
    margin: 0;
    line-height: 1.7;
}

/* ============================
   GALLERY SECTION
============================ */
.gallery-section {
    background: var(--light-bg);
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    aspect-ratio: 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(255, 215, 0, 0.4));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    color: var(--primary-yellow);
    font-size: 36px;
    margin-bottom: 10px;
    transform: scale(0);
    transition: var(--transition);
}

.gallery-overlay span {
    color: var(--white);
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transform: translateY(20px);
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay i {
    transform: scale(1);
}

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

/* ============================
   TESTIMONIAL SECTION
============================ */
.testimonial-section {
    background: var(--white);
}

.testimonial-card {
    background: var(--white);
    padding: 35px 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    position: relative;
    height: 100%;
    border: 1px solid #f0f0f0;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-yellow);
}

.quote-icon {
    position: absolute;
    top: 25px;
    right: 30px;
    color: var(--primary-yellow);
    font-size: 36px;
    opacity: 0.3;
}

.stars {
    color: var(--bright-yellow);
    margin-bottom: 15px;
    font-size: 14px;
}

.testimonial-text {
    color: var(--text-dark);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--primary-yellow);
    color: var(--primary-black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 16px;
}

.testimonial-author h5 {
    margin: 0 0 3px;
    font-size: 16px;
}

.testimonial-author small {
    color: var(--text-muted);
    font-size: 13px;
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.testimonial-btn {
    width: 45px;
    height: 45px;
    background: var(--primary-yellow);
    color: var(--primary-black);
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.testimonial-btn:hover {
    background: var(--primary-black);
    color: var(--primary-yellow);
}

/* ============================
   FAQ SECTION
============================ */
.faq-section {
    background: var(--light-bg);
}

.accordion-item {
    border: 2px solid #e9ecef;
    border-radius: var(--radius-md) !important;
    margin-bottom: 15px;
    overflow: hidden;
    transition: var(--transition);
}

.accordion-item:has(.accordion-button:not(.collapsed)) {
    border-color: var(--primary-yellow);
    box-shadow: var(--shadow-md);
}

.accordion-button {
    background: var(--white);
    color: var(--primary-black);
    font-weight: 600;
    font-size: 16px;
    padding: 18px 25px;
    border-radius: var(--radius-md) !important;
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    background: var(--primary-yellow);
    color: var(--primary-black);
}

.accordion-button:focus {
    box-shadow: none;
    border: none;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230a0a0a'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    padding: 20px 25px;
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.8;
    background: var(--white);
}

/* ============================
   CONTACT SECTION
============================ */
.contact-section {
    background: var(--white);
}

.contact-info-wrap {
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 100%;
}

.contact-info-card {
    background: var(--light-bg);
    padding: 25px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: flex-start;
    gap: 18px;
    transition: var(--transition);
    border-left: 4px solid var(--primary-yellow);
}

.contact-info-card:hover {
    background: var(--primary-black);
    transform: translateX(5px);
}

.contact-info-card:hover h4,
.contact-info-card:hover p,
.contact-info-card:hover a {
    color: var(--white);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-yellow);
    color: var(--primary-black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.contact-info-card h4 {
    font-size: 17px;
    margin-bottom: 6px;
    transition: var(--transition);
}

.contact-info-card p {
    color: var(--text-muted);
    margin: 0;
    font-size: 14px;
    line-height: 1.7;
    transition: var(--transition);
}

.contact-info-card a {
    color: var(--text-muted);
}

.contact-form-wrap {
    background: var(--light-bg);
    padding: 40px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    height: 100%;
    border-top: 4px solid var(--primary-yellow);
}

.contact-form-wrap h3 {
    font-size: 26px;
    margin-bottom: 8px;
}

.contact-form-wrap > p {
    color: var(--text-muted);
    margin-bottom: 25px;
    font-size: 14px;
}

.form-label {
    font-weight: 600;
    font-size: 14px;
    color: var(--primary-black);
    margin-bottom: 6px;
}

.form-control,
.form-select {
    padding: 11px 15px;
    border: 1.5px solid #e0e0e0;
    border-radius: var(--radius-sm);
    font-size: 14px;
    transition: var(--transition);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-yellow);
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.15);
}

/* ============================
   FOOTER
============================ */
.site-footer {
    background: var(--primary-black);
    color: #b8b8b8;
    border-top: 4px solid var(--primary-yellow);
	overflow-x: hidden;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-brand .brand-text {
    color: var(--white);
}

.footer-about {
    color: #b8b8b8;
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 25px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    font-size: 14px;
}

.footer-social a:hover {
    background: var(--primary-yellow);
    color: var(--primary-black);
    transform: translateY(-5px);
}

.footer-title {
    color: var(--white);
    font-size: 18px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-yellow);
}

.footer-links,
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #b8b8b8;
    font-size: 14px;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover {
    color: var(--primary-yellow);
    padding-left: 5px;
}

.footer-links a i {
    color: var(--primary-yellow);
    font-size: 12px;
}

.footer-contact li {
    margin-bottom: 14px;
    color: #b8b8b8;
    font-size: 14px;
    line-height: 1.7;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-contact li i {
    color: var(--primary-yellow);
    margin-top: 5px;
    flex-shrink: 0;
}

.footer-contact li a {
    color: #b8b8b8;
    transition: var(--transition);
}

.footer-contact li a:hover {
    color: var(--primary-yellow);
}

.footer-bottom {
    background: #000;
    padding: 18px 0;
    margin: 0 -12px;
    border-top: 1px solid #222;
}

.footer-bottom p {
    color: #888;
    font-size: 13px;
}

/* ============================
   FLOATING ICONS
============================ */
.float-whatsapp,
.float-call {
    position: fixed;
    bottom: 120px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 26px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3);
    z-index: 999;
    transition: var(--transition);
}

.float-whatsapp {
    left: 30px;
    background: #25d366;
    animation: pulse-green 2s infinite;
}

.float-call {
    right: 30px;
    background: var(--primary-yellow);
    color: var(--primary-black);
    animation: pulse-yellow 2s infinite;
}

.float-whatsapp:hover,
.float-call:hover {
    transform: scale(1.1);
    color: var(--white);
}

.float-call:hover {
    color: var(--primary-black);
}

@keyframes pulse-green {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@keyframes pulse-yellow {
    0% { box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(255, 215, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 215, 0, 0); }
}

/* ============================
   BACK TO TOP
============================ */
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: var(--primary-black);
    color: var(--primary-yellow);
    border: 2px solid var(--primary-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 998;
    font-size: 16px;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary-yellow);
    color: var(--primary-black);
}
.cu-lg-wdth{
	width:220px;
}

/* ============================
   RESPONSIVE - TABLET
============================ */
@media (max-width: 991px) {
    .section-padding { padding: 70px 0; }
    .section-title { font-size: 34px; }

    .hero-img { height: 550px; }
    .hero-title { font-size: 46px; }
    .hero-subtitle { font-size: 16px; }

    .navbar {
        padding: 12px 0;
    }

    .navbar-collapse {
        background: var(--white);
        padding: 20px;
        margin-top: 15px;
        border-radius: var(--radius-md);
        box-shadow: var(--shadow-md);
    }

    .navbar-nav .nav-link {
        padding: 10px 0 !important;
    }

    .navbar-nav .nav-link::after {
        display: none;
    }

    .about-image-wrap {
        padding-right: 20px;
        padding-bottom: 20px;
        margin-bottom: 30px;
    }

    .about-experience {
        padding: 18px 22px;
    }

    .about-experience h3 {
        font-size: 32px;
    }

    .counter-number { font-size: 38px; }

    .contact-form-wrap { padding: 30px 25px; }
}

/* ============================
   RESPONSIVE - MOBILE
============================ */
@media (max-width: 767px) {
    .section-padding { padding: 60px 0; overflow-x: hidden;}

    .section-tag {
        padding: 0 35px;
        font-size: 12px;
        letter-spacing: 3px;
    }

    .text-center .section-tag::before,
    .text-center .section-tag::after {
        width: 25px;
    }

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

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

    .section-heading {
        margin-bottom: 35px;
    }

    /* Top bar */
    .top-bar {
        text-align: center;
    }

    .top-info {
        margin-right: 15px;
        font-size: 12px;
    }

    /* Header */
    .brand-mark {
        width: 42px;
        height: 42px;
        font-size: 18px;
    }

    .brand-text {
        font-size: 20px;
    }

    /* Hero */
    .hero-img {
        height: 480px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 14px;
        margin-bottom: 25px;
    }

    .hero-tag {
        font-size: 11px;
        padding: 5px 14px;
    }

    .hero-buttons .btn {
        font-size: 13px;
        padding: 10px 22px;
        margin-bottom: 10px;
    }

    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }

    /* About */
    .about-features {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .about-image-wrap {
        padding-right: 15px;
        padding-bottom: 15px;
    }

    .about-experience {
        padding: 15px 20px;
    }

    .about-experience h3 {
        font-size: 28px;
    }

    .about-experience p {
        font-size: 12px;
    }

    /* Counter */
    .counter-section {
        padding: 50px 0;
    }

    .counter-icon {
        width: 55px;
        height: 55px;
        font-size: 22px;
    }

    .counter-number {
        font-size: 32px;
    }

    .counter-label {
        font-size: 12px;
        letter-spacing: 1px;
    }

    /* Step Cards */
    .step-card {
        padding: 30px 20px;
    }

    /* Gallery - 2 columns on mobile */
    .gallery-section .col-6 {
        padding: 8px;
    }

    .gallery-overlay i {
        font-size: 24px;
    }

    .gallery-overlay span {
        font-size: 12px;
    }

    /* Testimonials */
    .testimonial-card {
        padding: 25px 20px;
    }

    /* FAQ */
    .accordion-button {
        font-size: 14px;
        padding: 15px 18px;
    }

    .accordion-body {
        font-size: 14px;
        padding: 15px 18px;
    }

    /* Contact */
    .contact-form-wrap {
        padding: 25px 20px;
    }

    .contact-form-wrap h3 {
        font-size: 22px;
    }

    /* Footer */
    .footer-bottom {
        text-align: center;
    }

    .footer-bottom p {
        font-size: 12px;
        margin-bottom: 5px;
    }

    /* Floating Icons */
    .float-whatsapp,
    .float-call {
        width: 52px;
        height: 52px;
        font-size: 22px;
        bottom: 120px;
    }

    .float-whatsapp {
        left: 20px;
    }

    .float-call {
        right: 20px;
    }

    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .hero-img {
        height: 420px;
    }

    .hero-title {
        font-size: 26px;
    }

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

    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin: 0 0 10px;
    }
}
