:root {
    --primary: #D52317;
    --primary-soft: #fbe7e6;
    --accent: #f5b2a9;
    --dark: #222222;
    --text: #444444;
    --bg: #ffffff;
    --light: #f7f7f7;
    --radius-lg: 18px;
    --shadow-soft: 0 15px 40px rgba(0, 0, 0, 0.06);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Poppins", sans-serif;
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.6;
    scroll-behavior: smooth;
}

img,
video {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    width: min(1120px, 94%);
    margin: 0 auto;
}

/* NAVBAR */
header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.8rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--primary);
}

.logo-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.1rem;
}

nav ul {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    font-size: 0.95rem;
}

nav a {
    position: relative;
    padding-bottom: 2px;
}

nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

nav a:hover::after {
    width: 100%;
}

.btn-primary,
.btn-outline {
    border-radius: 999px;
    padding: 0.55rem 1.4rem;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid var(--primary);
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
    display: block;
    text-align: center;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
}

.btn-primary:hover {
    background: #b71a10;
    border-color: #b71a10;
    transform: translateY(-1px);
    box-shadow: var(--shadow-soft);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary-soft);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

/* HAMBURGER - default hidden, shown only for tablet+mobile via one breakpoint */
.hamburger {
  --bar-h: 3px;
  --bar-w: 22px;
  --gap: 8px;

  display: none; /* keep hidden by default (desktop) */
  width: 44px;
  height: 44px;
  position: relative;
  padding: 0;
  margin: 0;
  background: transparent;
  border: 0;
  cursor: pointer;
  box-sizing: border-box;
  z-index: 9999;
  color: var(--dark);
  border-radius: 8px;
  transition: background-color .18s, box-shadow .18s;
  align-items: center;
  justify-content: center;
}

/* bars */
.hamburger span {
  position: absolute;
  left: 50%;
  width: var(--bar-w);
  height: var(--bar-h);
  background: currentColor;
  border-radius: 3px;
  transform-origin: center;
  transition: transform .28s cubic-bezier(.4,.02,.22,1), opacity .18s ease, top .18s ease;
  box-shadow: 0 1px 0 rgba(0,0,0,0.06);
  transform: translateX(-50%);
}

.hamburger span:nth-child(1) { top: calc(50% - (var(--gap) + var(--bar-h))); }
.hamburger span:nth-child(2) { top: calc(50% - (var(--bar-h) / 2)); }
.hamburger span:nth-child(3) { top: calc(50% + var(--gap)); }

.hamburger.open span:nth-child(1) { top: 50%; transform: translate(-50%,-50%) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: translate(-50%,-50%) scaleX(0); }
.hamburger.open span:nth-child(3) { top: 50%; transform: translate(-50%,-50%) rotate(-45deg); }

/* Show hamburger only for tablet and mobile (<= 992px) */
@media (max-width: 992px) {
  .hamburger {
    display: flex;
  }

  /* keep nav hidden until opened */
  nav #navMenu {
    display: none;
    position: absolute;
    right: 1rem;
    top: 68px;
    background: rgba(255,255,255,0.98);
    padding: 1rem;
    border-radius: 12px;
    box-shadow: 0 14px 40px rgba(20,20,40,0.12);
    min-width: 200px;
    z-index: 60;
    flex-direction: column;
    gap: 0.6rem;
  }

  nav #navMenu.open { display: flex; }
  nav #navMenu li a { display: block; padding: 0.6rem 0.8rem; }
  .nav-actions { display: none; }
  header .container.nav { position: relative; }
}

/* Remove duplicate display rules in other breakpoints:
   do NOT set .hamburger { display: flex; } in other @media blocks to avoid conflicts.
*/

/* HERO SECTION WITH IMAGE SLIDER */
.hero {
    background: linear-gradient(135deg, #fff7f6, #ffe8e4);
    padding: 3.5rem 0 3rem;
}

.hero-slider-wrapper {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    gap: 2.5rem;
    align-items: center;
}

/* LEFT – IMAGE SLIDER */
.hero-image-slider {
    position: relative;
    border-radius: 26px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    min-height: 280px;
    background: #000;
}

.hero-img-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: scale(1.03);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.hero-img-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-img-slide.active {
    opacity: 1;
    transform: scale(1);
}

.hero-slider-dots {
    position: absolute;
    left: 50%;
    bottom: 14px;
    transform: translateX(-50%);
    display: flex;
    gap: 0.35rem;
    padding: 0.25rem 0.5rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(6px);
}

.hero-slider-dot {
    width: 7px;
    height: 7px;
    border-radius: 999px;
    border: none;
    background: #f0b4ae;
    cursor: pointer;
    padding: 0;
    transition: var(--transition);
}

.hero-slider-dot.active {
    width: 18px;
    background: var(--primary);
}

.hero-slider-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 0.25rem 0.8rem;
    border-radius: 999px;
    font-size: 0.78rem;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.hero-slider-badge i {
    color: #ffd564;
}

/* RIGHT – CONTENT */
/* .hero-content {} */

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.3rem 0.8rem;
    border-radius: 999px;
    background: rgba(213, 35, 23, 0.08);
    color: var(--primary);
    font-size: 0.78rem;
    margin-bottom: 0.65rem;
}

.hero-title {
    font-size: 2.1rem;
    color: var(--dark);
    font-weight: 600;
    line-height: 1.25;
}

.hero-title span {
    color: var(--primary);
}

.hero-text {
    font-size: 0.96rem;
    color: #666;
    max-width: 460px;
    margin-top: 0.6rem;
}

.hero-cta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.1rem;
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.3rem;
    margin-top: 1.5rem;
    font-size: 0.82rem;
    color: #777;
}

.hero-meta-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.hero-meta-item i {
    color: var(--primary);
}

/* Responsive for hero */
@media (max-width: 992px) {
    .hero-slider-wrapper {
        grid-template-columns: 1fr;
    }

    .hero {
        padding-top: 2.7rem;
    }

    .container {
        width: min(95%, 1000px);
    }

    nav ul {
        gap: 1.2rem;
        font-size: 0.9rem;
    }

    section {
        padding: 2.5rem 0;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .about-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-list {
        grid-template-columns: 1fr;
        gap: 0.6rem;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.1rem;
    }

    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .gallery-images {
        grid-template-columns: repeat(3, 1fr);
    }

    .contact-inner {
        grid-template-columns: 1fr;
        gap: 1.8rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: flex-start;
    }

    
    .hero-meta {        
        align-items: center;
    }

    .btn-primary,
    .btn-outline {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .container {
        width: 95%;
    }

    header {
        padding: 0.6rem 0;
    }

    .nav {
        padding: 0.6rem 0;
    }

    .logo {
        font-size: 0.95rem;
    }

    .logo-icon {
        width: 32px;
        height: 32px;
        font-size: 0.95rem;
    }

    nav ul {
        gap: 1rem;
        font-size: 0.85rem;
    }

    .hero {
        padding: 2rem 0;
    }

    .hero-title {
        font-size: 1.5rem;
        line-height: 1.3;
    }

    .hero-text {
        font-size: 0.9rem;
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 0.25rem 0.6rem;
    }

    .hero-meta {
        gap: 0.8rem;
        margin-top: 1rem;
        font-size: 0.78rem;
        justify-content: center;
    }

    .hero-image-slider {
        min-height: 240px;
    }

    section {
        padding: 2rem 0;
    }

    .section-heading {
        margin-bottom: 1.8rem;
    }

    .section-title {
        font-size: 1.3rem;
    }

    .section-subtitle {
        font-size: 0.88rem;
    }

    .about-content h3 {
        font-size: 1.2rem;
    }

    .about-content p {
        font-size: 0.87rem;
    }

    .about-image-main img {
        height: 220px;
    }

    .service-card {
        padding: 1rem;
        gap: 0.5rem;
    }

    .service-icon {
        height: 160px;
    }

    .service-card h3 {
        font-size: 0.95rem;
    }

    .service-card p {
        font-size: 0.83rem;
    }

    .review-card {
        padding: 0.9rem;
        font-size: 0.82rem;
    }

    .avatar {
        width: 30px;
        height: 30px;
        font-size: 0.75rem;
    }

    .review-name {
        font-size: 0.83rem;
    }

    .review-meta {
        font-size: 0.73rem;
    }

    .gallery-video video,
    .gallery-video iframe {
        min-height: 220px;
    }

    .gallery-img-item img {
        height: 100px;
    }

    .contact-card {
        padding: 1.1rem 1rem;
    }

    .contact-card h3 {
        font-size: 1rem;
    }

    .popup {
        width: min(320px, 92%);
        padding: 1.2rem 1.1rem;
    }

    .popup h3 {
        font-size: 1rem;
    }

    .popup p {
        font-size: 0.8rem;
    }

    input,
    textarea {
        padding: 0.5rem 0.65rem;
        font-size: 0.85rem;
        min-height: 38px;
    }

    .popup-form input {
        min-height: 36px;
    }
}

@media (max-width: 640px) {
    .container {
        width: 96%;
    }

    .hero-slider-wrapper {
        gap: 1.5rem;
    }

    .hero-title {
        font-size: 1.3rem;
    }

    .hero-cta {
        flex-direction: column;
        gap: 0.6rem;
    }

    .btn-primary,
    .btn-outline {
        width: 100%;
        padding: 0.5rem 1.2rem;
        font-size: 0.85rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .gallery-images {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }

    .gallery-img-item img {
        height: 90px;
    }

    .about-list {
        grid-template-columns: 1fr;
    }

    .about-list li {
        padding: 8px;
        font-size: 10px;
        border-width: 3px;
    }

    .contact-info-list {
        gap: 0.6rem;
    }

    .service-icon {
        height: 140px;
    }

    .hero-meta {
        flex-direction: column;
        gap: 0.6rem;
    }
}

@media (max-width: 480px) {
    .container {
        width: 96%;
    }

    .nav {
        padding: 0.5rem 0;
    }

    .logo {
        font-size: 0.9rem;
    }

    .hero {
        padding: 1.5rem 0;
    }

    .hero-title {
        font-size: 1.15rem;
        line-height: 1.25;
        margin-bottom: 0.4rem;
    }

    .hero-text {
        font-size: 0.85rem;
        margin-top: 0.4rem;
    }

    .hero-image-slider {
        min-height: 200px;
    }

    .hero-slider-dots {
        bottom: 10px;
        left: 50%;
        transform: translateX(-50%);
    }

    .hero-slider-dot {
        width: 5px;
        height: 5px;
    }

    .hero-slider-dot.active {
        width: 14px;
    }

    section {
        padding: 1.5rem 0;
    }

    .section-title {
        font-size: 1.15rem;
    }

    .section-subtitle {
        font-size: 0.85rem;
    }

    .service-card {
        padding: 0.8rem;
    }

    .service-icon {
        height: 120px;
        margin-bottom: 0;
    }

    .service-card h3 {
        font-size: 0.9rem;
    }

    .service-card p {
        font-size: 0.8rem;
    }

    .service-meta {
        flex-direction: column;
        gap: 0.4rem;
        align-items: flex-start;
        font-size: 0.75rem;
    }

    .review-card {
        padding: 0.8rem;
    }

    .review-card::before {
        font-size: 3rem;
        right: 12px;
        top: -15px;
    }

    .popup {
        width: min(300px, 90%);
        padding: 1rem;
    }

    .popup-close {
        top: 6px;
        right: 8px;
        font-size: 1rem;
    }

    .popup h3 {
        font-size: 0.95rem;
        margin-bottom: 0.1rem;
    }

    .popup p {
        font-size: 0.78rem;
        margin-bottom: 0.6rem;
    }

    input,
    textarea {
        padding: 0.45rem 0.6rem;
        font-size: 0.82rem;
        min-height: 36px;
    }

    .popup-form input {
        min-height: 34px;
    }

    .popup-note {
        font-size: 0.7rem;
    }

    .map-wrapper iframe {
        min-height: 240px;
    }

    .hero-meta {
        gap: 0.5rem;
    }

    .hero-meta-item {
        font-size: 0.75rem;
    }
}

/* SECTION GENERIC */
section {
    padding: 3.2rem 0;
}

.section-heading {
    text-align: center;
    margin-bottom: 2.4rem;
}

.section-tag {
    display: inline-block;
    font-size: 0.78rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.25rem 0.7rem;
    border-radius: 999px;
    border: 1px solid rgba(213, 35, 23, 0.18);
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: 1.7rem;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.section-subtitle {
    font-size: 0.92rem;
    color: #777;
    max-width: 520px;
    margin: 0 auto;
}

/* ABOUT */
.about-inner {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 2.5rem;
    align-items: center;
}

.about-image-card {
    background: #fff;
    border-radius: 26px;
    box-shadow: var(--shadow-soft);
    padding: 1rem;
    position: relative;
    overflow: hidden;
}

.about-image-main img {
    border-radius: 20px;
    height: 260px;
    width: 100%;
    object-fit: cover;
}

.about-stats {
    position: absolute;
    right: 18px;
    bottom: 18px;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 0.7rem 0.9rem;
    border-radius: 16px;
    font-size: 0.75rem;
}

.about-stats strong {
    font-size: 1rem;
}

.about-content h3 {
    font-size: 1.4rem;
    color: var(--dark);
    margin-bottom: 0.6rem;
}

.about-content p {
    font-size: 0.93rem;
    color: #666;
    margin-bottom: 0.8rem;
}

.about-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.7rem 1rem;
    margin: 0.6rem 0 1.2rem;
    font-size: 0.88rem;
}

.about-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #235123;
    border-radius: 20px;
    padding: 10px;
    color: white;
    text-align: center;
    font-size: 11px;
    border: 4px dashed #00ff08;
}

.about-list i {
    color: #00ff08;
    font-size: 0.85rem;
}

/* SERVICES */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.3rem;
}

.service-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 1.2rem 1.1rem;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
}

.service-icon {
    width: 100%;
    height: 200px;
    border-radius: 20px;
    background: var(--primary-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin-bottom: 0.2rem;
    overflow: hidden;
}

.service-icon img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-card h3 {
    font-size: 1rem;
    color: var(--dark);
}

.service-card p {
    font-size: 0.86rem;
    color: #777;
}

.service-meta {
    margin-top: auto;
    font-size: 0.82rem;
    color: #555;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0.6rem;
}

.badge-soft {
    padding: 0.2rem 0.6rem;
    border-radius: 999px;
    background: var(--primary-soft);
    font-size: 0.75rem;
    color: var(--primary);
}

/* REVIEWS */
.reviews {
    background: #fff7f6;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.2rem;
}

.review-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 1.1rem 1rem;
    box-shadow: var(--shadow-soft);
    font-size: 0.86rem;
    position: relative;
    overflow: hidden;
}

.review-card::before {
    content: "\"";
    position: absolute;
    top: -20px;
    right: 18px;
    font-size: 4rem;
    color: rgba(213, 35, 23, 0.08);
    font-family: serif;
}

.review-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.4rem;
}

.review-user {
    display: flex;
    align-items: center;
    gap: 0.45rem;
}

.avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #ffe1dd;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: var(--primary);
    font-weight: 600;
}

.review-name {
    font-size: 0.87rem;
    font-weight: 500;
}

.review-meta {
    font-size: 0.76rem;
    color: #999;
}

.review-rating i {
    color: #f3b41a;
    font-size: 0.8rem;
}

.review-text {
    margin-top: 0.3rem;
    color: #666;
}

/* GALLERY */
.gallery-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 1.3rem;
    align-items: flex-start;
}

.gallery-video {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    position: relative;
    background: #000;
}

.gallery-video video,
.gallery-video iframe {
    width: 100%;
    height: 100%;
    min-height: 260px;
    border: 0;
    display: block;
}

.gallery-video-badge {
    position: absolute;
    left: 14px;
    top: 14px;
    background: rgba(0, 0, 0, 0.75);
    color: #fff;
    padding: 0.25rem 0.7rem;
    border-radius: 999px;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.gallery-images {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.7rem;
}

.gallery-img-item {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.gallery-img-item img {
    width: 100%;
    height: 120px;
    object-fit: cover;
}

/* CONTACT */
.contact-inner {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 2rem;
    align-items: flex-start;
}

.contact-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 1.4rem 1.3rem;
    box-shadow: var(--shadow-soft);
}

.contact-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.contact-card p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.9rem;
}

.contact-info-list {
    display: grid;
    gap: 0.7rem;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
}

.contact-info-item i {
    margin-top: 0.2rem;
    color: var(--primary);
}

.contact-form {
    display: grid;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    font-size: 0.85rem;
}

label {
    color: #555;
}

input,
textarea {
    padding: 0.6rem 0.75rem;
    border-radius: 10px;
    border: 1px solid #e1e1e1;
    outline: none;
    font-family: inherit;
    font-size: 0.9rem;
    transition: var(--transition);
    resize: vertical;
    min-height: 42px;
}

input:focus,
textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 1px rgba(213, 35, 23, 0.18);
}

.map-wrapper iframe {
    width: 100%;
    min-height: 280px;
    border: 0;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}

/* POPUP FORM */
.popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.popup-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.popup {
    background: #fff;
    border-radius: 20px;
    padding: 1.4rem 1.3rem 1.1rem;
    width: min(360px, 94%);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    position: relative;
}

.popup-close {
    position: absolute;
    top: 8px;
    right: 10px;
    border: none;
    background: transparent;
    font-size: 1.1rem;
    cursor: pointer;
    color: #999;
}

.popup h3 {
    font-size: 1.1rem;
    margin-bottom: 0.15rem;
    color: var(--dark);
}

.popup p {
    font-size: 0.82rem;
    color: #777;
    margin-bottom: 0.75rem;
}

.popup-form {
    display: grid;
    gap: 0.65rem;
    margin-top: 0.3rem;
}

.popup-form input {
    min-height: 40px;
}

.popup-note {
    font-size: 0.72rem;
    color: #999;
    margin-top: 0.4rem;
}

/* FOOTER */
footer {
    background: #111;
    color: #ccc;
    padding: 3rem 0 1.5rem;
    margin-top: 2rem;
}

.footer-top {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-col h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Footer About Section */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer-logo-img {
    width: 55px;
    height: 55px;
    object-fit: contain;
    border-radius: 50%;
    background: #D52317;
    padding: 8px;
    box-shadow: 0 4px 12px rgba(213, 35, 23, 0.2);
    flex-shrink: 0;
}

.footer-logo h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.footer-about p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: #aaa;
    margin: 0 0 1.5rem 0;
}

/* Social Icons */
.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #D52317;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(213, 35, 23, 0.3);
}

.footer-social a:hover {
    background: #D52317;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(213, 35, 23, 0.3);
}

/* Footer Links */
.footer-links ul,
.footer-services ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links a,
.footer-services a {
    color: #aaa;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover,
.footer-services a:hover {
    color: #D52317;
    padding-left: 5px;
}

/* Footer Contact Items */
.footer-contact-item {
    display: flex;
    gap: 0.8rem;
    align-items: flex-start;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #aaa;
}

.footer-contact-item i {
    color: #D52317;
    margin-top: 2px;
    flex-shrink: 0;
    font-size: 1rem;
}

.footer-contact-item a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-item a:hover {
    color: #D52317;
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.85rem;
    color: #666;
}

.footer-bottom p {
    margin: 0;
}

/* RESPONSIVE FOOTER */
@media (max-width: 1200px) {
    .footer-top {
        gap: 2rem;
    }

    .footer-col h4 {
        font-size: 0.95rem;
    }
}

@media (max-width: 1024px) {
    .footer-top {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.8rem;
        margin-bottom: 1.5rem;
    }

    .footer-col h4 {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    .footer-about p {
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {
    footer {
        padding: 2rem 0 1rem;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 1rem;
        padding-bottom: 1rem;
    }

    .footer-col h4 {
        font-size: 0.85rem;
        margin-bottom: 0.8rem;
    }

    .footer-logo {
        margin-bottom: 1rem;
    }

    .footer-logo-img {
        width: 50px;
        height: 50px;
    }

    .footer-logo h3 {
        font-size: 1.1rem;
    }

    .footer-about p {
        font-size: 0.8rem;
        margin-bottom: 1rem;
    }

    .footer-social {
        gap: 0.8rem;
    }

    .footer-social a {
        width: 38px;
        height: 38px;
        font-size: 0.95rem;
    }

    .footer-links a,
    .footer-services a {
        font-size: 0.85rem;
    }

    .footer-contact-item {
        font-size: 0.85rem;
        margin-bottom: 0.8rem;
    }

    .footer-bottom {
        padding-top: 1rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 540px) {
    .footer-top {
        gap: 1.2rem;
    }

    .footer-col h4 {
        font-size: 0.8rem;
    }

    .footer-logo h3 {
        font-size: 1rem;
    }

    .footer-logo-img {
        width: 45px;
        height: 45px;
        padding: 6px;
    }

    .footer-social a {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }
}

/* ADDITIONAL RESPONSIVE IMPROVEMENTS */

@media (max-width: 992px) {
    .container {
        width: min(95%, 1000px);
    }

    nav ul {
        gap: 1.2rem;
        font-size: 0.9rem;
    }

    section {
        padding: 2.5rem 0;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .about-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-list {
        grid-template-columns: 1fr;
        gap: 0.6rem;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.1rem;
    }

    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .gallery-images {
        grid-template-columns: repeat(3, 1fr);
    }

    .contact-inner {
        grid-template-columns: 1fr;
        gap: 1.8rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: flex-start;
    }

    
    .hero-meta {        
        align-items: center;
    }

    .btn-primary,
    .btn-outline {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .container {
        width: 95%;
    }

    header {
        padding: 0.6rem 0;
    }

    .nav {
        padding: 0.6rem 0;
    }

    .logo {
        font-size: 0.95rem;
    }

    .logo-icon {
        width: 32px;
        height: 32px;
        font-size: 0.95rem;
    }

    nav ul {
        gap: 1rem;
        font-size: 0.85rem;
    }

    .hero {
        padding: 2rem 0;
    }

    .hero-title {
        font-size: 1.5rem;
        line-height: 1.3;
    }

    .hero-text {
        font-size: 0.9rem;
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 0.25rem 0.6rem;
    }

    .hero-meta {
        gap: 0.8rem;
        margin-top: 1rem;
        font-size: 0.78rem;
        justify-content: center;
    }

    .hero-image-slider {
        min-height: 240px;
    }

    section {
        padding: 2rem 0;
    }

    .section-heading {
        margin-bottom: 1.8rem;
    }

    .section-title {
        font-size: 1.3rem;
    }

    .section-subtitle {
        font-size: 0.88rem;
    }

    .about-content h3 {
        font-size: 1.2rem;
    }

    .about-content p {
        font-size: 0.87rem;
    }

    .about-image-main img {
        height: 220px;
    }

    .service-card {
        padding: 1rem;
        gap: 0.5rem;
    }

    .service-icon {
        height: 160px;
    }

    .service-card h3 {
        font-size: 0.95rem;
    }

    .service-card p {
        font-size: 0.83rem;
    }

    .review-card {
        padding: 0.9rem;
        font-size: 0.82rem;
    }

    .avatar {
        width: 30px;
        height: 30px;
        font-size: 0.75rem;
    }

    .review-name {
        font-size: 0.83rem;
    }

    .review-meta {
        font-size: 0.73rem;
    }

    .gallery-video video,
    .gallery-video iframe {
        min-height: 220px;
    }

    .gallery-img-item img {
        height: 100px;
    }

    .contact-card {
        padding: 1.1rem 1rem;
    }

    .contact-card h3 {
        font-size: 1rem;
    }

    .popup {
        width: min(320px, 92%);
        padding: 1.2rem 1.1rem;
    }

    .popup h3 {
        font-size: 1rem;
    }

    .popup p {
        font-size: 0.8rem;
    }

    input,
    textarea {
        padding: 0.5rem 0.65rem;
        font-size: 0.85rem;
        min-height: 38px;
    }

    .popup-form input {
        min-height: 36px;
    }
}

@media (max-width: 640px) {
    .container {
        width: 96%;
    }

    .hero-slider-wrapper {
        gap: 1.5rem;
    }

    .hero-title {
        font-size: 1.3rem;
    }

    .hero-cta {
        flex-direction: column;
        gap: 0.6rem;
    }

    .btn-primary,
    .btn-outline {
        width: 100%;
        padding: 0.5rem 1.2rem;
        font-size: 0.85rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .gallery-images {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }

    .gallery-img-item img {
        height: 90px;
    }

    .about-list {
        grid-template-columns: 1fr;
    }

    .about-list li {
        padding: 8px;
        font-size: 10px;
        border-width: 3px;
    }

    .contact-info-list {
        gap: 0.6rem;
    }

    .service-icon {
        height: 140px;
    }

    .hero-meta {
        flex-direction: column;
        gap: 0.6rem;
    }
}

@media (max-width: 480px) {
    .container {
        width: 96%;
    }

    .nav {
        padding: 0.5rem 0;
    }

    .logo {
        font-size: 0.9rem;
    }

    .hero {
        padding: 1.5rem 0;
    }

    .hero-title {
        font-size: 1.15rem;
        line-height: 1.25;
        margin-bottom: 0.4rem;
    }

    .hero-text {
        font-size: 0.85rem;
        margin-top: 0.4rem;
    }

    .hero-image-slider {
        min-height: 200px;
    }

    .hero-slider-dots {
        bottom: 10px;
        left: 50%;
        transform: translateX(-50%);
    }

    .hero-slider-dot {
        width: 5px;
        height: 5px;
    }

    .hero-slider-dot.active {
        width: 14px;
    }

    section {
        padding: 1.5rem 0;
    }

    .section-title {
        font-size: 1.15rem;
    }

    .section-subtitle {
        font-size: 0.85rem;
    }

    .service-card {
        padding: 0.8rem;
    }

    .service-icon {
        height: 120px;
        margin-bottom: 0;
    }

    .service-card h3 {
        font-size: 0.9rem;
    }

    .service-card p {
        font-size: 0.8rem;
    }

    .service-meta {
        flex-direction: column;
        gap: 0.4rem;
        align-items: flex-start;
        font-size: 0.75rem;
    }

    .review-card {
        padding: 0.8rem;
    }

    .review-card::before {
        font-size: 3rem;
        right: 12px;
        top: -15px;
    }

    .popup {
        width: min(300px, 90%);
        padding: 1rem;
    }

    .popup-close {
        top: 6px;
        right: 8px;
        font-size: 1rem;
    }

    .popup h3 {
        font-size: 0.95rem;
        margin-bottom: 0.1rem;
    }

    .popup p {
        font-size: 0.78rem;
        margin-bottom: 0.6rem;
    }

    input,
    textarea {
        padding: 0.45rem 0.6rem;
        font-size: 0.82rem;
        min-height: 36px;
    }

    .popup-form input {
        min-height: 34px;
    }

    .popup-note {
        font-size: 0.7rem;
    }

    .map-wrapper iframe {
        min-height: 240px;
    }

    .hero-meta {
        gap: 0.5rem;
    }

    .hero-meta-item {
        font-size: 0.75rem;
    }
}

/* STICKY CONTACT ICONS */
.sticky-contact-icons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

.sticky-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

/* WhatsApp Icon */
.whatsapp-icon {
    background: #25D366;
    animation: bounce-whatsapp 2s infinite;
}

.whatsapp-icon:hover {
    background: #20ba5a;
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
}

.whatsapp-icon:active {
    transform: scale(0.95);
}

/* Call Icon */
.call-icon {
    background: #D52317;
    animation: bounce-call 2s infinite;
    animation-delay: 0.2s;
}

.call-icon:hover {
    background: #a91a0f;
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(213, 35, 23, 0.5);
}

.call-icon:active {
    transform: scale(0.95);
}

/* Bounce Animations */
@keyframes bounce-whatsapp {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

@keyframes bounce-call {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

/* Responsive Sticky Icons */
@media (max-width: 768px) {
    .sticky-contact-icons {
        bottom: 20px;
        right: 20px;
        gap: 12px;
    }

    .sticky-icon {
        width: 55px;
        height: 55px;
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .sticky-contact-icons {
        bottom: 15px;
        right: 15px;
        gap: 10px;
    }

    .sticky-icon {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
    }
}

/* GALLERY BUTTON RESPONSIVE */
.gallery-btn-container {
    text-align: center;
    margin-top: 40px;
}

.gallery-btn-container .btn-primary {
    display: inline-block;
    width: auto;
    padding: 12px 40px;
}

@media (max-width: 768px) {
    .gallery-btn-container .btn-primary {
        width: 100%;
        max-width: 100%;
    }
}