/* =================================
   SUNRISE SERVICE - CUSTOM STYLES
   Unique Professional Design
   ================================= */

/* ===== ROOT VARIABLES ===== */
:root {
    --primary: #f5b301;
    --primary-dark: #c98c00;
    --primary-light: #ffc933;
    --accent: #1a2a3a;
    --accent-dark: #0f1a26;
    --dark: #1a2a3a;
    --gray: #6c757d;
    --light-gray: #fff9e6;
    --white: #ffffff;
    --black: #000000;
    --shadow-sm: 0 2px 8px rgba(245, 179, 1, 0.15);
    --shadow-md: 0 6px 20px rgba(245, 179, 1, 0.20);
    --shadow-lg: 0 15px 40px rgba(245, 179, 1, 0.25);
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --font-primary: 'Poppins', sans-serif;
    --font-heading: 'Playfair Display', serif;
}

html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

* {
    box-sizing: border-box;
}

.container,
.container-fluid {
    overflow: hidden;
}

img,
video {
    max-width: 100%;
    height: auto;
}

/* ===== GLOBAL RESET ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.7;
    color: var(--dark);
    background: var(--white);
    overflow-x: hidden;
}

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

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

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--dark);
    line-height: 1.3;
}

.text-accent {
    color: var(--accent);
}

/* ===== UTILITY CLASSES ===== */
.section-padding {
    padding: 90px 0;
}

.section-tag {
    display: inline-block;
    padding: 8px 22px;
    background: rgba(26, 42, 58, 0.15);
    color: var(--accent-dark);
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 18px;
    border: 1px dashed var(--accent);
}

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

.section-desc {
    color: var(--gray);
    font-size: 16px;
    max-width: 700px;
    margin-bottom: 0;
}

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

/* ===== CUSTOM BUTTONS ===== */
.btn-primary-custom {
    background: #f3ca00;
    color: var(--white);
    padding: 12px 28px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    border: 2px solid #f3ca00;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-primary-custom::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--accent);
    transition: var(--transition);
    z-index: 0;
}

.btn-primary-custom:hover::before {
    left: 0;
}

.btn-primary-custom:hover {
    color: var(--white);
    border-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-primary-custom>* {
    position: relative;
    z-index: 1;
}

.btn-primary-custom i {
    position: relative;
    z-index: 1;
}

.btn-outline-custom {
    background: transparent;
    color: var(--white);
    padding: 12px 28px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    border: 2px solid var(--white);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-outline-custom:hover {
    background: var(--white);
    color: #f3ca00;
    transform: translateY(-2px);
}

.btn-lg-custom {
    padding: 14px 32px;
    font-size: 15px;
}

/* ===== TOP BAR ===== */
.top-bar {
    background: #000000;
    color: var(--white);
    padding: 10px 0;
    font-size: 13px;
}

.top-bar-left {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px;
}

.top-bar-right {
    text-align: right;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.top-info {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.top-info i {
    color: white;
}

.social-icon {
    width: 28px;
    height: 28px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    transition: var(--transition);
}

.social-icon:hover {
    background: var(--accent);
    color: var(--white);
    transform: rotate(360deg);
}

/* ===== HEADER / NAVBAR ===== */

.logos {
    width: 100%;
    height: 90px;
}

.main-header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    position: sticky;
    top: 0;
    z-index: 999;
}

.logo-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: #f3ca00;
    color: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: var(--shadow-sm);
    transform: rotate(-5deg);
    transition: var(--transition);
}

.navbar-brand:hover .logo-icon {
    transform: rotate(0deg) scale(1.05);
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.brand-name {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 800;
    color: #f3ca00;
    letter-spacing: -0.5px;
}

.brand-sub {
    font-size: 11px;
    color: var(--accent-dark);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: 600;
    margin-top: 2px;
}

.navbar-nav .nav-link {
    color: var(--dark);
    font-weight: 500;
    font-size: 15px;
    padding: 8px 16px !important;
    position: relative;
    transition: var(--transition);
}

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

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #f3ca00;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 25px;
}

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

.hero-slide {
    height: 650px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(110deg, rgba(0, 0, 0, 0.945) 30%, rgba(0, 0, 0, 0.75) 60%, rgba(0, 0, 0, 0.233) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
}

.hero-tag {
    display: inline-block;
    padding: 8px 22px;
    background: rgba(26, 42, 58, 0.2);
    color: #ffffff;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 22px;
    border: 1px solid #666666;
}

.hero-title {
    font-size: 60px;
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 22px;
}

.hero-desc {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin-bottom: 32px;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

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

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

.carousel-indicators {
    margin-bottom: 30px;
}

.carousel-indicators button {
    width: 35px !important;
    height: 4px !important;
    border-radius: 2px;
    background-color: rgba(255, 255, 255, 0.5) !important;
}

.carousel-indicators button.active {
    background-color: var(--accent) !important;
}

/* ===== MARQUEE ===== */
.marquee-section {
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    padding: 18px 0;
    overflow: hidden;
    border-top: 3px solid var(--accent);
    border-bottom: 3px solid var(--accent);
}

.marquee-wrap {
    width: 100%;
    overflow: hidden;
}

.marquee-track {
    display: flex;
    gap: 50px;
    animation: marquee 35s linear infinite;
    width: max-content;
}

.marquee-item {
    color: var(--white);
    font-size: 15px;
    font-weight: 500;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 10px;
}

.marquee-item i {
    color: white;
    font-size: 18px;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

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

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

.about-img-main {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 8px solid var(--white);
}

.about-img-main img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    transition: var(--transition);
}

.about-img-main:hover img {
    transform: scale(1.05);
}

.about-img-secondary {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 220px;
    border-radius: 12px;
    overflow: hidden;
    border: 8px solid var(--white);
    box-shadow: var(--shadow-lg);
}

.about-img-secondary img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.about-experience-badge {
    position: absolute;
    top: 30px;
    left: -20px;
    background: var(--accent);
    color: var(--white);
    padding: 22px 28px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.about-experience-badge h3 {
    font-size: 38px;
    color: var(--white);
    margin-bottom: 4px;
    font-weight: 800;
}

.about-experience-badge p {
    margin: 0;
    font-size: 12px;
    text-transform: uppercase;
    line-height: 1.3;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.about-feature-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin-bottom: 18px;
}

.feature-icon {
    width: 45px;
    height: 45px;
    background: rgba(245, 179, 1, 0.1);
    color: #f3ca00;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.about-feature-item h5 {
    font-size: 17px;
    margin-bottom: 4px;
    font-weight: 700;
}

.about-feature-item p {
    color: var(--gray);
    margin: 0;
    font-size: 14px;
}

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

.service-card {
    background: var(--white);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    border: 1px solid #bbbbbb;
}

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

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

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.service-icon-overlay {
    position: absolute;
    bottom: -25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background: var(--accent);
    color: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.service-card:hover .service-icon-overlay {
    background: #f3ca00;
    transform: rotate(360deg);
}

.service-content {
    padding: 35px 28px 28px;
}

.service-content h4 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--dark);
    transition: var(--transition);
    font-weight: 700;
}

.service-card:hover .service-content h4 {
    color: #f3ca00;
}

.service-content p {
    color: var(--gray);
    margin-bottom: 18px;
    font-size: 15px;
    line-height: 1.65;
}

.service-link {
    color: #f3ca00;
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-link:hover {
    color: var(--accent);
    gap: 12px;
}

/* ===== COUNTER SECTION ===== */
.counter-section {
    position: relative;
    padding: 80px 0;
    background-image: linear-gradient(rgba(8, 66, 41, 0.92), rgba(8, 66, 41, 0.92)), url('');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.counter-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.counter-box {
    color: var(--white);
    padding: 25px 15px;
    position: relative;
}

.counter-icon {
    width: 70px;
    height: 70px;
    background: rgba(26, 42, 58, 0.2);
    border: 2px solid var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: var(--accent);
    margin: 0 auto 18px;
    transition: var(--transition);
}

.counter-box:hover .counter-icon {
    background: var(--accent);
    color: var(--white);
    transform: rotate(360deg);
}

.counter-number {
    font-size: 50px;
    color: var(--white);
    margin-bottom: 6px;
    font-weight: 800;
}

.counter-number::after {
    content: '+';
    color: var(--accent);
}

.counter-box p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* ===== WHY CHOOSE SECTION ===== */
.why-choose-section {
    background: var(--light-gray);
}

.why-list {
    margin-top: 30px;
}

.why-item {
    display: flex;
    gap: 22px;
    margin-bottom: 28px;
    padding: 22px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border-left: 4px solid var(--accent);
}

.why-item:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
    border-left-color: #f3ca00;
}

.why-number {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
    flex-shrink: 0;
    min-width: 50px;
}

.why-content h5 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--dark);
    font-weight: 700;
}

.why-content p {
    color: var(--gray);
    margin: 0;
    font-size: 14px;
    line-height: 1.65;
}

.why-image-wrap {
    position: relative;
}

.why-image-wrap .main-img {
    border-radius: 14px;
    width: 100%;
    height: 580px;
    object-fit: cover;
    box-shadow: var(--shadow-lg);
    border: 8px solid var(--white);
}

.why-floating-card {
    position: absolute;
    bottom: 25px;
    left: -25px;
    background: var(--white);
    padding: 18px 22px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 14px;
    max-width: 270px;
}

.floating-icon {
    width: 50px;
    height: 50px;
    background: #f3ca00;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.why-floating-card h6 {
    margin: 0 0 3px;
    font-size: 16px;
    font-weight: 700;
}

.why-floating-card p {
    margin: 0;
    font-size: 12px;
    color: var(--gray);
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(245, 179, 1, 0.85), rgba(26, 42, 58, 0.7));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-overlay i {
    color: var(--white);
    font-size: 40px;
    transform: scale(0.5);
    transition: var(--transition);
}

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

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

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

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

.testimonial-card {
    background: var(--white);
    padding: 35px 30px;
    border-radius: 14px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    border-top: 4px solid var(--accent);
    position: relative;
}

.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 10px;
    right: 25px;
    font-size: 80px;
    color: rgba(245, 179, 1, 0.1);
    font-family: serif;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.testimonial-stars {
    color: var(--accent);
    margin-bottom: 18px;
    font-size: 16px;
    letter-spacing: 2px;
}

.testimonial-text {
    color: var(--gray);
    font-size: 15px;
    line-height: 1.75;
    font-style: italic;
    margin-bottom: 22px;
    position: relative;
    z-index: 1;
}

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

.author-avatar {
    width: 50px;
    height: 50px;
    background: #f3ca00;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    font-family: var(--font-heading);
}

.testimonial-author h6 {
    margin: 0 0 2px;
    font-size: 16px;
    font-weight: 700;
}

.testimonial-author span {
    font-size: 13px;
    color: var(--gray);
}

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

.testimonial-prev,
.testimonial-next {
    width: 48px;
    height: 48px;
    border: 2px solid #f3ca00;
    background: transparent;
    color: #f3ca00;
    border-radius: 50%;
    font-size: 18px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-prev:hover,
.testimonial-next:hover {
    background: #f3ca00;
    color: var(--white);
}

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

.faq-image-wrap img {
    border-radius: 14px;
    width: 100%;
    height: 280px;
    object-fit: cover;
    box-shadow: var(--shadow-md);
}

.faq-cta {
    background: #f3ca00;
    padding: 25px 28px;
    border-radius: 12px;
    color: var(--white);
}

.faq-cta h5 {
    color: var(--white);
    margin-bottom: 6px;
    font-size: 18px;
}

.faq-cta p {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
}

.cta-phone {
    color: var(--accent);
    font-weight: 700;
    font-size: 18px;
}

.cta-phone:hover {
    color: var(--white);
}

.custom-accordion .accordion-item {
    margin-bottom: 14px;
    border: 1px solid #eaeaea;
    border-radius: 10px !important;
    overflow: hidden;
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.custom-accordion .accordion-button {
    background: var(--white);
    color: var(--dark);
    font-weight: 600;
    font-size: 15px;
    padding: 18px 22px;
    border: none;
    box-shadow: none !important;
    font-family: var(--font-primary);
}

.custom-accordion .accordion-button:not(.collapsed) {
    background: #f3ca00;
    color: var(--white);
}

.custom-accordion .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230d5c3f'%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");
}

.custom-accordion .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%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");
}

.custom-accordion .accordion-body {
    padding: 18px 22px;
    color: var(--gray);
    font-size: 14.5px;
    line-height: 1.75;
    background: #fafbfa;
}

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

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

.contact-info-card {
    background: var(--white);
    padding: 22px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    gap: 18px;
    transition: var(--transition);
    border-left: 4px solid var(--accent);
}

.contact-info-card:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
    border-left-color: #f3ca00;
}

.contact-icon-box {
    width: 55px;
    height: 55px;
    background: #f3ca00;
    color: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.contact-info-card h6 {
    margin: 0 0 4px;
    color: #f3ca00;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.8px;
}

.contact-info-card a,
.contact-info-card p {
    color: var(--dark);
    font-weight: 500;
    margin: 0;
    font-size: 14.5px;
    line-height: 1.5;
}

.contact-info-card a:hover {
    color: var(--accent);
}

.contact-form-wrap {
    background: var(--white);
    padding: 40px;
    border-radius: 14px;
    box-shadow: var(--shadow-md);
    height: 100%;
}

.contact-form-wrap h3 {
    font-size: 28px;
    margin-bottom: 8px;
    color: var(--dark);
}

.contact-form-wrap>p {
    color: var(--gray);
    margin-bottom: 24px;
    font-size: 14.5px;
}

.contact-form .form-control,
.contact-form .form-select {
    border: 1px solid #e5e5e5;
    padding: 13px 16px;
    border-radius: 8px;
    font-size: 14.5px;
    transition: var(--transition);
    background: #fafbfa;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: #f3ca00;
    box-shadow: 0 0 0 3px rgba(245, 179, 1, 0.1);
    background: var(--white);
}

/* ===== MAP SECTION ===== */
.map-section {
    padding: 0;
}

.map-wrap {
    height: 450px;
    width: 100%;
}

.map-wrap iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

/* ===== FOOTER ===== */
.main-footer {
    background: linear-gradient(135deg, #000000ee, #000000);
    color: rgba(255, 255, 255, 0.85);
    padding: 70px 0 0;
    position: relative;
}

.footer-widget h5.footer-title {
    color: var(--white);
    font-size: 19px;
    margin-bottom: 22px;
    position: relative;
    padding-bottom: 12px;
    font-weight: 700;
}

.footer-widget h5.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--accent);
    border-radius: 2px;
}

.footer-widget p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 14.5px;
    line-height: 1.75;
}

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

.footer-brand .brand-sub {
    color: var(--accent);
}

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

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

.footer-social a:hover {
    background: var(--accent);
    transform: translateY(-3px);
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.75);
    font-size: 14.5px;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.footer-links a i {
    font-size: 11px;
    color: var(--accent);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent);
    padding-left: 6px;
}

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

.footer-contact li {
    display: flex;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 14.5px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
}

.footer-contact li i {
    color: #fff;
    font-size: 16px;
    margin-top: 4px;
    flex-shrink: 0;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.75);
}

.footer-contact a:hover {
    color: var(--accent);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    margin-top: 50px;
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

/* ===== FLOATING ICONS LEFT SIDE ===== */
.floating-icons {
    position: fixed;
    right: 18px;
    bottom: 40%;
    transform: translateY(50%);
    z-index: 998;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.float-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 22px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    animation: pulse 2s infinite;
}

.float-btn.whatsapp {
    background: #25d366;
    animation-delay: 0s;
}

.float-btn.call {
    background: #f3ca00;
    animation-delay: 0.5s;
}

.float-btn.mail {
    background: var(--accent);
    animation-delay: 1s;
}

.float-btn:hover {
    transform: scale(1.1) rotate(8deg);
    color: var(--white);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(245, 179, 1, 0.5);
    }

    70% {
        box-shadow: 0 0 0 12px rgba(245, 179, 1, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(245, 179, 1, 0);
    }
}

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 45px;
    height: 45px;
    background: #f3ca00;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 998;
}

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

.back-to-top:hover {
    background: var(--accent);
    color: var(--white);
    transform: translateY(-5px);
}

/* ============================================
   RESPONSIVE - LARGE DESKTOP & DOWN
   ============================================ */
@media (max-width: 1199.98px) {
    .hero-title {
        font-size: 50px;
    }

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

/* ============================================
   RESPONSIVE - TABLET (992px)
   ============================================ */
@media (max-width: 991.98px) {
    .section-padding {
        padding: 70px 0;
    }

    .hero-slide {
        height: 550px;
    }

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

    .hero-desc {
        font-size: 16px;
    }

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

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

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

    .about-img-main img {
        height: 400px;
    }

    .about-img-secondary {
        display: none;
    }

    .about-experience-badge {
        left: 15px;
        top: 15px;
    }

    .why-image-wrap {
        margin-top: 30px;
    }

    .why-image-wrap .main-img {
        height: 450px;
    }

    .why-floating-card {
        left: 0;
        max-width: 240px;
        padding: 14px 18px;
    }

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

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

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

/* ============================================
   RESPONSIVE - MOBILE (768px)
   ============================================ */
@media (max-width: 767.98px) {
    .section-padding {
        padding: 55px 0;
    }

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

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

    .top-bar-left {
        justify-content: center;
        gap: 12px;
        font-size: 12px;
    }

    .hero-slide {
        height: 520px;
    }

    .hero-title {
        font-size: 30px;
        line-height: 1.2;
    }

    .hero-desc {
        font-size: 14.5px;
    }

    .hero-tag {
        font-size: 11px;
        padding: 6px 16px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }

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

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

    .marquee-section {
        padding: 14px 0;
    }

    .marquee-item {
        font-size: 13px;
    }

    .marquee-track {
        gap: 30px;
    }

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

    .section-desc {
        font-size: 14.5px;
    }

    .about-img-main img {
        height: 320px;
    }

    .about-experience-badge {
        padding: 14px 18px;
    }

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

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

    .service-content {
        padding: 28px 22px 22px;
    }

    .service-content h4 {
        font-size: 19px;
    }

    .service-img {
        height: 200px;
    }

    .counter-section {
        padding: 55px 0;
        background-attachment: scroll;
    }

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

    .counter-icon {
        width: 55px;
        height: 55px;
        font-size: 24px;
        margin-bottom: 12px;
    }

    .counter-box p {
        font-size: 12px;
    }

    .why-item {
        padding: 16px;
        gap: 14px;
        flex-direction: column;
    }

    .why-number {
        font-size: 28px;
        min-width: auto;
    }

    .why-image-wrap .main-img {
        height: 350px;
    }

    .gallery-item img {
        height: 150px;
    }

    .testimonial-card {
        padding: 25px 22px;
    }

    .faq-cta {
        padding: 20px;
    }

    .custom-accordion .accordion-button {
        font-size: 14px;
        padding: 14px 18px;
    }

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

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

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

    .map-wrap {
        height: 320px;
    }

    .main-footer {
        padding: 50px 0 0;
    }

    .footer-bottom {
        margin-top: 30px;
        padding: 18px 0;
    }

    .footer-bottom p {
        text-align: center !important;
        margin-bottom: 6px;
        font-size: 13px;
    }

    .floating-icons {
        right: 12px;
        gap: 10px;
    }

    .float-btn {
        width: 42px;
        height: 42px;
        font-size: 18px;
    }

    .back-to-top {
        width: 40px;
        height: 40px;
        font-size: 16px;
        right: 15px;
        bottom: 15px;
    }
}

/* ============================================
   RESPONSIVE - SMALL MOBILE (480px)
   ============================================ */
@media (max-width: 480px) {
    .hero-title {
        font-size: 26px;
    }

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

    .logo-icon {
        width: 42px;
        height: 42px;
        font-size: 20px;
    }

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

    .brand-sub {
        font-size: 9px;
        letter-spacing: 3px;
    }

    .top-bar-left {
        gap: 10px;
    }

    .top-info {
        font-size: 11.5px;
    }

    .gallery-item img {
        height: 130px;
    }

    .float-btn {
        width: 38px;
        height: 38px;
        font-size: 16px;
    }
}