@import url('https://fonts.googleapis.com/css2?family=Kameron:wght@400..700&family=Lora:ital,wght@0,400..700;1,400..700&family=Noto+Serif:ital,wght@0,100..900;1,100..900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

/* ===========================
   ROOT VARIABLES & COLORS
   =========================== */
:root {
    --themeColor: #272727;
    --primaryColor: #FDFCFD;
    --textColor: rgb(67 67 67);
    --textLight: rgb(117 117 117);
    --whiteColor: #fff;
}

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

html {
    scroll-behavior: smooth;
}

/* Disable smooth scroll on mobile to prevent navbar jump */
@media (max-width: 991px) {
    html {
        scroll-behavior: auto;
    }
}

body {
    font-family: "Noto Serif", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    color: var(--textColor);
    background-color: var(--whiteColor);
    overflow-x: hidden;
    line-height: normal !important;
}

/* ===========================
   CUSTOM SCROLLBAR
   =========================== */
::-webkit-scrollbar {
    width: 4px;
    height: 4px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--themeColor);
    border-radius: clamp(6px, 0.8vw, 8px);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--themeColor);
}


/* Font Sizes */
.font-10 {
    font-size: 10px;
}

.font-11 {
    font-size: 11px;
}

.font-12 {
    font-size: clamp(10px, 1.2vw, 12px);
}

.font-14 {
    font-size: clamp(12px, 1.4vw, 14px);
}

.font-16 {
    font-size: clamp(14px, 1.6vw, 16px);
}

.font-18 {
    font-size: clamp(15px, 1.8vw, 18px);
}

.font-20 {
    font-size: clamp(16px, 2vw, 20px);
}

.font-22 {
    font-size: clamp(18px, 2.2vw, 22px);
}

.font-24 {
    font-size: clamp(20px, 2.4vw, 24px);
}

.font-28 {
    font-size: clamp(20px, 2.8vw, 28px);
}

.font-30 {
    font-size: clamp(20px, 3vw, 30px);
}

.font-32 {
    font-size: clamp(24px, 3.2vw, 32px);
}

.font-40 {
    font-size: clamp(28px, 3.5vw, 40px);
}

.font-48 {
    font-size: clamp(28px, 4.8vw, 48px);
}

.font-56 {
    font-size: clamp(28px, 5.6vw, 56px);
}

.font-64 {
    font-size: clamp(36px, 6.4vw, 64px);
}

/* Font Weights */
.light {
    font-weight: 300;
}

.regular {
    font-weight: 400;
}

.medium {
    font-weight: 500;
}

.semibold {
    font-weight: 600;
}

.bold {
    font-weight: 700;
}

/* ===========================
   COLORS
   =========================== */
.primaryColor {
    color: var(--primaryColor);
}

.themeColor {
    color: var(--themeColor);
}

.textColor {
    color: var(--textColor);
}

.textLight {
    color: var(--textLight);
}

.line-height-28 {
    line-height: clamp(1.375rem, 1.3047rem + 0.375vw, 1.75rem) !important;
}

.line-height-24 {
    line-height: clamp(1.25rem, 1.2031rem + 0.25vw, 1.5rem) !important;
}

.line-height-22 {
    line-height: clamp(1.125rem, 1.0781rem + 0.25vw, 1.375rem) !important;
}

/*  NAVBAR */

.navbar {
    background: var(--themeColor);
    backdrop-filter: blur(4px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 100;
    transition: all 0.3s ease;
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    padding: 4px 0px;
}

.navbar-logo {
    height: clamp(60px, 5vw, 80px);
    width: auto;
    transition: all 0.3s ease;
}

.navbar-logo:hover {
    transform: scale(1.05);
}

.navbar-nav .nav-link {
    transition: all 0.3s ease;
    position: relative;
    color: var(--whiteColor);
}

.navbar-nav .nav-link:hover {
    color: var(--primaryColor);
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show {
    color: var(--whiteColor);
}

.navbar-nav .nav-link.active {
    color: var(--whiteColor) !important;
    border-bottom: 1px solid #ffffff;
}

.navbar-toggler-icon {
    background-color: var(--primaryColor);
    border-radius: 2px;
    background-size: 80% !important;
    transition: all 0.3s ease;
    background-repeat: no-repeat;
    background-position: center;
}

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

.navbar-brand {
    height: clamp(65px, 6vw, 75px);
    width: auto;
    transition: all 0.3s ease;
    display: block;
}

/* Navbar toggler - show close icon when navbar is open */
.navbar-toggler-open .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000000' stroke-width='2' stroke-linecap='round'%3E%3Cline x1='18' y1='6' x2='6' y2='18'/%3E%3Cline x1='6' y1='6' x2='18' y2='18'/%3E%3C/svg%3E") !important;
}

/* Services Dropdown Arrow */
.navbar-nav .dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.navbar-nav .dropdown-toggle::after {
    content: '';
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid currentColor;
    transition: transform 0.3s ease;
    margin-left: 4px;
}

.navbar-nav .dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(180deg);
}

.dropdown-menu {
    border-radius: clamp(6px, 0.8vw, 8px);
    box-shadow: 0 8px 24px rgba(1, 5, 53, 0.12);
    padding: 8px 0;
    animation: dropdownSlide 0.3s ease;
    margin-top: 8px;
    min-width: max-content;
    position: absolute !important;
    left: -100% !important;
}

@keyframes dropdownSlide {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-menu .dropdown-item {
    color: var(--textColor) !important;
    padding: clamp(0.5rem, 0.4779rem + 0.1176vw, 0.625rem) 20px;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
}

.dropdown-menu .dropdown-item:hover {
    background: rgb(109 107 107 / 8%);
    padding-left: 20px;
    color: var(--themeColor) !important;
}

/* ===========================
   HERO SECTION
   =========================== */
.hero-section {
    min-height: 100vh;

}


@media (max-width: 991px) {
    .hero-section {
        min-height: 500px;
    }

    .hero-content-overlay {
        padding: clamp(1.5rem, 3vw, 2rem) 0;
    }

    /* Prevent navbar from jumping on mobile */
    .navbar {
        min-height: 85px;
    }

    .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(42, 42, 42, 0.9) 100%);
        backdrop-filter: blur(20px);
        border-bottom: 1px solid rgba(136, 26, 19, 0.3);
    }

    .navbar-nav {
        padding: 0px 0px 14px;

    }

    .navbar-nav .nav-link {
        color: var(--whiteColor);
    }

    .navbar.navbar-scrolled .navbar-collapse {
        background: #000000;
    }
}

@media(max-width: 1200px) {
    .container {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
}

.btn-primary-custom {
    letter-spacing: 0.04em;
    color: var(--textColor);
    background: var(--primaryColor);
    padding: clamp(0.5rem, 0.4766rem + 0.125vw, 0.625rem) clamp(0.75rem, 0.6563rem + 0.5vw, 1.25rem);
    border-radius: 100px;
    text-decoration: none;
    display: inline-flex;
    transition: all 0.3s ease;
    align-items: center;
    gap: 8px;
}

.btn-primary-custom svg {
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary-custom:hover {
    background: var(--whiteColor);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.btn-primary-custom:hover svg {
    transform: translateX(clamp(2px, 0.5vw, 4px));
}

.btn-outline-custom {
    padding: clamp(0.5rem, 0.4766rem + 0.125vw, 0.625rem) clamp(0.875rem, 0.8047rem + 0.375vw, 1.25rem);
    border: 1px solid rgba(1, 5, 53, 0.18);
    border-radius: 100px;
    text-decoration: none;
    transition: border-color .25s, color .25s;
}

.btn-outline-custom:hover {
    border-color: var(--themeColor);
    color: var(--themeColor)
}

.btn-outline-custom:hover svg {
    stroke: var(--themeColor);
}

/* ===========================
   ADVANCED SERVICES SECTION
   =========================== */
.service-section-heading {
    position: relative;
    z-index: 2;
}

.service-section-heading .primaryColor {
    font-style: italic;
    background: linear-gradient(135deg, var(--primaryColor) 0%, rgba(253, 252, 253, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-card:hover {
    border-color: var(--themeColor);
    box-shadow: 0 10px 20px rgba(39, 39, 39, 0.12);
}

.service-card-image-wrapper {
    width: 100%;
    height: clamp(240px, 32vw, 300px);
    background: linear-gradient(135deg, rgba(39, 39, 39, 0.05) 0%, rgba(39, 39, 39, 0.02) 100%);
}

.service-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

.service-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(39, 39, 39, 0.3) 0%,
            rgba(39, 39, 39, 0.15) 100%);
    opacity: 0;
    transition: opacity 0.6s ease;
    z-index: 2;
}

.service-card:hover .service-card-overlay {
    opacity: 1;
}

.service-card-number {
    position: absolute;
    top: 16px;
    right: 16px;
    width: clamp(2.75rem, 2.6797rem + 0.375vw, 3.125rem);
    height: clamp(2.75rem, 2.6797rem + 0.375vw, 3.125rem);
    background: linear-gradient(135deg, var(--themeColor) 0%, rgba(39, 39, 39, 0.8) 100%);
    color: var(--primaryColor);
    border-radius: 50%;
    z-index: 3;
    box-shadow: 0 8px 20px rgba(39, 39, 39, 0.2);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.service-card:hover .service-card-number {
    transform: scale(1.15) rotate(-15deg);
    box-shadow: 0 12px 32px rgba(39, 39, 39, 0.3);
}

.service-card-icon-bg {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: rgba(39, 39, 39, 0.08);
    z-index: 1;
    transition: all 0.6s ease;
}

.service-card:hover .service-card-icon-bg {
    background: rgba(39, 39, 39, 0.12);
    transform: scale(1.3);
}

.service-card-content {
    flex-grow: 1;
}

.service-card-line {
    width: 32px;
    height: 2px;
    background: linear-gradient(90deg, var(--themeColor) 0%, transparent 100%);
    border-radius: 2px;
    transition: all 0.5s ease;
}

.service-card-title {
    color: var(--textColor);
    letter-spacing: -0.01em;
    transition: all 0.4s ease;
    line-height: 1.3;
}

.service-card:hover .service-card-title {
    color: var(--themeColor);
}

.service-card-desc {
    color: var(--textLight);
    line-height: 1.65;
}

.feature-badge {
    display: inline-flex;
    padding: 4px 8px;
    background: linear-gradient(135deg, rgba(39, 39, 39, 0.06) 0%, rgba(39, 39, 39, 0.03) 100%);
    border: 1px solid rgba(39, 39, 39, 0.12);
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: default;
}

.feature-badge span {
    letter-spacing: 0.05em;
}

.service-card:hover .feature-badge {
    background: linear-gradient(135deg, rgba(39, 39, 39, 0.1) 0%, rgba(39, 39, 39, 0.06) 100%);
    border-color: var(--themeColor);
    transform: translateY(-2px);
}

.premium-card {
    border-left: 4px solid transparent;
    height: 100%;
    background: linear-gradient(to right, var(--whiteColor) 0%, var(--whiteColor) calc(100% - 1px), rgba(39, 39, 39, 0.08) 100%);
    background-clip: padding-box;
    box-shadow: 0px 0px 10px #d1d1d1;
    border-image: linear-gradient(180deg, var(--themeColor) 0%, rgba(39, 39, 39, 0.25) 100%) 1;
}

.premium-card:hover {
    border-left: 4px solid var(--themeColor);
}

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

    .service-card-image-wrapper {
        height: 240px;
    }

}

/* ===========================
   BRIDAL SECTION
   =========================== */
.bridal-section {
    background: var(--bgColor);
}

.bridal-section>.container {
    position: relative;
    z-index: 1;
}

.bridal-content-col {
    padding-right: clamp(8px, 5vw, 64px);
}

.bridal-tag-icon svg {
    flex-shrink: 0;
}

.bridal-section-tag {
    letter-spacing: .22em;
}

.bridal-heading {
    font-family: var(--font-display);
    line-height: 1.3;
    letter-spacing: -.015em;
}

.bridal-heading em {
    font-style: italic;
}

.fancy-rule {
    gap: 12px;
}

.fancy-rule-bar {
    height: 1.5px;
    width: 40px;
    background: var(--themeColor);
}

.fancy-rule-text {
    font-family: var(--font-display);
    font-style: italic;
    color: rgba(1, 5, 53, 0.38);
    letter-spacing: .04em;
}

.bridal-body {
    color: rgba(1, 5, 53, 0.52);
    line-height: 1.88;
}

.bridal-checklist {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 16px;
}

.bridal-checklist li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: clamp(12px, 1.3vw, 13px);
    color: rgba(1, 5, 53, 0.60);
    letter-spacing: .01em;
}

.check-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    border-radius: 50%;
    border: 1.5px solid var(--themeColor);
}

.check-icon svg {
    display: block;
}

.bridal-highlight-card {
    background: var(--textColor);
    border-radius: 12px;
}

.bridal-highlight-card::before {
    content: '';
    position: absolute;
    top: -30px;
    right: -30px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: rgba(244, 18, 0, 0.15);
}

.bridal-highlight-card p {
    font-family: var(--font-display);
    font-style: italic;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.65;
    margin: 0 0 12px;
    z-index: 1;
}

.bridal-highlight-card cite {
    letter-spacing: .14em;
    color: rgba(255, 255, 255, 0.38);
    font-style: normal;
}

.bridal-img-col {
    padding-left: clamp(8px, 3vw, 28px);
}

.bridal-mosaic {
    height: clamp(440px, 56vw, 550px);
}

.mosaic-tr {
    border-radius: 4px 55px 4px 4px;
    height: 100%;
}

.mosaic-tr img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    display: block;
    filter: contrast(1.04) saturate(1.07);
    transition: transform .55s ease;
}

.mosaic-tr:hover img {
    transform: scale(1.04);
}

@media(max-width:991px) {
    .bridal-content-col {
        order: 2;
    }

    .bridal-img-col {
        order: 1;
    }

    .bridal-mosaic {
        height: clamp(340px, 85vw, 460px);
    }

    .bridal-checklist {
        grid-template-columns: 1fr
    }
}

/* ===========================
   FAQ SECTION - SIMPLE & CLEAN
   =========================== */

.section-badge {
    display: inline-flex;
    padding: 6px 14px;
    border: 1px solid var(--themeColor);
    border-radius: 50px;
    background: #00000000;
    letter-spacing: 0.12em;
    margin-bottom: 18px;
    font-size: 11px;
    color: var(--themeColor);
}

.faq-accordion {
    gap: 12px;
}

.faq-heading {
    letter-spacing: -0.01em;
    color: var(--textColor);
}

.faq-heading em {
    font-style: italic;
    color: var(--themeColor);
}

.testimonials-heading {
    font-family: var(--font-display);
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.testimonials-heading em {
    font-style: italic;
    color: var(--themeColor);
}

.faq-subtext {
    max-width: 550px;
    margin: 0 auto;
    color: var(--textLight);
}

.header-divider {
    width: 40px;
    height: 2px;
    background: var(--themeColor);
    margin: 14px auto;
    border-radius: 2px;
    opacity: 0.7;
}

.faq-item {
    background: var(--whiteColor);
    border: 1px solid rgba(45, 45, 45, 0.1);
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.25s ease;
    box-shadow: none;
}

.faq-item:hover {
    border-color: var(--themeColor);
    box-shadow: 0 4px 12px rgba(39, 39, 39, 0.08);
}

.faq-item.open {
    border-color: var(--themeColor);
    background: rgba(39, 39, 39, 0.02);
}

.faq-trigger {
    width: 100%;
    background: none;
    cursor: pointer;
    padding: 12px 20px;
    text-align: left;
    border: none;
    transition: all 0.25s ease;
    font-family: var(--font-body);
}

.faq-trigger:hover {
    background: rgba(39, 39, 39, 0.02);
}

.faq-trigger-left {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.faq-badge {
    color: #2d2d2d5e;
    font: 800 24px Arial;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 1px;
}

.faq-q {
    line-height: 1.5;
    transition: color 0.25s ease;
    flex: 1;
}

.faq-item.open .faq-q {
    color: var(--themeColor);
}

.faq-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    background: transparent;
    border: 1px solid rgba(45, 45, 45, 0.15);
    border-radius: 4px;
    transition: all 0.25s ease;
}

.faq-item:hover .faq-toggle {
    border-color: var(--themeColor);
}

.faq-item.open .faq-toggle {
    background: var(--themeColor);
    border-color: var(--themeColor);
}

.faq-chevron {
    color: var(--textColor);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), color 0.25s ease;
    stroke: currentColor;
    stroke-width: 2;
}

.faq-item.open .faq-chevron {
    transform: rotate(180deg);
    color: var(--whiteColor);
}

.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-body-inner {
    padding: 0 20px 18px 68px;
    color: var(--textColor);
    line-height: 1.7;
    border-top: 1px solid rgba(45, 45, 45, 0.08);
    padding-top: 14px;
}

.faq-body-inner strong {
    color: var(--themeColor);
    font-weight: 600;
}

/* ===========================
   CTA SECTION - CLAMP ONLY
   =========================== */
.cta-section {
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: clamp(350px, 60vh, 450px);
}


@keyframes overlayPulse {

    0%,
    100% {
        opacity: 0.7;
    }

    50% {
        opacity: 0.75;
    }
}

.cta-section>.container {
    position: relative;
    z-index: 2;
    height: 100%;
}

.cta-section h2,
.cta-section p {
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.cta-btn-primary {
    background: var(--whiteColor);
    color: var(--themeColor);
    box-shadow: 0 8px 25px rgba(244, 18, 0, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.cta-btn-primary svg {
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(244, 18, 0, 0.4);
}

.cta-btn-primary:hover svg {
    transform: translateX(clamp(2px, 0.5vw, 4px));
}

.cta-btn-secondary {
    background: transparent;
    color: var(--whiteColor);
    border-color: var(--whiteColor);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.cta-btn-secondary svg {
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}


.cta-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--whiteColor);
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.3);
}


/* ===========================
   FOOTER SECTION - CLEAN & SIMPLE
   =========================== */
.footer-section {
    background: var(--themeColor);
    padding: clamp(1rem, 5vw, 2rem) 0 clamp(2rem, 3vw, 2rem);
    border-top: 1px solid var(--borderColor);
}

.footer-logo {
    height: 75px;
    width: auto;
    transition: all 0.3s ease;
    display: block;
}

.footer-logo:hover {
    transform: scale(1.08);
}

.footer-text {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

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

.footer-list li {
    margin-bottom: clamp(0.8rem, 1.2vw, 1rem);
}

.footer-list a {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    display: inline-block;
}

.footer-link::after {
    content: '→';
    margin-left: 0.5rem;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-link:hover::after {
    opacity: 1;
    transform: translateX(0);
    color: var(--primaryColor);
}

.footer-list a:hover {
    color: var(--primaryColor);
}

.footer-col {
    transition: all 0.3s ease;
}

.footer-col:hover {
    transform: translateY(-4px);
}

.footer-title {
    color: var(--whiteColor);
    margin-bottom: clamp(1.5rem, 2vw, 1.8rem);
    font-size: clamp(14px, 1.6vw, 16px);
    position: relative;
    padding-bottom: 12px;
    display: inline-block;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--themeColor) 0%, var(--whiteColor) 100%);
    transition: all 0.3s ease;
}

.footer-col:hover .footer-title::after {
    width: 100%;
    background: linear-gradient(90deg, var(--themeColor) 0%, var(--primaryColor) 100%);
}

.footer-social {
    display: flex;
    gap: clamp(0.8rem, 1.5vw, 1.2rem);
    margin-top: clamp(1.5rem, 2.5vw, 2rem);
    flex-wrap: wrap;
}

.footer-social-btn {
    width: clamp(40px, 5vw, 48px);
    height: clamp(40px, 5vw, 48px);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid #fdfdfd29;
    border-radius: 50%;
    color: var(--whiteColor);
    transition: all 0.3s ease;
}

.footer-social-btn:hover {
    background: var(--primaryColor);
    border-color: var(--themeColor);
    transform: translateY(-4px);
}

.footer-social-btn:hover .social-icon {
    filter: brightness(0) saturate(100%) invert(16%) sepia(4%) saturate(0%) hue-rotate(216deg) brightness(95%) contrast(89%);
}

.social-icon {
    width: clamp(18px, 2vw, 20px);
    height: clamp(18px, 2vw, 20px);
}

.footer-contact-label {
    color: var(--primaryColor);
}

.footer-contact-value {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-contact-value:hover {
    color: var(--primaryColor);
}

.footer-bottom {
    border-top: 1px solid #ffffff40;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: clamp(13px, 1.3vw, 14px);
}

.footer-bottom-links {
    display: flex;
    gap: clamp(1.5rem, 2.5vw, 2rem);
    flex-wrap: wrap;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: clamp(13px, 1.3vw, 14px);
}

.footer-bottom-links a:hover {
    color: var(--themeColor);
}


/* ===========================
   TESTIMONIALS SECTION - SIMPLE & CLEAN
   =========================== */

/* Section Background */
.testimonials-section {
    background: var(--whiteColor);
    position: relative;
}

.testimonials-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    pointer-events: none;
    z-index: 0;
}

.testimonials-section>* {
    position: relative;
    z-index: 1;
}

/* Simple Tab Buttons */
.testimonials-tab-btn {
    background: var(--whiteColor);
    border: 1px solid var(--textColor);
    color: var(--textColor);
    padding: 10px 24px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: none;
}

/* Remove animated background */
.testimonials-tab-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--themeColor);
    transition: all 0.25s ease;
    z-index: -1;
    border-radius: 6px;
    opacity: 0;
    transform: scaleX(0);
    transform-origin: left;
}

/* Remove ripple effect */
.testimonials-tab-btn::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    background: transparent;
    border-radius: 50%;
    transition: none;
    z-index: 0;
}

.testimonials-tab-btn svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    transition: all 0.25s ease;
    position: relative;
    z-index: 1;
}

.testimonials-tab-btn span {
    position: relative;
    z-index: 1;
}

ul li {
    list-style: none;
}

/* Hover State */
.testimonials-tab-btn:hover {
    border-color: var(--themeColor);
    color: var(--themeColor);
    background: rgba(39, 39, 39, 0.04);
    transform: none;
    box-shadow: none;
}

.testimonials-tab-btn:hover::after {
    display: none;
}

.testimonials-tab-btn:hover svg {
    transform: none;
}

/* Active State */
.testimonials-tab-btn.active {
    color: var(--whiteColor);
    transform: none;
    border: 1px solid var(--themeColor);
    background: var(--themeColor);
}

.testimonials-tab-btn.active::before {
    opacity: 1;
    transform: scaleX(1);
}

.testimonials-tab-btn.active svg {
    transform: none;
    filter: none;
    color: var(--whiteColor);
}

/* Tab Content */
.testimonials-content {
    display: none;
    animation: fadeIn 0.4s ease-in-out;
}

.testimonials-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Slider Container */
.testimonials-slider {
    width: 100%;
    position: relative;
}

.testimonials-track {
    display: flex;
    gap: clamp(1rem, 3vw, 1.4rem);
    width: fit-content;
}

.testimonials-track:hover {
    /* Pause handled by JavaScript */
}

.testimonial-item {
    flex-shrink: 0;
    width: clamp(280px, 30vw, 340px);
    cursor: pointer;
}

.testimonial-video {
    border-radius: 6px;
    transition: all 0.25s ease;
    background: rgba(39, 39, 39, 0.03);
    border: 1px solid rgba(45, 45, 45, 0.1);
}

.testimonial-video:hover {
    transform: translateY(-3px);
    border-color: var(--themeColor);
    box-shadow: 0 4px 12px rgba(39, 39, 39, 0.08);
}

.video-container {
    width: 100%;
    height: clamp(180px, 20vw, 220px);
    border-radius: 6px;
    background: var(--textColor);
}

.video-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 6px;
}

.video-info {
    padding: 12px 0;
    position: relative;
    z-index: 1;
}

.video-info h4 {
    transition: color 0.25s ease;
    color: var(--textColor);
}

.testimonial-video:hover .video-info h4 {
    color: var(--themeColor);
}

/* Feedback Card - Simple & Clean */
.feedback-card {
    background: var(--whiteColor);
    border: 1px solid rgba(45, 45, 45, 0.1);
    border-radius: 4px;
    padding: 20px;
    transition: all 0.25s ease;
    height: 100%;
    box-shadow: none;
}

.feedback-card::before {
    content: "";
    display: none;
}

.feedback-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 16px rgba(39, 39, 39, 0.1);
    border-color: var(--themeColor);
}

.feedback-card:hover::after {
    display: none;
}

.feedback-header {
    position: relative;
    z-index: 2;
    margin-bottom: 12px;
}

.feedback-avatar {
    flex-shrink: 0;
}

.avatar-circle {
    width: 48px;
    height: 48px;
    background: var(--themeColor);
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(39, 39, 39, 0.12);
    transition: all 0.25s ease;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--whiteColor);
    font-weight: 600;
    font-size: 14px;
}

.avatar-circle::before {
    display: none;
}

.feedback-card:hover .avatar-circle {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(39, 39, 39, 0.15);
}

.feedback-card:hover .avatar-circle::before {
    display: none;
}

.feedback-stars {
    gap: 4px;
}

.star-icon {
    width: 14px;
    height: 14px;
    color: var(--themeColor);
    fill: var(--themeColor);
    filter: none;
    transition: transform 0.25s ease;
}

.feedback-card:hover .star-icon {
    transform: none;
}

.feedback-card>p {
    position: relative;
    z-index: 2;
    color: var(--textLight);
    line-height: 1.6;
    font-size: 14px;
    margin: 12px 0;
}

.feedback-footer {
    z-index: 2;
    border-top: 1px solid rgba(45, 45, 45, 0.08);
    padding-top: 12px;
    margin-top: 12px;
}

.feedback-footer h4 {
    transition: color 0.25s ease;
    color: var(--textColor);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 2px;
}

.feedback-footer p {
    color: var(--textLight);
    font-size: 12px;
    margin: 0;
}

.feedback-card:hover .feedback-footer h4 {
    color: var(--themeColor);
}

/* Responsive Design */
@media (max-width: 768px) {
    .testimonials-tab-btn {
        padding: 8px 20px;
        font-size: 13px;
    }

    .testimonial-item {
        width: 280px;
    }

    .hero-section-about {
        min-height: 430px;
    }
}



/* CTA Section - Mobile Responsive */
@media (max-width: 991px) {
    .cta-card {
        flex-direction: column;
        padding: clamp(1.5rem, 4vw, 2rem);
    }

    .cta-left {
        width: 100%;
        padding: 0;
    }

    .cta-contacts {
        flex-direction: column;
        gap: 1rem;
    }

    .cta-contact {
        width: 100%;
        padding: 1rem;
        border-right: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }

    .cta-contact:last-child {
        border-bottom: none;
    }

    .cta-contact-value {
        font-size: clamp(12px, 2.5vw, 14px);
        text-align: center;
        word-break: break-all;
    }

    .cta-badge {
        top: 1rem;
        right: 1rem;
        width: 60px;
        height: 60px;
    }

    .cta-badge-num {
        font-size: 18px;
    }

    .cta-badge-text {
        font-size: 7px;
    }

    .cta-strip {
        padding: 1rem;
        flex-direction: column;
        text-align: center;
    }

    .cta-strip-text {
        font-size: 10px;
    }
}

@media (max-width: 576px) {

    .cta-contact-value {
        font-size: 12px;
    }

    .cta-bg-text {
        font-size: 65px;
        top: 33%;
    }

    .approach-section img {
        min-height: 300px !important;
    }

    .filter-tabs {
        overflow: auto;
    }

    .slider-scroll-track {
        animation: scrollSlider 35s linear infinite;
    }

    .about-image-wrapper {
        aspect-ratio: 1.5 / 1 !important;
    }

    .collage-grid {
        display: none;
    }
}


.equipment-content {
    flex: 1;
}


/* ===========================
   CONTENT SECTION (SEO)
   =========================== */
.content-area {
    border-radius: clamp(6px, 0.8vw, 8px);
    padding: clamp(1rem, 3vw, 1.5rem);
    border: 1px solid rgba(1, 5, 53, 0.08);
}


.content-area h3 {
    color: var(--textColor);
    margin-top: clamp(2rem, 3vw, 2.5rem) !important;
    margin-bottom: clamp(1rem, 1.5vw, 1.5rem) !important;
}

.content-area ul li {
    position: relative;
    padding-left: clamp(1.5rem, 2vw, 2rem);
    margin-bottom: clamp(0.8rem, 1.5vw, 1.2rem);
    line-height: 1.8;
}

.content-area ul li strong {
    color: var(--textColor);
    font-weight: 600;
}

.content-area p {
    color: rgba(1, 5, 53, 0.65);
    margin-bottom: clamp(1.2rem, 2vw, 1.8rem);
    line-height: 1.85;
}

.content-area a.btn-primary-custom {
    margin-top: clamp(1rem, 2vw, 2rem);
}











/* ===========================
   GALLERY FILTER SECTION - SAME AS PORTFOLIO NUMBERS BG
   =========================== */
.gallery-filter-section {
    background: linear-gradient(135deg, var(--primaryColor) 0%, rgba(253, 252, 253, 0.9) 100%);
    border-bottom: 1px solid rgba(39, 39, 39, 0.08);
    padding: clamp(2rem, 4vw, 3rem) 0 !important;
}

.gallery-icon {
    position: absolute;
    opacity: 0.08;
    top: 50%;
    right: -20px;
    transform: translateY(-50%);
    pointer-events: none;
}

.filter-tabs {
    gap: clamp(0.5rem, 1vw, 1rem);
    white-space: nowrap;
    overflow-x: auto;
    padding-bottom: 0.5rem;
}

.filter-tabs .nav-link:focus {
    box-shadow: none;
}

.tag-line {
    width: 24px;
    height: 2px;
    background: var(--themeColor);
    border-radius: 2px;
}

/* Gallery Content Section */
.gallery-content-section {
    background: var(--whiteColor);
}

.gallery-item {
    border-radius: 4px;
    cursor: pointer;
    animation: fadeInUp 0.6s ease-out both;
}

.gallery-image-wrapper {
    overflow: hidden;
    aspect-ratio: 4/3;
    background: rgba(39, 39, 39, 0.05);
    position: relative;
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.gallery-item:hover .gallery-image {
    transform: scale(1.15) rotate(1deg);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.8) 100%);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

.gallery-content {
    width: 100%;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.gallery-item:hover .gallery-content {
    transform: translateY(0);
    opacity: 1;
}

.gallery-content h5 {
    word-wrap: break-word;
    line-height: 1.3;
}

/* Animation Effects */
.gallery-content-section .col-lg-4:nth-child(1) .gallery-item {
    animation-delay: 0.1s;
}

.gallery-content-section .col-lg-4:nth-child(2) .gallery-item {
    animation-delay: 0.2s;
}

.gallery-content-section .col-lg-4:nth-child(3) .gallery-item {
    animation-delay: 0.3s;
}

.gallery-content-section .col-lg-4:nth-child(4) .gallery-item {
    animation-delay: 0.4s;
}

.gallery-content-section .col-lg-4:nth-child(5) .gallery-item {
    animation-delay: 0.5s;
}

.gallery-content-section .col-lg-4:nth-child(6) .gallery-item {
    animation-delay: 0.6s;
}

/* ===========================
   GALLERY FILTER CARDS - NEW DESIGN
   =========================== */
.filter-card {
    background: var(--whiteColor);
    border: 1px solid rgba(39, 39, 39, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(39, 39, 39, 0.05);
    height: 100%;
}

.filter-card:hover {
    border-color: var(--themeColor);
    box-shadow: 0 8px 24px rgba(39, 39, 39, 0.1);
    transform: translateY(-4px);
}

.filter-card h3 svg {
    transition: all 0.3s ease;
}

.filter-card:hover h3 svg {
    transform: scale(1.1) rotate(5deg);
    color: var(--themeColor);
}

.filter-buttons {
    list-style: none;
    padding: 0;
    margin: 0;
}

.filter-btn {
    background: var(--whiteColor);
    border: 1px solid rgba(39, 39, 39, 0.15);
    color: var(--textColor);
    border-radius: 50px;
    transition: all 0.25s ease;
    cursor: pointer;
    font-weight: 500;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.filter-btn:hover {
    border-color: var(--themeColor);
    color: var(--themeColor);
    background: rgba(39, 39, 39, 0.02);
    transform: translateY(-2px);
}

.filter-btn.active {
    background: var(--themeColor);
    color: var(--whiteColor);
    border-color: var(--themeColor);
    box-shadow: 0 4px 12px rgba(39, 39, 39, 0.15);
}

.filter-btn.active:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(39, 39, 39, 0.2);
}

/* ===========================
   GALLERY DETAIL ITEMS - BADGE FORMAT
   =========================== */
.gallery-details {
    margin-top: clamp(0.5rem, 1vw, 1rem);
    display: flex;
    flex-wrap: wrap;
    gap: clamp(0.5rem, 1vw, 0.75rem);
}

.gallery-badge {
    display: inline-block;
    padding: clamp(0.35rem, 0.8vw, 0.5rem) clamp(0.75rem, 1.2vw, 1rem);
    font-size: clamp(0.8rem, 1.2vw, 0.9rem);
    background: rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: clamp(4px, 0.5vw, 6px);
    backdrop-filter: blur(8px);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    white-space: nowrap;
    font-weight: 500;
}

.gallery-badge svg {
    display: inline;
    margin-right: 0.4rem;
    vertical-align: middle;
    width: clamp(14px, 1.5vw, 16px);
    height: clamp(14px, 1.5vw, 16px);
    stroke: white;
    fill: none;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.gallery-badge:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: white;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.gallery-badge:hover svg {
    stroke: white;
    transform: scale(1.1);
}

/* Responsive adjustments for gallery details */
@media (max-width: 768px) {
    .gallery-details {
        gap: 0.5rem;
    }

    .gallery-badge {
        padding: 0.35rem 0.75rem;
        font-size: 0.85rem;
    }

    .gallery-image-wrapper {
        aspect-ratio: 6/3 !important;
    }
}

.video-play-icon {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 1;
    width: 50px;
    height: 50px;
    background: var(--themeColor);
    border-radius: 50%;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 0 0 rgba(245, 91, 80, 0.7);
    animation: videoPulse 2s ease-in-out infinite;
}

.video-play-icon::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    animation: ripple 2s ease-out infinite;
}

.video-play-icon svg {
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    transition: all 0.3s ease;
}

/* ===========================
   CITIES SECTION
   =========================== */
.cities-heading {
  font-family: var(--font-display);
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.city-item {
  transition: all 0.3s ease;
  border: 1px solid #27272781;
  padding: 12px;
  border-radius: clamp(6px, 0.8vw, 8px) 0px;
}

.city-item:hover .city-name {
  color: var(--themeColor);
}

.city-number {
  min-width: 40px;
  flex-shrink: 0;
  color: #e5e5e5;
  font-size: 28px;
}

.city-name {
  transition: color 0.3s ease;
}

.city-desc {
  line-height: 1.7;
}


/* ===========================
   BOOK NOW MODAL
   =========================== */

.book-now-modal {
    border-radius: clamp(6px, 0.8vw, 8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.book-now-header {
    padding: 16px 20px;
}

.book-now-body {
    padding: 24px;
}

.book-now-input {
    border: 1px solid rgba(1, 5, 53, 0.12);
    border-radius: 4px;
    padding: 10px 18px;
    transition: all 0.3s ease;
}

.book-now-input::placeholder {
    color: rgba(85, 85, 85, 0.822);
}

.book-now-input:focus {
    border-color: var(--themeColor);
    box-shadow: 0 0 0 3px rgb(147 147 147 / 16%);
    outline: none;
}

.book-now-input:hover {
    border-color: rgba(1, 5, 53, 0.2);
}

.captcha-refresh {
    cursor: pointer;
    transition: all 0.3s ease;
}

.captcha-refresh:hover {
    transform: rotate(180deg);
    opacity: 0.8;
}

.book-now-close::before,
.book-now-close::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 2px;
    background: var(--textColor);
    border-radius: 1px;
    transition: all 0.3s ease;
}

.book-now-close::before {
    transform: rotate(45deg);
}

.book-now-close::after {
    transform: rotate(-45deg);
}

.book-now-close:hover::before,
.book-now-close:hover::after {
    background: var(--themeColor);
    width: 20px;
}


.modal-backdrop {
    background-color: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(2px);
}


/* ===========================
   CONTACT SECTION - TWO COLUMN LAYOUT
   =========================== */

.contact-left-content {
    padding-right: clamp(0rem, 3vw, 2rem);
    margin-bottom: clamp(2rem, 4vw, 3rem);
}

.contact-section-title {
    font-family: var(--font-display);
    line-height: 1.2;
    letter-spacing: -0.01em;
    font-size: clamp(28px, 5vw, 40px);
}

.contact-section-desc {
    color: rgba(1, 5, 53, 0.65);
    line-height: 1.8;
}

.contact-info-item {
    display: flex;
    gap: clamp(1rem, 2vw, 1.5rem);
    align-items: flex-start;
}

.contact-info-icon {
    width: clamp(40px, 8vw, 48px);
    height: clamp(40px, 8vw, 48px);
    background: rgba(244, 18, 0, 0.08);
    border: 1px solid rgba(244, 18, 0, 0.15);
    border-radius: 6px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-info-item:hover .contact-info-icon {
    background: rgba(244, 18, 0, 0.12);
    border-color: var(--themeColor);
    transform: scale(1.08);
}


.contact-info-value {
    color: rgba(1, 5, 53, 0.65);
    text-decoration: none;
    transition: color 0.3s ease;
    line-height: 1.6;
}

.contact-info-value:hover {
    color: var(--themeColor);
}

.contact-form-wrapper {
    background: #f9f9f9;
    padding: clamp(1.5rem, 4vw, 2rem);
    border-radius: clamp(6px, 0.8vw, 8px);
    border: 1px solid rgba(1, 5, 53, 0.06);
}

.form-group {
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.contact-form-input {
    border: 1px solid rgba(1, 5, 53, 0.12);
    border-radius: clamp(4px, 0.8vw, 6px);
    padding: clamp(0.625rem, 1.2vw, 0.875rem) clamp(0.875rem, 1.8vw, 1.25rem);
    transition: all 0.3s ease;
    font-family: var(--font-body);
    font-size: clamp(13px, 1.4vw, 14px);
}

.contact-form-input::placeholder {
    color: rgba(1, 5, 53, 0.4);
}

.contact-form-input:focus {
    outline: none;
    border-color: var(--themeColor);
    box-shadow: 0 0 0 3px rgba(244, 18, 0, 0.1);
    background: #ffffff;
}

.contact-form-input:hover {
    border-color: rgba(1, 5, 53, 0.2);
}

.contact-form-input:valid {
    border-color: rgba(1, 5, 53, 0.15);
}


/* City Cards */
.city-card {
    border: 1px solid rgba(1, 5, 53, 0.08);
    border-radius: clamp(6px, 0.8vw, 8px);
    transition: all 0.3s ease;
    height: 100%;
}

.city-card:hover {
    border-color: var(--themeColor);
    box-shadow: 0 8px 24px rgba(244, 18, 0, 0.1);
    transform: translateY(-4px);
}

.city-card-image {
    width: 100%;
    height: clamp(130px, 15vw, 180px);
}

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

.city-card:hover .city-card-image img {
    transform: scale(1.05);
}

.city-card-title {
    transition: color 0.3s ease;
}

.city-card:hover .city-card-title {
    color: var(--themeColor);
}

.city-card-link {
    text-decoration: none;
    transition: all 0.3s ease;
}

.city-card-link:hover {
    opacity: 0.8;
}

.inner-gallery-img {
    height: 200px;
    transition: transform 0.3s ease;

    img {
        object-fit: cover;
        transition: transform 0.3s ease;
    }
}

.inner-gallery-img:hover {
    transform: scale(1.05);
}


/* ===========================
   VENUE CARDS SECTION
   =========================== */
.venue-card {
    border-radius: clamp(6px, 0.8vw, 8px);
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(1, 5, 53, 0.08);
}

.venue-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(244, 18, 0, 0.15);
}

.venue-img-wrapper {
    height: 220px;
}

.venue-img {
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.venue-card:hover .venue-img {
    transform: scale(1.08);
}

.venue-overlay {
    background: linear-gradient(180deg, transparent 0%, rgba(1, 5, 53, 0.3) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.venue-card:hover .venue-overlay {
    opacity: 1;
}

.venue-content {
    background: #fff;
}

.venue-tag {
    background: rgba(244, 18, 0, 0.08);
    color: var(--themeColor);
    padding: 4px 12px;
    border-radius: 20px;
    display: inline-block;
    transition: all 0.3s ease;
}

.venue-card:hover .venue-tag {
    background: var(--themeColor);
    color: #fff;
}

@media (max-width: 768px) {
    .venue-img-wrapper {
        height: 180px;
    }
}

/* Home page css */

/* ===========================
   HERO SECTION
   =========================== */
.hero-section {
    min-height: clamp(500px, 95vh, 100vh);
    max-height: 100vh;
    padding: clamp(112px, 10vh, 120px) 0 clamp(40px, 8vh, 80px);
    position: relative;
    overflow: hidden;
}

.hero-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    display: block;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgb(61 61 61 / 40%) 50%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 1;
}

.hero-content {
    z-index: 2;
    position: relative;
    padding: clamp(20px, 5vw, 40px) clamp(15px, 3vw, 30px);
}

.hero-title {
    letter-spacing: -1px;
    font-size: clamp(40px, 6vw, 64px);
    line-height: clamp(50px, 7vw, 72px);
    font-family: var(--font-display);
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.2);
}

.hero-section p {
    font-size: clamp(16px, 2.5vw, 20px) !important;
    line-height: clamp(24px, 3.5vw, 32px) !important;
}

.hero-cta {
    gap: clamp(10px, 2vw, 16px) !important;
    flex-wrap: wrap;
}

.hero-cta a {
    font-size: clamp(13px, 2vw, 14px);
    padding: 10px 20px;
    min-width: clamp(120px, 30vw, 150px);
}

.scroll-indicator {
    margin-top: clamp(20px, 5vh, 40px) !important;
}

@media (max-width: 768px) {
    .hero-section {
        min-height: clamp(450px, 70vh, 600px);
    }

    .hero-content {
        padding: 20px 15px;
    }
}


/* ===========================
   SCROLL INDICATOR
   =========================== */

.scroll-arrow {
    color: var(--color-theme);
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(10px);
    }
}

/* ===========================
   BUTTONS
   =========================== */
.btn-primary {
    display: inline-flex;
    background-color: var(--themeColor);
    border-radius: 100px;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: clamp(0.5rem, 0.4766rem + 0.125vw, 0.625rem) clamp(0.875rem, 0.8047rem + 0.375vw, 1.25rem);
    color: var(--whiteColor);
    border: 2px solid var(--themeColor);
    align-items: center;
    gap: 8px;
}

.btn-primary svg {
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(73, 73, 72, 0.3);
}

.btn-primary:hover svg {
    transform: translateX(clamp(2px, 0.5vw, 4px));
}

.btn-secondary {
    display: inline-block;
    padding: 10px 20px;
    background-color: transparent;
    border: 2px solid var(--whiteColor);
    border-radius: 100px;
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 150px;
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(136, 26, 19, 0.3);
}

/* About Image Wrapper */
.about-image-wrapper {
    border-radius: 4px;
    aspect-ratio: 0.95 / 1;
    background: #f1f1f1;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    transform: perspective(1000px) rotateX(0deg) rotateY(0deg);
    box-shadow: 0px 0px 2px #8e8e8e;
    padding: 20px;
}

.about-image-main {
    display: block;
    border-radius: 4px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.about-image-wrapper:hover .about-image-main {
    transform: scale(1.04);
}

/* About Image Overlay */
.about-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(39, 39, 39, 0.4) 0%, rgba(39, 39, 39, 0.2) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    backdrop-filter: blur(2px);
}

.about-image-wrapper:hover .about-image-overlay {
    opacity: 0;
    display: none;
}

.overlay-icon {
    font-size: clamp(36px, 5vw, 48px);
    animation: none;
    display: none;
}

/* Feature Items - Simple Design */
.feature-item {
    gap: 12px;
    border-radius: 8px;
    background: transparent;
}

.feature-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: rgba(39, 39, 39, 0.08);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--themeColor);
}

.feature-title {
    font-size: 15px;
    color: var(--textColor);
    margin-bottom: 4px !important;
    font-weight: 600;
}

.feature-desc {
    font-size: 13px;
    color: var(--textLight);
}

/* Tag and Badge Styling */

.tag-line {
    width: 24px;
    height: 2px;
    background: linear-gradient(90deg, var(--themeColor) 0%, rgba(39, 39, 39, 0.4) 100%);
    border-radius: 1px;
}

.section-tag {
    letter-spacing: 0.12em;
    color: var(--themeColor);
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    background: rgba(39, 39, 39, 0.05);
    border-radius: 50px;
    border: 1px solid rgba(39, 39, 39, 0.1);
    transition: all 0.3s ease;
}

/* Main Heading */
.main-heading {
    line-height: 1.2;
    letter-spacing: -0.02em;
    transition: all 0.3s ease;
}

/* Features Grid */
/* Responsive */
@media (max-width: 991px) {
    .about-image-wrapper {
        margin-bottom: 24px;
    }

}

/* Features Section */
.why-feature {
    padding: clamp(16px, 2vw, 20px);
    border-radius: clamp(6px, 1vw, 8px);
    background: rgba(244, 18, 0, 0.02);
    border-left: 3px solid var(--themeColor);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.why-feature:hover {
    background: rgba(244, 18, 0, 0.04);
    border-left-color: var(--primaryColor);
    transform: translateX(clamp(4px, 0.8vw, 8px));
}

.why-feature-icon {
    width: clamp(40px, 7vw, 48px);
    height: clamp(40px, 7vw, 48px);
    background: rgba(244, 18, 0, 0.1);
    border-radius: clamp(4px, 0.8vw, 6px);
    transition: all 0.35s ease;
}

.why-feature:hover .why-feature-icon {
    background: rgba(244, 18, 0, 0.15);
    transform: scale(1.1);
}


.stat-number {
    background: linear-gradient(135deg, var(--themeColor) 0%, #570414 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.textLight {
    color: rgba(0, 0, 0, 0.65);
}

/* ===========================
   FOUNDER SECTION - MINIMAL
   =========================== */

.founder-img {
    border-radius: 4px;
    box-shadow: 0 20px 60px rgba(39, 39, 39, 0.15);
    transition: all 0.4s ease;
    height: clamp(21.875rem, 20.7031rem + 6.25vw, 28.125rem);
    object-fit: cover;
}

.founder-badge {
    width: clamp(60px, 10vw, 80px);
    height: clamp(60px, 10vw, 80px);
    bottom: clamp(-15px, -2vw, -20px);
    right: clamp(15px, -2vw, -20px);
    box-shadow: 0 12px 40px rgba(39, 39, 39, 0.2);
    animation: float 3s ease-in-out infinite;
}

.founder-header {
    border-bottom: 2px solid rgb(0 0 0 / 10%);
}

.founder-icon {
    width: clamp(40px, 8vw, 44px);
    height: clamp(40px, 8vw, 44px);
    background: rgb(95 95 95 / 8%);
    border: 1px solid rgb(0 0 0 / 12%);
    transition: all 0.3s ease;
}

.founder-icon:hover {
    background: rgba(244, 18, 0, 0.15);
    border-color: rgba(244, 18, 0, 0.3);
    transform: scale(1.1);
}


@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(clamp(-8px, -2vw, -10px));
    }
}


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

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

/* Value Cards */
.value-card {
    background: var(--whiteColor);
    border: 1px solid rgb(45 45 45 / 22%);
    border-radius: 4px;
    padding: clamp(24px, 4vw, 30px);
    transition: all 0.3s ease;
}

.value-card:hover {
    border-color: var(--themeColor);
    box-shadow: 0 8px 24px rgba(39, 39, 39, 0.12);
    transform: translateY(-6px);
}

.value-icon-wrapper {
    width: clamp(48px, 8vw, 60px);
    height: clamp(48px, 8vw, 60px);
    background: linear-gradient(135deg, var(--themeColor) 0%, rgba(39, 39, 39, 0.8) 100%);
    border-radius: clamp(6px, 1vw, 10px);
    transition: all 0.3s ease;
}

.value-card:hover .value-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 16px rgba(39, 39, 39, 0.2);
}

.value-icon {
    color: var(--whiteColor);
    transition: transform 0.3s ease;
}

.value-card:hover .value-icon {
    transform: scale(1.15);
}

.value-title {
    color: var(--textColor);
    margin-top: clamp(12px, 2vw, 16px);
    margin-bottom: clamp(6px, 1vw, 8px);
    transition: color 0.3s ease;
}

.value-card:hover .value-title {
    color: var(--themeColor);
}

.value-description {
    color: var(--textLight);
    line-height: 1.6;
}

/* ===========================
   PORTFOLIO TABS & CARDS
   =========================== */
.portfolio-tabs {
    gap: 10px;
}

.portfolio-card {
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(136, 26, 19, 0.08);
    transition: all 0.3s ease;
    background: white;
}

.portfolio-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(136, 26, 19, 0.15);
}

.portfolio-card img {
    width: 100%;
    height: clamp(10rem, 5.5rem + 18vw, 15rem);
    object-fit: cover;
    transition: transform 0.4s ease;
    display: block;
}

.portfolio-card:hover img {
    transform: scale(1.05);
}

.portfolio-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 70%, #00000005 100%);
}

/*  BLOG SECTION */
.blog-card {
    height: clamp(320px, 50vw, 400px);
    border-radius: 4px;
    box-shadow: 0 8px 24px rgba(39, 39, 39, 0.12);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(244, 18, 0, 0.08);
}

.blog-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.blog-overlay {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.3) 30%, rgba(0, 0, 0, 0.7) 70%, rgba(0, 0, 0, 0.9) 100%);
    transition: all 0.35s ease;
}

.blog-card:hover {
    transform: translateY(clamp(-6px, -1.2vw, -10px));
    box-shadow: 0 16px 40px rgba(39, 39, 39, 0.18);
    border-color: rgba(244, 18, 0, 0.15);
}

.blog-card:hover .blog-overlay {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.4) 30%, rgba(0, 0, 0, 0.75) 70%, rgba(0, 0, 0, 0.95) 100%);
}

.blog-category {
    transform: translateY(-10px);
    transition: all 0.35s ease;
}

.blog-category span {
    display: inline-block;
    letter-spacing: clamp(0.05em, 0.1vw, 0.1em);
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: clamp(4px, 0.6vw, 6px) clamp(10px, 1.5vw, 14px);
    border-radius: clamp(3px, 0.4vw, 5px);
    backdrop-filter: blur(10px);
}

.blog-date {
    margin-bottom: clamp(10px, 1.5vw, 14px);
}

.blog-date span {
    letter-spacing: 0.03em;
    opacity: 0.95;
}

.blog-link {
    text-decoration: none;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    width: fit-content;
}

.blog-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.6);
    transition: width 0.35s ease;
}

.blog-link:hover::after {
    width: 100%;
}

.blog-link:hover {
    transform: translateX(4px);
}

.blog-link svg {
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-link:hover svg {
    transform: translateX(clamp(2px, 0.5vw, 4px));
}

.blog-link-new:hover {
    transform: translateX(4px);
}


/* ===========================
   CTA SECTION 
   =========================== */
.cta-section {
    background: linear-gradient(135deg, rgba(39, 39, 39, 0.85) 0%, rgba(45, 45, 45, 0.85) 100%);
}

.cta-bg-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-size: cover;
    background-position: center;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgb(39 39 39 / 81%) 0%, rgb(39 39 39 / 80%) 100%);
    z-index: 2;
}

.cta-content-box {
    background: transparent;
    backdrop-filter: none;
    border: none;
    border-radius: 0;
    animation: fadeInUp 0.8s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.cta-title {
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.cta-description {
    line-height: 1.6;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-contact-info {
    gap: clamp(1.5rem, 4vw, 2.5rem);
    margin-bottom: clamp(2rem, 5vw, 3rem);
}

.cta-contact-link {
    color: var(--whiteColor);
    text-decoration: none;
    transition: all 0.3s ease;
    opacity: 0.95;
}

.cta-contact-link:hover {
    opacity: 1;
    color: var(--whiteColor);
}

.cta-contact-link svg {
    transition: transform 0.3s ease;
    stroke: var(--whiteColor);
}

.cta-contact-link:hover svg {
    transform: scale(1.15);
}

/* Primary CTA Button */
.btn-cta-primary {
    background: var(--whiteColor);
    color: var(--themeColor);
    border: 2px solid var(--whiteColor);
    transition: all 0.3s ease;
    border-radius: 100px;
    padding: 10px 20px;
}

.btn-cta-primary:hover {
    background: var(--themeColor);
    color: var(--whiteColor);
    border-color: var(--themeColor);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.btn-cta-primary:active {
    transform: translateY(0);
}

/* Secondary CTA Button */
.btn-cta-secondary {
    background: transparent;
    color: var(--whiteColor);
    border: 2px solid var(--whiteColor);
}

.btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--whiteColor);
    border-color: var(--whiteColor);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.15);
}

.btn-cta-secondary:active {
    transform: translateY(0);
}

/* Primary CTA Button */
.btn-cta-primary {
    background: var(--whiteColor);
    color: var(--themeColor);
    border: 2px solid var(--whiteColor);
    transition: all 0.3s ease;
    border-radius: 100px;
    padding: 10px 20px;
}

.btn-cta-primary:hover {
    background: var(--themeColor);
    color: var(--whiteColor);
    border-color: var(--themeColor);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.btn-cta-primary:active {
    transform: translateY(0);
}

/* Secondary CTA Button */
.btn-cta-secondary {
    background: transparent;
    color: var(--whiteColor);
    border: 2px solid var(--whiteColor);
}

.btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--whiteColor);
    border-color: var(--whiteColor);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.15);
}

.btn-cta-secondary:active {
    transform: translateY(0);
}

/* ===========================
   WHY CHOOSE US - SHOWCASE CARD
   =========================== */

.why-showcase-card {
    background: var(--whiteColor);
    border: 1px solid var(--themeColor);
    border-radius: clamp(16px, 2vw, 24px);
    padding: clamp(2.5rem, 4vw, 3rem);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 8px 32px rgba(39, 39, 39, 0.08);
}

.why-showcase-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primaryColor), var(--themeColor), var(--primaryColor));
    opacity: 1;
}


.showcase-container {
    display: grid;
    grid-template-columns: 0.8fr 1.5fr 1fr;
    gap: clamp(1.5rem, 2.5vw, 2rem);
    align-items: center;
}

/* Left - Visual */
.showcase-visual {
    height: 240px;
}

.visual-circle-main {
    position: absolute;
    width: 160px;
    height: 160px;
    border: 3px solid var(--themeColor);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.visual-circle-accent {
    position: absolute;
    width: 110px;
    height: 110px;
    border: 2px dashed #959595;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: rotate-slow 20s linear infinite;
}

@keyframes rotate-slow {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.showcase-icon {
    position: relative;
    z-index: 2;
    width: 60px;
    height: 60px;
    filter: drop-shadow(0 4px 12px rgba(39, 39, 39, 0.1));
}

/* Middle - Stats */
.showcase-stats {
    gap: clamp(2rem, 3vw, 2.5rem);
}

.counter-value {
    background: var(--themeColor);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
}

.counter-label {
    color: var(--textLight);
    letter-spacing: 0.5px;
}

.showcase-metrics {
    background: rgba(39, 39, 39, 0.02);
    padding: clamp(1rem, 1.5vw, 1.5rem);
    border-radius: clamp(12px, 1.5vw, 16px);
    border: 1px solid rgba(39, 39, 39, 0.06);
}

.metric-item {
    text-align: center;
    padding: 0 clamp(0.8rem, 1.2vw, 1.2rem);
    transition: all 0.3s ease;
    flex: 1;
}

.metric-number {
    transition: transform 0.3s ease;
}

.metric-divider {
    width: 2px;
    height: 50px;
    background: rgba(39, 39, 39, 0.1);
    margin: 0 clamp(0.5rem, 0.8vw, 1rem);
}

/* Right - Description */
.showcase-description {
    gap: clamp(1rem, 1.5vw, 1.5rem);
}

.description-badge {
    width: fit-content;
    padding: 5px 16px;
    background: rgba(39, 39, 39, 0.04);
    border: 1px solid var(--themeColor);
    border-radius: 50px;
    transition: all 0.3s ease;
}

.description-badge:hover {
    background: var(--themeColor);
    color: var(--whiteColor);
}

.description-badge:hover svg {
    filter: brightness(0) invert(1);
}

.showcase-description h4 {
    line-height: 1.3;
}

.showcase-description p {
    line-height: 1.7;
}

.description-tags .tag {
    font-size: clamp(11px, 1.1vw, 12px);
    padding: 6px 14px;
    background: rgba(39, 39, 39, 0.05);
    border: 1px solid rgba(39, 39, 39, 0.1);
    border-radius: 50px;
    color: var(--textColor);
    transition: all 0.3s ease;
}

.description-tags .tag:hover {
    background: var(--themeColor);
    border-color: var(--themeColor);
    color: var(--whiteColor);
}

/* Responsive */
@media (max-width: 1200px) {
    .showcase-container {
        grid-template-columns: 1fr;
        gap: clamp(1.5rem, 2.5vw, 2rem);
    }

    .showcase-visual {
        height: 240px;
    }

    .visual-circle-main {
        width: 160px;
        height: 160px;
    }

    .visual-circle-accent {
        width: 110px;
        height: 110px;
    }

    .showcase-icon {
        width: 64px;
        height: 64px;
    }

    .showcase-metrics {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .metric-divider {
        height: 40px;
    }
}

@media (max-width: 768px) {
    .why-showcase-card {
        padding: clamp(1.5rem, 2.5vw, 2rem);
    }

    .showcase-container {
        grid-template-columns: 1fr;
        gap: clamp(1.2rem, 2vw, 1.5rem);
    }

    .showcase-visual {
        height: 150px;
    }

    .visual-circle-main {
        width: 140px;
        height: 140px;
    }

    .visual-circle-accent {
        width: 90px;
        height: 90px;
    }

    .showcase-icon {
        width: 52px;
        height: 52px;
    }

    .showcase-metrics {
        grid-template-columns: 1fr;
        padding: clamp(12px, 1.5vw, 1.2rem);
        gap: 12px;
    }

    .metric-divider {
        display: none;
    }

    .metric-item {
        padding: clamp(0.8rem, 1.2vw, 1rem);
    }

    .description-tags {
        justify-content: center;
    }

    .showcase-description {
        align-items: center;
        justify-content: center;
    }
}


/* ===========================
   REUSABLE HERO SECTION (Pages)
   =========================== */
.hero-section-page {
    min-height: clamp(400px, 50vh, 500px);
    background-size: cover;
    background-position: center;
    padding: clamp(8.75rem, 8.8672rem + -0.625vw, 8.125rem) 0 clamp(40px, 8vh, 80px);
}

.hero-overlay-page {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(39, 39, 39, 0.6) 0%, rgba(39, 39, 39, 0.4) 100%);
    z-index: 1;
}

.z-index-10 {
    z-index: 10 !important;
}

.hero-content-page {
    animation: fadeInUp 0.8s ease-out;
}

.hero-title-page {
    letter-spacing: -0.02em;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-subtitle-page {
    letter-spacing: 0.02em;
    opacity: 0.95;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .hero-section-page {
        min-height: 350px;
    }
}


/* ===========================
   ABOUT SECTION
   =========================== */

.about-img-wrapper-page {
    border-radius: 4px;
    box-shadow: 0 12px 40px rgba(39, 39, 39, 0.15);
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.about-img-wrapper-page:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 60px rgba(39, 39, 39, 0.2);
}

.about-img-main-page {
    width: 100%;
    height: 100%;
    display: block;
    transition: transform 0.7s ease;
    object-fit: cover;
}

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

.about-img-grid-triangle {
    gap: clamp(0.75rem, 2vw, 1.25rem);
}

.grid-item-top {
    width: 100%;
    height: clamp(200px, 26vw, 265px);
}

.grid-items-bottom {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(0.75rem, 2vw, 1.25rem);
}

.grid-item-bottom {
    width: 100%;
    height: clamp(180px, 22vw, 240px);
}

.about-img-badge-page {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: var(--themeColor);
    padding: 6px 18px;
    box-shadow: 0 8px 24px rgba(39, 39, 39, 0.2);
}

.badge-text-page {
    letter-spacing: 0.05em;
}

.about-heading-page {
    letter-spacing: -0.015em;
    line-height: 1.25;
    transition: color 0.3s ease;
}

.about-heading-page:hover {
    color: var(--themeColor);
}

.stat-grid-page {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: clamp(1.5rem, 3vw, 2rem);
}

.stat-box-page {
    padding: 12px;
    border-radius: 4px;
    background: linear-gradient(135deg, rgba(39, 39, 39, 0.02) 0%, transparent 100%);
    border: 1px solid rgba(39, 39, 39, 0.08);
    transition: all 0.4s ease;
}

.stat-box-page:hover {
    transform: translateY(-4px);
    border-color: var(--themeColor);
    box-shadow: 0 6px 16px rgba(39, 39, 39, 0.1);
}

.stat-num-page {
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.stat-box-page:hover .stat-num-page {
    transform: scale(1.08);
}


/* ===========================
   MISSION VISION VALUES SECTION
   =========================== */

.mvv-content-card {
    padding-bottom: clamp(1.5rem, 3vw, 2rem);
    border-bottom: 1px solid rgba(39, 39, 39, 0.1);
    transition: all 0.4s ease;
}

.mvv-content-card:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.mvv-card-icon {
    width: clamp(40px, 5vw, 52px);
    height: clamp(40px, 5vw, 52px);
    background: linear-gradient(135deg, rgba(39, 39, 39, 0.08) 0%, rgba(39, 39, 39, 0.04) 100%);
    border-radius: 4px;
    color: var(--themeColor);
    transition: all 0.4s ease;
    aspect-ratio: 1;
}

.mvv-image-main {
    height: clamp(400px, 50vw, 580px);
    border-radius: 4px;
    box-shadow: 0 12px 40px rgba(39, 39, 39, 0.15);
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.mvv-image-main:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(39, 39, 39, 0.2);
}

.mvv-image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.7s ease;
}

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


/* Collage Grid */
.mvv-collage-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(0.75rem, 1.5vw, 1rem);
    height: auto;
}

.collage-item {
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 6px 16px rgba(39, 39, 39, 0.1);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.item-1 {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
    height: clamp(240px, 32vw, 320px);
}

.item-2 {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
    height: clamp(110px, 15vw, 150px);
}

.item-3 {
    grid-column: 3 / 4;
    grid-row: 1 / 2;
    height: clamp(110px, 15vw, 150px);
}

.item-4 {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
    height: clamp(110px, 15vw, 150px);
}

.item-5 {
    grid-column: 3 / 4;
    grid-row: 2 / 3;
    height: clamp(110px, 15vw, 150px);
}

.item-6 {
    grid-column: 1 / 2;
    grid-row: 3 / 4;
    height: clamp(110px, 15vw, 150px);
}

.item-7 {
    grid-column: 2 / 3;
    grid-row: 3 / 4;
    height: clamp(110px, 15vw, 150px);
}

.item-8 {
    grid-column: 3 / 4;
    grid-row: 3 / 4;
    height: clamp(110px, 15vw, 150px);
}

.item-9 {
    grid-column: 1 / 2;
    grid-row: 4 / 5;
    height: clamp(110px, 15vw, 150px);
}

.collage-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(39, 39, 39, 0.15);
}

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

.collage-item:hover img {
    transform: scale(1.08);
}


/* Updated Collage Grid - 3x3 with last full width */
.item-1,
.item-2,
.item-3,
.item-4,
.item-5,
.item-6,
.item-7,
.item-8 {
    height: clamp(110px, 15vw, 150px);
}

.item-9 {
    grid-column: 1 / -1;
    height: clamp(200px, 25vw, 280px);
}


/* Large Image Bottom */
.collage-large-bottom {
    height: clamp(240px, 30vw, 320px);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(39, 39, 39, 0.12);
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.collage-large-bottom:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(39, 39, 39, 0.2);
}

.collage-large-bottom img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.collage-large-bottom:hover img {
    transform: scale(1.05);
}


/* Triangle Grid Layout */
.mvv-collage-grid-triangle {
    display: flex;
    flex-direction: column;
    gap: clamp(1rem, 2vw, 1.5rem);
}

.grid-item-top {
    width: 100%;
    height: clamp(200px, 28vw, 265px);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(39, 39, 39, 0.12);
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.grid-item-top:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(39, 39, 39, 0.2);
}

.grid-items-bottom {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(1rem, 2vw, 1.5rem);
}

.grid-item-bottom {
    height: clamp(200px, 25vw, 260px);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(39, 39, 39, 0.12);
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.grid-item-bottom:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(39, 39, 39, 0.2);
}

.grid-item-top img,
.grid-item-bottom img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.grid-item-top:hover img,
.grid-item-bottom:hover img {
    transform: scale(1.05);
}


/* Complex Collage Grid */
.mvv-collage-grid-complex {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: clamp(0.75rem, 1.5vw, 1rem);
    align-items: start;
}

.collage-large-left {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
    height: clamp(350px, 45vw, 450px);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(39, 39, 39, 0.12);
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.collage-large-left:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(39, 39, 39, 0.2);
}

.collage-right-section {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
}

.right-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(0.75rem, 1.5vw, 1rem);
}

.grid-item {
    height: clamp(100px, 14vw, 140px);
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 6px 16px rgba(39, 39, 39, 0.1);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.grid-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(39, 39, 39, 0.15);
}


.collage-large-left img,
.grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.collage-large-left:hover img,
.grid-item:hover img {
    transform: scale(1.05);
}


/* ===========================
   WHY CHOOSE SECTION
   =========================== */

.why-choose-card {
    background: linear-gradient(135deg, rgba(39, 39, 39, 0.03) 0%, rgba(39, 39, 39, 0.01) 100%);
    border: 1px solid rgba(39, 39, 39, 0.08);
    border-radius: 4px;
    transition: all 0.4s ease;
    height: 100%;
}

.why-choose-card:hover {
    border-color: var(--themeColor);
    box-shadow: 0 8px 24px rgba(39, 39, 39, 0.12);
    transform: translateY(-4px);
}

.why-choose-number {
    opacity: 0.12;
    line-height: 1;
}



/* ===========================
   OUR PROCESS SECTION 
   =========================== */
.process-marker {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--themeColor) 0%, rgba(39, 39, 39, 0.7) 100%);
    border-radius: 4px;
    color: var(--whiteColor);
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.process-step {
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    background: linear-gradient(135deg, rgba(39, 39, 39, 0.02) 0%, rgba(39, 39, 39, 0.01) 100%);
    border: 1px solid rgba(39, 39, 39, 0.08);
    border-radius: 4px;
    padding: clamp(1rem, 0.9063rem + 0.5vw, 1.5rem);
    transition: all 0.3s ease;
    box-shadow: 0px 4px 2px #a0a0a0;
}

.process-step:hover .process-marker {
    transform: scale(1.15) rotate(-10deg);
    box-shadow: 0 8px 20px rgba(39, 39, 39, 0.2);
    border-color: var(--themeColor);
}

.process-col h5 {
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.process-col p {
    line-height: 1.6;
}


/* Our Services Section - Minimal Custom CSS */
.transition {
    transition: all 0.3s ease;
}

.card.transition:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 28px rgba(39, 39, 39, 0.15) !important;
    border-color: var(--themeColor) !important;
}

.card.transition:hover .card-title {
    color: var(--themeColor);
}

.card.transition:hover .card-img-top {
    opacity: 0.9;
}

.service-img {
    height: 200px;
    object-fit: cover;
}

.card .btn-outline-dark {
    transition: all 0.3s ease;
    text-decoration: none;
    border-color: var(--themeColor);
    color: var(--themeColor);
}

.card .btn-outline-dark:hover {
    background-color: var(--themeColor);
    border-color: var(--themeColor);
    color: var(--whiteColor);
}

.card {
    position: relative;
}

.service-arrow-badge {
    position: absolute;
    bottom: 16px;
    right: 16px;
    display: inline-flex;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, rgba(39, 39, 39, 0.08) 0%, rgba(39, 39, 39, 0.04) 100%);
    border: 1px solid rgba(39, 39, 39, 0.15);
    color: var(--themeColor);
    opacity: 0.6;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
}

.service-arrow-badge svg {
    stroke: currentColor;
    transition: stroke 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.card:hover .service-arrow-badge {
    opacity: 1;
    background: linear-gradient(135deg, rgba(39, 39, 39, 0.12) 0%, rgba(39, 39, 39, 0.08) 100%);
    border-color: var(--themeColor);
    transform: translateX(4px);
}

/* Cinematic Videography About Section */
.cinematic-img-container {
    border-radius: 4px;
    height: 550px;
}

.cinematic-img-container-mobile {
    border-radius: 4px;
    height: 350px;
}

.cinematic-img {
    object-fit: cover;
    object-position: center;
}

.cinematic-img-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
}

.cinematic-title {
    line-height: 1.4;
}

.cinematic-number-badge {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: rgba(39, 39, 39, 0.1);
    color: var(--themeColor);
}

/* Cinematic Services Section */
.cinematic-service-card {
    border: 2px solid;
    border-image: linear-gradient(180deg, #2727277d 0%, rgb(39 39 39 / 10%) 100%) 1;
    background: rgba(39, 39, 39, 0.02);
    border-radius: 4px;
    clip-path: border-box;
    overflow: hidden;
}

.cinematic-service-icon {
    width: 60px;
    height: 60px;
    background: rgba(39, 39, 39, 0.08);
    color: var(--themeColor);
    flex-shrink: 0;
}


/* ===========================
   WHY CHOOSE US SECTION
   =========================== */
.why-choose-img-wrapper {
    border-radius: 4px;
    height: clamp(280px, 50vw, 480px);
    border-radius: 4px;
    height: clamp(280px, 50vw, 480px);
    box-shadow: 0px 0px 2px #8e8e8e;
    padding: clamp(0.75rem, 0.6563rem + 0.5vw, 1.25rem);
    background: #f1f1f1;
}

.why-choose-img {
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    border-radius: 4px;
}

.why-choose-img-wrapper:hover .why-choose-img {
    transform: scale(1.04);
}

.why-choose-check {
    width: 20px;
    height: 20px;
    background: var(--themeColor);
    color: var(--whiteColor);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.why-choose-item:hover .why-choose-check {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(39, 39, 39, 0.2);
}


/* ===========================
   CONTENT SECTION FOR SEO
   =========================== */

.content-article {
    line-height: 1.8;
}
 p{
    color: #000;
}
.content-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.content-bullet {
    color: var(--themeColor);
    margin-right: 8px;
}

.content-steps {
    background: linear-gradient(135deg, rgba(39, 39, 39, 0.02) 0%, rgba(39, 39, 39, 0.01) 100%);
    padding: clamp(1.5rem, 3vw, 2rem);
    border-radius: 4px;
}

.content-step {
    position: relative;
}

.step-number {
    width: 30px;
    height: 30px;
    background: var(--themeColor);
    color: var(--whiteColor);
    flex-shrink: 0;
}

.content-closing {
    background: linear-gradient(135deg, rgba(39, 39, 39, 0.05) 0%, rgba(39, 39, 39, 0.02) 100%);
    border-radius: 4px;
}


/* ===========================
   HOW WE WORK SECTION
   =========================== */

.how-we-work-timeline::before {
    content: '';
    position: absolute;
    left: 67px;
    top: 30px;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--themeColor) 0%, rgba(39, 39, 39, 0.2) 100%);
    height: 790px;
}

.how-we-work-step {
    margin-bottom: clamp(2rem, 4vw, 2.5rem);
    margin-left: clamp(30px, 8vw, 100px);
}

.step-marker {
    position: absolute;
    left: clamp(-52px, -8vw, -90px);
    top: 0;
    width: clamp(1.25rem, 0.8984rem + 1.875vw, 3.125rem);
    height: clamp(1.25rem, 0.8984rem + 1.875vw, 3.125rem);
    background: var(--themeColor);
    border-radius: 50%;
    color: var(--whiteColor);
    border: 2px solid var(--whiteColor);
    box-shadow: 0 0 0 2px var(--themeColor);
}

.step-content {
    background: var(--whiteColor);
    border: 1px solid rgba(39, 39, 39, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.step-content:hover {
    border-color: var(--themeColor);
    box-shadow: 0 4px 12px rgba(39, 39, 39, 0.08);
    transform: translateX(8px);
}

@media (max-width: 768px) {
    .how-we-work-timeline::before {
        left: 12px;
    }

    .step-marker {
        left: -30px;
        width: 32px;
        height: 32px;
    }

    .how-we-work-timeline::before {
        content: '';
        position: absolute;
        left: 15px;
        top: 25px;
        bottom: 0;
        width: 2px;
        background: linear-gradient(180deg, var(--themeColor) 0%, rgba(39, 39, 39, 0.2) 100%);
        height: calc(100% - 140px);
    }
}


/* ===========================
   GALLERY/PORTFOLIO MASONRY
   =========================== */
.gallery-masonry {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(278px, 1fr));
    gap: clamp(1rem, 2vw, 1.5rem);
}

.gallery-item-lg {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item-md {
    grid-column: span 1;
    grid-row: span 1;
}

.gallery-item-sm {
    grid-column: span 1;
    grid-row: span 1;
}

.gallery-card {
    border-radius: 4px;
    width: 100%;
    height: 100%;
    background: var(--textColor);
    overflow: hidden;
}

.gallery-img {
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

.gallery-overlay {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 100%);
    opacity: 0;
    transition: all 0.4s ease;
}

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

.gallery-video-title {
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.4s ease 0.1s;
}

.gallery-video-type {
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.4s ease 0.15s;
}

.gallery-card:hover .gallery-video-title,
.gallery-card:hover .gallery-video-type {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .gallery-masonry {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 170px;
    }

    .gallery-item-lg {
        grid-column: span 1;
        grid-row: span 1;
    }
}

@media (max-width: 480px) {
    .gallery-masonry {
        grid-template-columns: 1fr;
        grid-auto-rows: 150px;
    }

    .gallery-item-lg {
        grid-column: span 1;
        grid-row: span 1;
    }
}






/* ===========================
   EQUIPMENT & GEAR (REDESIGNED)
   =========================== */
.equipment-featured {
    background: #f9f9f9;
    border: 1px solid rgba(39, 39, 39, 0.1);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.equipment-featured:hover {
    border-color: var(--themeColor);
    box-shadow: 0 8px 20px rgba(39, 39, 39, 0.12);
    transform: translateY(-6px);
}

.equipment-badge {
    width: clamp(3.125rem, 3.0078rem + 0.625vw, 3.75rem);
    height: clamp(3.125rem, 3.0078rem + 0.625vw, 3.75rem);
    background: linear-gradient(135deg, var(--themeColor) 0%, rgba(39, 39, 39, 0.8) 100%);
    border-radius: 4px;
    color: var(--whiteColor);
    transition: all 0.3s ease;
}

.equipment-featured:hover .equipment-badge {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 16px rgba(39, 39, 39, 0.2);
}

.equipment-badge svg {
    stroke: currentColor;
}



/* ===========================
   CONTACT SECTION
   =========================== */
.contact-section {
    background-color: #fcfafa;
}

.contact-info-box {
    background: var(--themeColor);
    padding: clamp(1.3rem, 4vw, 2rem);
    border-radius: 4px;
    height: 100%;
}

.contact-info-box h2 {
    color: var(--whiteColor);
    margin-bottom: clamp(1.5rem, 3vw, 2.5rem) !important;
}

.contact-icon {
    color: var(--whiteColor);
    opacity: 0.9;
    width: clamp(20px, 3vw, 28px);
    height: clamp(20px, 3vw, 28px);
}

.contact-info-detail {
    margin-bottom: clamp(1.5rem, 2vw, 2rem) !important;
}

.contact-info-detail p {
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    line-height: 1.5;
}

.contact-info-detail:last-child {
    margin-bottom: 0 !important;
}

.contact-form-box h2 {
    color: var(--themeColor);
}

.contact-form-box p {
    color: var(--textLight);
}

.contact-field {
    background: var(--whiteColor);
    border: 1px solid rgba(45, 45, 45, 0.1);
    border-radius: 4px;
    padding: 10px 16px;
    color: var(--textColor);
    font-size: clamp(13px, 1.4vw, 14px);
    transition: all 0.3s ease;
}

.contact-field::placeholder {
    color: var(--textLight);
}

.contact-field:focus {
    background: var(--whiteColor);
    border-color: var(--themeColor);
    box-shadow: 0 0 0 3px rgba(39, 39, 39, 0.08);
    outline: none;
}

.contact-textarea {
    resize: vertical;
    font-family: inherit;
    min-height: clamp(100px, 15vw, 140px);
}


/* ===========================
   MAP SECTION
   =========================== */

.map-container {
    width: 100%;
    height: clamp(300px, 50vh, 600px);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 clamp(4px, 1.5vw, 12px) clamp(12px, 3vw, 32px) rgba(39, 39, 39, 0.12);
    border: 2px solid rgb(215 215 215);
}

.map-container iframe {
    border-radius: 4px;
}


/* ===========================
   BOOK NOW MODAL - HEADER DESIGN
   =========================== */

.book-now-modal {
    border-radius: clamp(8px, 1vw, 12px);
    box-shadow: 0 clamp(10px, 2vw, 20px) clamp(40px, 5vw, 60px) rgba(39, 39, 39, 0.25);
}

.book-now-header {
    background: linear-gradient(135deg, rgba(39, 39, 39, 0.02) 0%, rgba(39, 39, 39, 0.04) 100%);
    position: relative;
    overflow: hidden;
}

.book-now-header::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #fdfdfd00 0%, #2727277a 50%, rgb(67 67 67 / 0%) 100%);
}

.book-now-header h3 {
    color: var(--themeColor);
    letter-spacing: -0.01em;
}

.book-now-header p {
    color: var(--textLight);
}


.book-now-input {
    background: var(--whiteColor);
    border: 1px solid rgba(45, 45, 45, 0.1);
    border-radius: 4px;
    padding: 10px 18px;
    transition: all 0.3s ease;
}

.book-now-input:focus {
    background: var(--whiteColor);
    border-color: var(--themeColor);
    box-shadow: 0 0 0 3px rgba(39, 39, 39, 0.08);
}

.book-now-input::placeholder {
    color: var(--textLight);
}

.book-now-close {
    right: clamp(1rem, 2vw, 1.5rem);
    top: clamp(1rem, 2vw, 1.5rem);
    width: clamp(18px, 2vw, 20px);
    height: clamp(18px, 2vw, 20px);
    background: rgba(39, 39, 39, 0.08);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.book-now-close:hover {
    background: var(--themeColor);
    transform: rotate(90deg);
}

.book-now-close::after,
.book-now-close::before {
    width: clamp(14px, 2vw, 18px);
    height: 2px;
    background: var(--textColor);
}

.book-now-close:hover::after,
.book-now-close:hover::before {
    background: var(--whiteColor);
}


/* ===========================
   CITIES SECTION - CARD GRID
   =========================== */

.cities-heading {
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.cities-subtext {
    max-width: 650px;
    margin: 0 auto;
    color: var(--textLight);
}

.city-card {
    background: var(--whiteColor);
    border: 1px solid rgba(45, 45, 45, 0.1);
    border-radius: 4px;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 2px 8px rgba(39, 39, 39, 0.08);
    height: 100%;
}

.city-card:hover {
    border-color: var(--themeColor);
    box-shadow: 0 12px 32px rgba(39, 39, 39, 0.15);
    transform: translateY(-8px);
}

.city-image-wrapper {
    width: 100%;
    height: clamp(150px, 20vw, 180px);
    background: linear-gradient(135deg, rgba(39, 39, 39, 0.05) 0%, rgba(39, 39, 39, 0.02) 100%);
}

.city-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.city-card:hover .city-image {
    transform: scale(1.08);
}

.city-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(39, 39, 39, 0.2) 0%,
            rgba(39, 39, 39, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 2;
}

.city-card:hover .city-overlay {
    opacity: 1;
}

.city-name {
    color: var(--textColor);
    letter-spacing: -0.01em;
    line-height: 1.2;
    transition: color 0.3s ease;
}

.city-card:hover .city-name {
    color: var(--themeColor);
}

.city-desc {
    color: var(--textLight);
    line-height: 1.4;
    flex-grow: 1;
    margin-bottom: 12px;
}

.city-link {
    color: var(--themeColor);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    width: fit-content;
}

.city-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--themeColor);
    transition: width 0.3s ease;
}

.city-link:hover {
    color: var(--themeColor);
    gap: 12px;
}

.city-link:hover::after {
    width: 100%;
}

.city-link svg {
    transition: transform 0.3s ease;
}

.city-link:hover svg {
    transform: translateX(4px);
}

/* Responsive */
@media (max-width: 991px) {
    .city-image-wrapper {
        height: clamp(180px, 40vw, 220px);
    }

    .city-card {
        min-height: auto;
    }
}

@media (max-width: 576px) {
    .city-image-wrapper {
        height: clamp(160px, 50vw, 200px);
    }

}

/* ===========================
   ABOUT THIS CITY SECTION
   =========================== */

.about-city-image {
    height: clamp(250px, 45vw, 450px);
    object-fit: cover;
    border-radius: clamp(8px, 1.2vw, 16px);
    box-shadow: 0 clamp(6px, 1.5vw, 12px) clamp(16px, 3vw, 32px) rgba(39, 39, 39, 0.1);
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.about-city-image:hover {
    transform: translateY(clamp(-3px, -0.5vw, -6px));
    box-shadow: 0 clamp(10px, 2vw, 18px) clamp(24px, 4vw, 48px) rgba(39, 39, 39, 0.15);
}

.city-feature-icon {
    width: clamp(40px, 5vw, 48px);
    height: clamp(40px, 5vw, 48px);
    background: linear-gradient(135deg, rgba(39, 39, 39, 0.06) 0%, rgba(39, 39, 39, 0.03) 100%);
    color: var(--themeColor);
    border: 1px solid rgba(39, 39, 39, 0.1);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    flex-shrink: 0;
}

/* ===========================
   OUR SERVICES IN CITY SECTION
   =========================== */

.service-city-card {
    box-shadow: 0 clamp(2px, 0.8vw, 4px) clamp(8px, 1.5vw, 16px) rgba(39, 39, 39, 0.06);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border-radius: 4px;
}

.service-city-card:hover {
    transform: translateY(clamp(-4px, -0.5vw, -8px));
    box-shadow: 0 clamp(8px, 2vw, 16px) clamp(20px, 3vw, 32px) rgba(39, 39, 39, 0.12);
}

.service-city-icon {
    width: 100%;
    height: clamp(120px, 20vw, 180px);
    background: linear-gradient(135deg, rgba(39, 39, 39, 0.04) 0%, rgba(39, 39, 39, 0.02) 100%);
    color: var(--themeColor);
    transition: all 0.4s ease;
    position: relative;
}

.service-city-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.service-city-card:hover .service-city-icon {
    background: linear-gradient(135deg, rgba(39, 39, 39, 0.08) 0%, rgba(39, 39, 39, 0.05) 100%);
}

.service-city-card:hover .service-city-icon img {
    transform: scale(1.08);
}

.service-city-card h3 {
    transition: color 0.3s ease;
}

.service-city-card:hover h3 {
    color: var(--themeColor);
}

.arrow-circle {
    height: 24px;
    width: 24px;
    border: 2px solid rgb(0 0 0 / 53%);
    border-radius: 50%;
    aspect-ratio: 1;
    transition: all 0.3s ease;
    cursor: pointer;
}

.arrow-circle:hover {
    background: #000;
    border-color: #000;
    color: #fff;
    transform: scale(1.08);
}
.card img{
    height: 250px;
    object-fit: cover;
}