/* ============================================
   SAIFI INVISIBLE GRILL - Custom Styles
   ============================================ */

:root {
    --primary: #0a2540;
    --primary-dark: #061a30;
    --accent: #d4a017;
    --accent-light: #f5c94c;
    --dark: #0c1421;
    --text: #4a5568;
    --light-bg: #f6f8fb;
    --white: #ffffff;
    --border: #e2e8f0;
    --shadow-sm: 0 4px 12px rgba(10, 37, 64, 0.06);
    --shadow-md: 0 10px 30px rgba(10, 37, 64, 0.1);
    --shadow-lg: 0 20px 50px rgba(10, 37, 64, 0.15);
    --font-display: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;
    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

* {
  box-sizing: border-box;
}

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

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

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

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

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

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

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

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

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

.bg-light-custom {
    background: var(--light-bg);
}

.accent {
    color: var(--accent);
    font-style: italic;
}

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

.section-label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 4px;
    color: var(--accent);
    text-transform: uppercase;
    margin-bottom: 18px;
    position: relative;
    padding-left: 50px;
}

.section-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 35px;
    height: 2px;
    background: var(--accent);
}

.section-label.center {
    padding-left: 50px;
    padding-right: 50px;
}

.section-label.center::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    width: 35px;
    height: 2px;
    background: var(--accent);
}

.section-title {
    font-size: clamp(1.9rem, 4vw, 3rem);
    margin-bottom: 20px;
    font-weight: 800;
}

.section-lead {
    font-size: 1.1rem;
    color: var(--text);
    margin-bottom: 20px;
    font-weight: 400;
}

.section-text {
    font-size: 1rem;
    color: var(--text);
    margin-bottom: 20px;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-primary-custom {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--accent);
    color: var(--dark);
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    border: 2px solid var(--accent);
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1.5px;
    transition: var(--transition);
    box-shadow: 0 8px 20px rgba(212, 160, 23, 0.3);
}

.btn-primary-custom:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(10, 37, 64, 0.3);
}

.btn-outline-light-custom {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: var(--white);
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    border: 2px solid var(--white);
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1.5px;
    transition: var(--transition);
}

.btn-outline-light-custom:hover {
    background: var(--white);
    color: var(--dark);
    transform: translateY(-3px);
}

/* ============================================
   TOP BAR
   ============================================ */
.top-bar {
    background: var(--primary-dark);
    color: rgba(255, 255, 255, 0.85);
    padding: 12px 0;
    font-size: 14px;
}

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

.top-bar-info li {
    display: flex !important;
    align-items: center;
    gap: 8px;
}

.top-bar-info i {
    color: var(--accent);
}

.top-bar a {
    color: rgba(255, 255, 255, 0.85);
}

.top-bar a:hover {
    color: var(--accent);
}

.top-bar-social li {
    margin-left: 8px !important;
}

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

.top-bar-social a:hover {
    background: var(--accent);
    color: var(--dark);
    transform: translateY(-2px);
}

/* ============================================
   HEADER / NAVBAR
   ============================================ */
.main-header {
    background: var(--white);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    z-index: 1030;
    transition: var(--transition);
}

.main-header.scrolled {
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.1);
}

.navbar {
    padding: 18px 0;
}

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

.brand-mark {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--accent);
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 26px;
    box-shadow: 0 5px 15px rgba(10, 37, 64, 0.25);
    position: relative;
    overflow: hidden;
}

.brand-mark::before {
    content: '';
    position: absolute;
    inset: 3px;
    border: 1px solid rgba(212, 160, 23, 0.4);
    border-radius: 9px;
}

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

.brand-title {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 22px;
    color: var(--dark);
    letter-spacing: 2px;
}

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

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

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 4px;
    height: 2px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s ease;
}

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

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    transform: scaleX(1);
}

.navbar-toggler {
    border: none;
    padding: 8px;
    width: 44px;
    height: 44px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

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

.toggler-bar {
    width: 26px;
    height: 2px;
    background: var(--dark);
    transition: var(--transition);
}

.navbar-toggler[aria-expanded="true"] .toggler-bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.navbar-toggler[aria-expanded="true"] .toggler-bar:nth-child(2) {
    opacity: 0;
}

.navbar-toggler[aria-expanded="true"] .toggler-bar:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

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

.min-vh-hero {
    min-height: 700px;
}

.hero-slide {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.75) 50%, rgba(0, 0, 0, 0.4) 100%);
}

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

.hero-content {
    color: var(--white);
    padding: 80px 0;
}

.hero-tag {
    display: inline-block;
    background: rgba(212, 160, 23, 0.15);
    color: var(--accent-light);
    padding: 8px 20px;
    border: 1px solid rgba(212, 160, 23, 0.4);
    border-radius: 50px;
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 25px;
}

.hero-title {
    font-size: clamp(2.2rem, 5.5vw, 4.5rem);
    color: var(--white);
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.1;
}

.hero-text {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 35px;
    max-width: 600px;
    line-height: 1.7;
}

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

.carousel-control-prev,
.carousel-control-next {
    width: 60px;
    opacity: 1;
    z-index: 5;
}

.custom-control-icon {
    width: 55px;
    height: 55px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 22px;
    backdrop-filter: blur(8px);
    transition: var(--transition);
}

.carousel-control-prev:hover .custom-control-icon,
.carousel-control-next:hover .custom-control-icon {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--dark);
}

.carousel-indicators {
    bottom: 30px;
    z-index: 5;
}

.carousel-indicators [data-bs-target] {
    width: 35px;
    height: 4px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.4);
    border: none;
    opacity: 1;
    margin: 0 5px;
}

.carousel-indicators .active {
    background: var(--accent);
    width: 50px;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-image-wrap {
    position: relative;
    padding-bottom: 50px;
    padding-right: 50px;
}

.about-img-1 {
    width: 100%;
    height: 400px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    object-fit: cover;
    aspect-ratio: 4/5;
}

.about-img-2 {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 55%;
    border-radius: 20px;
    border: 8px solid var(--white);
    box-shadow: var(--shadow-lg);
    object-fit: cover;
    aspect-ratio: 4/3;
}

.about-experience {
    position: absolute;
    top: 30px;
    right: 0;
    background: var(--accent);
    color: var(--dark);
    padding: 25px 30px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    text-align: center;
    z-index: 2;
}

.about-experience h3 {
    font-size: 2.8rem;
    margin: 0;
    color: var(--dark);
    font-weight: 800;
}

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

.about-feature {
    background: var(--white);
    padding: 25px;
    border-radius: 14px;
    border: 1px solid var(--border);
    height: 100%;
    transition: var(--transition);
}

.about-feature:hover {
    border-color: var(--accent);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.about-feature i {
    width: 50px;
    height: 50px;
    background: rgba(212, 160, 23, 0.12);
    color: var(--accent);
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 15px;
}

.about-feature h5 {
    font-family: var(--font-body);
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 8px;
}

.about-feature p {
    font-size: 14px;
    margin: 0;
}

/* ============================================
   SERVICES
   ============================================ */
.service-card {
    background: var(--white);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.service-image {
    height: 240px;
    overflow: hidden;
    position: relative;
}

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

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

.service-body {
    padding: 35px 28px 30px;
    position: relative;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-icon {
    position: absolute;
    top: -28px;
    right: 28px;
    width: 60px;
    height: 60px;
    background: var(--accent);
    color: var(--dark);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    box-shadow: 0 8px 20px rgba(212, 160, 23, 0.4);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    transform: rotate(-8deg) scale(1.05);
    background: var(--primary);
    color: var(--accent);
}

.service-body h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.service-body p {
    margin-bottom: 20px;
    color: var(--text);
    flex-grow: 1;
}

.service-link {
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1.5px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
}

.service-link i {
    transition: var(--transition);
}

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

.service-link:hover i {
    transform: translateX(6px);
}

/* ============================================
   WHY US
   ============================================ */
.why-card {
    background: var(--white);
    padding: 35px 28px;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    height: 100%;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent);
}

.why-card:hover::before {
    transform: scaleX(1);
}

.why-icon {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--accent);
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 20px;
    transition: var(--transition);
}

.why-card:hover .why-icon {
    background: var(--accent);
    color: var(--dark);
    transform: rotate(-8deg);
}

.why-card h4 {
    font-family: var(--font-body);
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 12px;
}

.why-card p {
    font-size: 15px;
    color: var(--text);
    margin: 0;
}

/* ============================================
   COUNTER
   ============================================ */
.counter-section {
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 90px 0;
    position: relative;
}

.counter-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(6, 26, 48, 0.95), rgba(10, 37, 64, 0.88));
}

.counter-section .container {
    position: relative;
    z-index: 2;
}

.counter-box {
    color: var(--white);
    padding: 30px 20px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    transition: var(--transition);
}

.counter-box:hover {
    background: rgba(212, 160, 23, 0.12);
    border-color: var(--accent);
    transform: translateY(-5px);
}

.counter-box i {
    font-size: 42px;
    color: var(--accent);
    margin-bottom: 15px;
    display: block;
}

.counter-box .counter {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    color: var(--white);
    font-weight: 800;
    margin-bottom: 5px;
    line-height: 1;
}

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

/* ============================================
   GALLERY
   ============================================ */
.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    aspect-ratio: 4/3;
    cursor: pointer;
    width: 100%;
    height: 240px;

}

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(6, 26, 48, 0.92) 0%, rgba(6, 26, 48, 0.2) 100%);
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    padding: 20px;
    opacity: 0;
    transition: var(--transition);
}

.gallery-overlay i {
    font-size: 28px;
    color: var(--accent);
    margin-bottom: 8px;
    transform: translateY(20px);
    transition: var(--transition);
}

.gallery-overlay span {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    transform: translateY(20px);
    transition: var(--transition) 0.1s;
}

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

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

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

/* Mobile Responsive */
@media (max-width: 767px) {
    .gallery-item {
        aspect-ratio: 1/1;
    }

    .gallery-overlay {
        padding: 15px;
    }

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

/* ============================================
   FAQ
   ============================================ */
.faq-image {
    width: 100%;
    object-fit: cover;
    aspect-ratio: 16/10;
    box-shadow: var(--shadow-md);
}

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

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

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

.custom-accordion .accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1);
}

.custom-accordion .accordion-button::after {
    background-size: 14px;
    width: 14px;
    height: 14px;
    background-position: center;
}

.custom-accordion .accordion-body {
    padding: 22px 25px;
    color: var(--text);
    font-size: 15px;
    line-height: 1.8;
    background: var(--white);
    border-top: 1px solid var(--border);
}

/* ============================================
   CONTACT
   ============================================ */
.contact-info-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 35px 28px;
    text-align: center;
    height: 100%;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.contact-info-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--accent);
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 20px;
    transition: var(--transition);
}

.contact-info-card:hover .contact-icon {
    background: var(--accent);
    color: var(--dark);
    transform: rotate(-8deg);
}

.contact-info-card h4 {
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.contact-info-card p {
    font-size: 14px;
    color: var(--text);
    margin-bottom: 12px;
}

.contact-info-card a {
    color: var(--primary);
    font-weight: 600;
    font-size: 16px;
    word-break: break-word;
}

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

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

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

.contact-form-wrap > p {
    margin-bottom: 25px;
}

.contact-form .form-control,
.contact-form .form-select {
    border: 1px solid var(--border);
    padding: 14px 18px;
    border-radius: 12px;
    font-size: 15px;
    color: var(--dark);
    background: var(--light-bg);
    transition: var(--transition);
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(212, 160, 23, 0.12);
    background: var(--white);
}

.contact-form .form-control::placeholder {
    color: #9aa5b1;
}

.form-success {
    background: rgba(34, 197, 94, 0.1);
    color: #16a34a;
    padding: 14px 18px;
    border-radius: 12px;
    border: 1px solid rgba(34, 197, 94, 0.3);
    font-weight: 500;
}

.map-wrap {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    height: 100%;
    min-height: 450px;
}

/* ============================================
   FOOTER
   ============================================ */
.main-footer {
    background: var(--primary-dark);
    color: rgba(255, 255, 255, 0.7);
    padding-top: 80px;
    position: relative;
}

.main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.footer-top {
    padding-bottom: 50px;
}

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

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

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

.footer-about {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 22px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-social li {
    margin-right: 8px !important;
}

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

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

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

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

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    transition: var(--transition);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--accent);
    transform: translateX(5px);
}

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

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

.footer-contact i {
    color: var(--accent);
    font-size: 16px;
    margin-top: 3px;
    flex-shrink: 0;
}

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

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 22px 0;
    font-size: 14px;
}

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

.float-whatsapp {
    left: 25px;
    background: #25D366;
}

.float-call {
    right: 25px;
    background: var(--accent);
    color: var(--dark);
}

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

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

.float-pulse {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    animation: pulse 1.8s ease-out infinite;
}

.float-whatsapp .float-pulse {
    background: #25D366;
}

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

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    100% {
        transform: scale(1.7);
        opacity: 0;
    }
}

/* ============================================
   BACK TO TOP
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 25px;
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 998;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--accent);
    color: var(--dark);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1199.98px) {
    .section-padding {
        padding: 80px 0;
    }
}

@media (max-width: 991.98px) {
    .section-padding {
        padding: 70px 0;
    }

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

    .navbar-nav .nav-link {
        padding: 12px 0 !important;
        border-bottom: 1px solid var(--border);
    }

    .navbar-nav .nav-link:last-of-type {
        border-bottom: none;
    }

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

    .hero-content {
        padding: 60px 0;
        text-align: center;
    }

    .hero-text {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .min-vh-hero {
        min-height: 600px;
    }

    .about-image-wrap {
        padding-bottom: 30px;
        padding-right: 30px;
        max-width: 500px;
        margin: 0 auto 40px;
    }
}

@media (max-width: 767.98px) {
    .section-padding {
        padding: 60px 0;
    }

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

    .section-title {
        font-size: 1.7rem;
    }

    .navbar {
        padding: 14px 0;
    }

    .brand-mark {
        width: 42px;
        height: 42px;
        font-size: 22px;
    }

    .brand-title {
        font-size: 18px;
    }

    .brand-sub {
        font-size: 10px;
    }

    .min-vh-hero {
        min-height: 520px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-text {
        font-size: 1rem;
    }

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

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

    .counter-box {
        padding: 22px 12px;
    }

    .counter-box i {
        font-size: 32px;
    }

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

    .float-icon {
        width: 52px;
        height: 52px;
        font-size: 22px;
        bottom: 20px;
    }

    .float-whatsapp {
        left: 18px;
    }

    .float-call {
        right: 18px;
    }

    .back-to-top {
        bottom: 85px;
        right: 18px;
        width: 42px;
        height: 42px;
    }

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

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

    .about-experience h3 {
        font-size: 2rem;
    }

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

    .section-label,
    .section-label.center {
        padding-left: 45px;
        padding-right: 0;
    }

    .section-label.center {
        padding-right: 45px;
    }
}

@media (max-width: 575.98px) {
    .hero-buttons .btn {
        width: 100%;
        margin-right: 0 !important;
    }

    .service-image {
        height: 220px;
    }

    .gallery-overlay {
        padding: 20px;
    }

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