@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Oswald:wght@400;500;600;700&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

:root {
    --primary-color: #D6A32D;
    --primary-dark: #b98a1f;
    --black: #050505;
    --white: #ffffff;
    --font-inter: 'Inter', sans-serif;
    --font-oswald: 'Oswald', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background: var(--black);
    color: var(--white);
    font-family: var(--font-inter);
    overflow-x: hidden;
}
::-webkit-scrollbar {
    width: 3.5px;
}
::-webkit-scrollbar-track {
    background: #ffffff;
}
::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}
/*NAVBAR*/

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(5, 5, 5, 0.88);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(8px);
}

.navbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1700px;
    margin: 0 auto;
    padding: 10px 42px;
}

/* Logo */

.logo {
    display: flex;
    align-items: center;
    line-height: 1;
    text-decoration: none;
    color: #fff;
}

.logo-main {
    font-family: var(--font-oswald);
    font-size: 23px;
    font-weight: 700;
    letter-spacing: -1px;
}

.logo-side {
    margin-left: 5px;
    padding-left: 5px;
    border-left: 1px solid rgba(255, 255, 255, 0.5);

    font-size: 8px;
    line-height: 9px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Navigation */

.nav-links {
    display: flex;
    align-items: center;
    gap: 44px;
    margin: 0 auto;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;

    font-size: 20px;
    font-weight: 600;

    text-transform: uppercase;

    transition: 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-color);
}

/* Phone */

.nav-phone {
    height: 41px;
    min-width: 110px;

    padding: 25px 17px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--primary-color);
    color: #080808;

    font-size: 20px;
    font-weight: 700;

    text-decoration: none;

    transition: 0.3s ease;
}

.nav-phone:hover {
    background: #e5b438;
}


/* =========================================
           HERO
        ========================================= */

.calicut-hero-section {
    position: relative;
    width: 100%;
    min-height: 105vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #050505;
    border-left: 2px solid var(--primary-color);
}


/* =========================================
           BACKGROUND SLIDESHOW
        ========================================= */

.hero-slideshow {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 60%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    /* filter: brightness(0.72) contrast(1.08) saturate(0.82); */
}

.hero-slide.active {
    opacity:1;
}

/*GOLD LEFT BORDER*/

.gold-border {
    position: absolute;
    top: 55px;
    bottom: 0;
    left: 0;
    width: 2px;
    z-index: 10;
    background: var(--primary-color);
}


/* Small label */

.hero-label {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 16px;
    color: var(--primary-color);
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
}

.hero-label::before {
    content: "";
    width: 28px;
    height: 1px;
    background: var(--primary-color);
}


/* Heading */

.hero-title {
    max-width: 1010px;
    font-family: var(--font-oswald);
    font-size: clamp(48px, 6vw, 120px);
    font-weight: 600;
    line-height: 0.99;
    letter-spacing: -1.5px;
    text-transform: none;
    color: #fff;
    margin-bottom: 19px;
}


/* Description */

.hero-description {
    max-width: 895px;

    color: rgba(255, 255, 255, 0.58);

    font-size: 24px;
    line-height: 1.55;
    font-weight: 400;

    margin-bottom: 22px;
}


.hero-buttons {
    display: flex;
    align-items: center;
    gap: 10px;
}
.gold-border {
    position: absolute;

    top: 55px;
    bottom: 0;
    left: 0;

    width: 2px;

    z-index: 10;

    background: var(--primary-color);
}

.btn {
    min-width: 128px;
    height: 36px;
    padding: 30px 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    text-decoration: none;
    font-size: 20px;
    font-weight: 700;
    transition: all 0.3s ease;
}


/* WhatsApp button */

.btn-primary {
    color: #050505;
    background: var(--primary-color);
}

.btn-primary:hover {
    background: #e7b439;
    transform: translateY(-2px);
}


/* Explore button */

.btn-outline {
    color: rgba(255, 255, 255, 0.75);

    border: 1px solid rgba(255, 255, 255, 0.15);

    background: rgba(0, 0, 0, 0.18);
}

.btn-outline:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);

    transform: translateY(-2px);
}


/*EXPERIENCE CIRCLE */

.experience-circle {
    position: absolute;
    right: 7%;
    bottom: 100px;
    width: 140px;
    height: 140px;
    border: 1px solid rgba(214, 163, 45, 0.85);
    border-radius: 50%;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    animation: circleFloat 4s ease-in-out infinite;
}

.experience-circle::before {
    content: "";

    position: absolute;

    inset: 6px;

    border: 1px solid rgba(214, 163, 45, 0.16);

    border-radius: 50%;
}

.experience-number {
    position: relative;

    font-family: var(--font-oswald);

    color: var(--primary-color);

    font-size: 37px;
    line-height: 1;

    font-weight: 600;
}

.experience-text {
    position: relative;

    margin-top: 4px;

    font-size: 12px;
    line-height: 1.4;

    color: rgba(255, 255, 255, 0.55);

    text-transform: uppercase;
}

@keyframes circleFloat {

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

    50% {
        transform: translateY(-6px);
    }
}


.logo-img {
    max-height: 82px;
    width: auto;
    display: block;
    transition: max-height 0.3s ease;
}

/* =========================================
           SIDEBAR
        ========================================= */
.sidebar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100vh;
    background: rgba(5, 5, 5, 0.98);
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    padding: 24px 30px;
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    backdrop-filter: blur(12px);
    overflow: hidden;
}

.sidebar.active {
    right: 0;
}

.sidebar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 50px;
    z-index: 2;
}

.sidebar-close {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--white);
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
    transition: 0.3s ease;
}

.sidebar-close:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.sidebar-links {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-bottom: 50px;
    z-index: 2;
}

.sidebar-links a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 22px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: 0.3s ease;
}

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

.sidebar-footer {
    margin-top: auto;
    z-index: 2;
}

.sidebar-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    background: var(--primary-color);
    color: #080808;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s ease;
}

.sidebar-phone:hover {
    background: #e5b438;
}

/* Flowing Background Icons animation */
.sidebar-bg-icons {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.floating-icon {
    position: absolute;
    color: var(--white);
    opacity: 0.04;
    font-size: 30px;
    animation: floatSlow 20s linear infinite;
}

.icon-1 {
    top: 15%;
    left: 10%;
    animation-duration: 22s;
    animation-delay: 0s;
}

.icon-2 {
    top: 40%;
    right: 15%;
    font-size: 40px;
    animation-duration: 18s;
    animation-delay: -5s;
}

.icon-3 {
    bottom: 30%;
    left: 15%;
    font-size: 50px;
    animation-duration: 25s;
    animation-delay: -10s;
}

.icon-4 {
    bottom: 10%;
    right: 10%;
    font-size: 45px;
    animation-duration: 20s;
    animation-delay: -3s;
}

@keyframes floatSlow {
    0% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(180deg);
    }

    100% {
        transform: translateY(0) rotate(360deg);
    }
}

.menu-toggle {
    display: none;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: transparent;
    color: #fff;
    cursor: pointer;
    font-size: 16px;
    transition: 0.3s ease;
}

.menu-toggle:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

/* =========================================
           SEAMLESS MARQUEE
        ========================================= */
.seamless-marquee {
    position: relative;
    width: 100%;
    background: var(--primary-color);
    border: none;
    padding: 18px 0;
    overflow: hidden;
    z-index: 15;
    white-space: nowrap;

}

.marquee-track {
    display: inline-flex;
    align-items: center;
    gap: 30px;
    animation: scrollMarquee 25s linear infinite;
}

.marquee-track span {
    font-family: var(--font-oswald);
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--black);
    text-transform: uppercase;
}

.marquee-dot {
    color: var(--black);
    display: inline-block;
}

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

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

/* =========================================
           OUR STORY (ABOUT) SECTION
        ========================================= */
.about-section {
    padding: 120px 0;
    background: var(--black);
    position: relative;
}

.about-container {
    max-width: 1700px;
    margin: 0 auto;
    padding: 0 42px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
    padding: 15px;
}

.about-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.rating-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--primary-color);
    border: none;
    padding: 20px 25px;
    z-index: 5;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    text-align: center;
    width: 140px;
    height: 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.rating-number {
    font-family: var(--font-oswald);
    font-size: 38px;
    font-weight: 700;
    line-height: 1.1;
    color: var(--black);
}

.rating-text {
    font-family: var(--font-oswald);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    color: var(--black);
    margin-top: 4px;
}

.about-content {
    display: flex;
    flex-direction: column;
}

.about-label {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 16px;
    color: var(--primary-color);
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
}

.about-label::before {
    content: "";
    width: 28px;
    height: 1px;
    background: var(--primary-color);
}

.about-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 4vw, 64px);
    font-weight: 600;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 16px;
    text-transform: none;
}

.about-arabic-title {
    color: var(--primary-color);
    font-size: 27px;
    font-weight: 500;
    margin-bottom: 25px;
}

.about-description {
    color: rgba(255, 255, 255, 0.65);
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.about-description:last-of-type {
    margin-bottom: 0;
}

.about-footer-line {
    width: 80px;
    height: 1px;
    background: var(--primary-color);
    margin-top: 30px;
}

.about-highlights {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.highlight-icon {
    color: var(--primary-color);
    font-size: 20px;
    margin-top: 3px;
}

.highlight-item h4 {
    font-family: var(--font-oswald);
    font-size: 18px;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 4px;
    text-transform: uppercase;
}

.highlight-item p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

/* =========================================
           WHY CHOOSE US SECTION
        ========================================= */
.why-section {
    padding: 120px 0;
    background: var(--black);
}

.why-container {
    max-width: 1700px;
    margin: 0 auto;
    padding: 0 42px;
}

.why-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.why-subtitle {
    display: block;
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.why-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 4vw, 64px);
    font-weight: 600;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 20px;
    text-transform: none;
}

.why-description {
    color: rgba(255, 255, 255, 0.6);
    font-size: 18px;
    line-height: 1.6;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.why-card {
    background: #111111;
    padding: 50px 35px;
    text-align: center;
    border-bottom: 2px solid var(--primary-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(214, 163, 45, 0.05);
}

.why-icon-box {
    color: var(--primary-color);
    font-size: 36px;
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.why-card-title {
    font-family: var(--font-inter);
    font-size: 20px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 20px;
}

.why-card-text {
    color: rgba(255, 255, 255, 0.5);
    font-size: 15px;
    line-height: 1.6;
}

/*SERVICES SECTION*/
.services-section {
    padding: 120px 0;
    background: #111111;
    border-left: 2px solid var(--primary-color);
}

.services-container {
    max-width: 1700px;
    margin: 0 auto;
    padding: 0 42px;
}

.services-header {
    margin-bottom: 50px;
}

.services-subtitle {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 16px;
    color: var(--primary-color);
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
}

.services-subtitle::before {
    content: "";
    width: 28px;
    height: 1px;
    background: var(--primary-color);
}

.services-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 4vw, 64px);
    font-weight: 600;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 20px;
}

.services-description {
    color: rgba(255, 255, 255, 0.6);
    font-size: 24px;
    line-height: 1.6;
    max-width: 900px;
}

/* Tabs */
.services-tabs {
    display: flex;
    gap: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 50px;
    padding-bottom: 10px;
}

.tab-btn {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    font-family: var(--font-inter);
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    padding: 10px 0;
    cursor: pointer;
    position: relative;
    transition: color 0.3s ease;
}

.tab-btn:hover {
    color: var(--white);
}

.tab-btn.active {
    color: var(--primary-color);
}

.tab-btn.active::after {
    content: "";
    position: absolute;
    bottom: -11px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
}

/* Tab Contents */
.tab-content {
    display: none;
}

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

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Service Card */
.service-card {
    position: relative;
    background: #0A0A0A;
    border-left: 2px solid var(--primary-color);
    padding: 40px 30px;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    z-index: 1;
    transition: opacity 0.4s ease, transform 0.4s ease;
    transform: scale(1.05);
}

.service-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(5, 5, 5, 0.75), rgba(5, 5, 5, 0.95));
    opacity: 0;
    z-index: 2;
    transition: opacity 0.4s ease;
}

.service-card:hover .service-card-bg {
    opacity: 1;
    transform: scale(1);
}

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

.service-card-content {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-number {
    font-family: var(--font-oswald);
    font-size: 50px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    opacity: 0.4;
}

.service-name {
    font-family: var(--font-inter);
    font-size: 30px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 12px;
}

.service-desc {
    color: rgba(255, 255, 255, 0.55);
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.service-footer-line {
    width: 100%;
    height: 1px;
    background: rgba(214, 163, 45, 0.2);
    margin-bottom: 20px;
}

.service-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.service-price {
    font-family: "Playfair Display", serif;
    font-size: 29px;
    font-weight: 600;
    color: var(--primary-color);
}

.service-time {
    color: rgba(255, 255, 255, 0.4);
    font-size: 15px;
}

.services-footer {
    text-align: center;
    margin-top: 60px;
}

.services-footer-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-inter);
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.services-footer-link:hover {
    color: #e5b438;
}

.services-footer-link i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.services-footer-link:hover i {
    transform: translateX(4px);
}

/* STATS SECTION */
.calicut-stats-section {
    background: var(--primary-color);
    color: var(--black);
    padding: 42px 42px;
    position: relative;
    overflow: hidden;
}

.stats-container {
    max-width: 1700px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.stat-item {
    flex: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.stat-number-wrapper {
    font-family: var(--font-oswald);
    font-size: 85px;
    font-weight: 500;
    line-height: 1;
    margin-bottom: 8px;
    letter-spacing: -1px;
}

.stat-label {
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #3A2A10;
}

.stat-divider {
    width: 1px;
    height: 122px;
    background: rgba(5, 5, 5, 0.25);
}

.stat-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 30px;
}

.stats-bg-icon {
    font-size: 38px;
    color: rgba(5, 5, 5, 0.6);
    transform: rotate(-45deg);
}

/* =========================================
           EXPERIENCE SECTION
   ========================================= */
.calicut-experience-section {
    padding: 120px 42px;
    background: #050505;
}

.experience-container {
    max-width: 1700px;
    margin: 0 auto;
}

.experience-header {
    margin-bottom: 50px;
}

.experience-label {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 16px;
    color: var(--primary-color);
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
}

.experience-label::before {
    content: "";
    width: 28px;
    height: 1px;
    background: var(--primary-color);
}

.experience-title {
    font-family: "Playfair Display", serif;
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.experience-desc {
    font-size: 20px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
}

.experience-grid {
    display: grid;
    grid-template-columns: 4.5fr 5.5fr;
    gap: 20px;
}

.experience-left {
    height: 520px;
    overflow: hidden;
}

.experience-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    cursor: pointer;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.experience-left img:hover {
    transform: scale(1.03);
}

.experience-right-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 20px;
    height: 520px;
}

.experience-right-item {
    overflow: hidden;
}

.experience-right-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    cursor: pointer;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.experience-right-item img:hover {
    transform: scale(1.03);
}

/* Lightbox Modal */
.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.92);
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox-modal.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    max-width: 90%;
    max-height: 85%;
    object-fit: contain;
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.lightbox-modal.active .lightbox-content {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: #fff;
    font-size: 50px;
    font-weight: 300;
    cursor: pointer;
    transition: color 0.3s;
}

/* =========================================
           REVIEWS SECTION
   ========================================= */
.calicut-reviews-section {
    padding: 120px 42px;
    background: #0d0d0d;
    overflow: hidden;
}

.reviews-container {
    max-width: 1700px;
    margin: 0 auto;
    position: relative;
}

.reviews-header {
    text-align: center;
    margin-bottom: 60px;
}

.reviews-label {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 16px;
    color: var(--primary-color);
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.reviews-label::before,
.reviews-label::after {
    content: "";
    width: 20px;
    height: 1px;
    background: var(--primary-color);
}

.reviews-title {
    font-family: 'Playfair Display', serif;
    font-size: 52px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
}

.reviews-desc {
    max-width: 950px;
    margin: 0 auto;
    font-size: 20px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
}

/* Slider Layout */
.reviews-slider-outer {
    display: flex;
    align-items: center;
    position: relative;
    width: 100%;
    margin-top: 40px;
}

.reviews-slider-container {
    width: 100%;
    overflow: hidden;
}

.reviews-track {
    display: flex;
    width: 100%;
}

.review-card {
    flex: 0 0 33.3333%;
    padding: 0 15px;
    box-sizing: border-box;
    background: transparent;
}

.review-card-inner {
    background: #ffffff;
    color: #111111;
    border-radius: 8px;
    padding: 35px;
    min-height: 340px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.review-card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.review-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    background: #eaeaea;
}

.review-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.review-author {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
    color: #111111;
}

.review-stars {
    color: #f1c40f;
    font-size: 14px;
    display: flex;
    gap: 3px;
}

.review-card-body {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.review-text {
    font-size: 15px;
    line-height: 1.6;
    color: #555555;
    margin-bottom: 20px;
}

.review-highlight {
    font-size: 15px;
    font-weight: 700;
    color: #111111;
}

/* Nav Buttons */
.review-nav-btn {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.4);
    font-size: 24px;
    cursor: pointer;
    padding: 20px;
    z-index: 10;
    transition: color 0.3s, transform 0.3s;
}

.review-nav-btn:hover {
    color: var(--primary-color);
}

.prev-btn {
    margin-right: -10px;
}

.next-btn {
    margin-left: -10px;
}

/* =========================================
           CONTACT / FIND US SECTION
   ========================================= */
.calicut-contact-section {
    padding: 120px 42px;
    background: #050505;
}

.contact-container {
    max-width: 1700px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 5.5fr 4.5fr;
    gap: 50px;
}

.contact-left {
    display: flex;
    flex-direction: column;
}

.contact-label {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 16px;
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
}

.contact-label::before {
    content: "";
    width: 28px;
    height: 1px;
    background: var(--primary-color);
}

.contact-title {
    font-family: 'Playfair Display', serif;
    font-size: 64px;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--white);
}

.contact-desc {
    font-size: 20px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 45px;
}

.contact-detail-item {
    display: flex;
    gap: 20px;
}

.contact-detail-icon {
    width: 48px;
    height: 48px;
    background: rgba(29, 29, 29, 0.1);
    border: 1px solid rgba(214, 163, 45, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    color: var(--primary-color);
    font-size: 20px;
    flex-shrink: 0;
}

.contact-detail-info h4 {
    font-size: 14px;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 6px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.contact-detail-info p {
    font-size: 16px;
    color: var(--white);
    line-height: 1.4;
}

.contact-hours {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 35px;
}

.hours-title {
    font-size: 12px;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 17px;
}

.hours-days {
    color: rgba(255, 255, 255, 0.8);
}

.hours-time {
    color: #8a8686;
    font-weight: 500;
}

.contact-right {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.map-wrapper {
    width: 100%;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.map-wrapper iframe {
    display: block;
}

.book-appointment-card {
    background: #0d0d0d;
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 40px;
}

.book-appointment-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    color: var(--white);
    margin-bottom: 15px;
}

.book-appointment-card p {
    font-size: 20px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 25px;
}

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

.btn-whatsapp,
.btn-call {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px;
    font-weight: 600;
    border-radius: 4px;
    text-decoration: none;
    font-size: 20px;
    transition: 0.3s;
}

.btn-whatsapp {
    background: #25d366;
    color: #ffffff;
}

.btn-whatsapp:hover {
    background: #20ba59;
}

.btn-call {
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
}

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

/* =========================================
           FOOTER SECTION
   ========================================= */
.calicut-footer {
    background: #000000;
    color: #ffffff;
    padding: 80px 42px 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
    max-width: 1700px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    max-height: 80px;
    width: auto;
    align-self: flex-start;
    margin-bottom: 20px;
}

.footer-small-hours {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 5px;
}

.footer-big-hours {
    font-family: var(--font-oswald);
    font-size: 36px;
    font-weight: 400;
    color: var(--primary-color);
    margin-top: auto;
}

.footer-col-title {
    font-family: var(--font-oswald);
    font-size: 16px;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 25px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 18px;
    transition: color 0.3s;
}

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

.footer-address {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.918);
    /* margin-bottom: 20px; */
}

.footer-phone {
    font-family: var(--font-oswald);
    font-size: 20px;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 8px;
}

.footer-email {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.4);
}

.slogan-col {
    justify-content: flex-end;
    align-items: flex-end;
}

.footer-slogan {
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-color);
    text-align: center;
    line-height: 1.4;
    margin-bottom: 25px;
}

/* Footer Bottom Bar */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 30px;
}

.footer-bottom-container {
    max-width: 1700px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.4);
}

.footer-bottom-container p {
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
    border-bottom: 1px solid var(--primary-color);
    padding-bottom: 5px;
}

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

/*RESPONSIVE MEDIA QUERIES*/

/* 1. LARGE LAPTOPS */
@media (min-width: 1200px) and (max-width: 1439px) {
    .navbar-container {
        padding: 10px 35px;
    }

    .logo-img {
        max-height: 44px;
    }

    .nav-links {
        gap: 32px;
    }

    .hero-content {
        padding-left: 35px;
        padding-right: 35px;
    }

    .hero-title {
        font-size: clamp(44px, 5.5vw, 90px);
    }

    .about-container {
        padding: 0 35px;
        gap: 50px;
    }
}

/* 2. MINI DESKTOPS & LANDSCAPE TABLETS (Together) */
@media (min-width: 992px) and (max-width: 1199px) {
    .navbar-container {
        padding: 10px 24px;
    }

    .logo-img {
        max-height: 40px;
    }

    .nav-links {
        gap: 24px;
    }

    .nav-links a {
        font-size: 17px;
    }

    .nav-phone {
        padding: 20px 14px;
        font-size: 17px;
    }

    .hero-content {
        padding-left: 24px;
        padding-right: 24px;
    }

    .hero-title {
        font-size: clamp(40px, 5vw, 75px);
    }

    .hero-description {
        font-size: 20px;
    }

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

    .about-container {
        padding: 0 24px;
        gap: 40px;
    }
}

/* 3. PORTRAIT TABLETS (Separate) */
@media (min-width: 577px) and (max-width: 991px) {
    .navbar-container {
        padding: 0 24px;
        height: 70px;
    }

    .logo-img {
        max-height: 38px;
    }

    .nav-links,
    .nav-phone {
        display: none;
    }

    .menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 42px;
        height: 42px;
        font-size: 18px;
    }

    .hero-content {
        padding: 100px 24px 80px;
    }

    .hero-title {
        font-size: clamp(38px, 6vw, 60px);
    }

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

    .experience-circle {
        right: 5%;
        width: 80px;
        height: 80px;
    }

    .experience-number {
        font-size: 18px;
    }

    .about-section {
        padding: 80px 0;
    }

    .about-container {
        grid-template-columns: 1fr;
        gap: 50px;
        padding: 0 24px;
    }

    .about-image-wrapper {
        max-width: 550px;
        margin: 0 auto;
    }

    .why-section {
        padding: 80px 0;
    }

    .why-container {
        padding: 0 24px;
    }

    .why-header {
        margin-bottom: 40px;
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .services-section {
        padding: 80px 0;
    }

    .services-container {
        padding: 0 24px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

/* 4. MOBILE (Separate) */
@media (max-width: 576px) {
    .navbar-container {
        padding: 0 16px;
        height: 60px;
    }

    .logo-img {
        max-height: 54px;
    }

    .nav-links,
    .nav-phone {
        display: none;
    }

    .menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        font-size: 16px;
    }

    .calicut-hero-section {
        min-height: 50vh;
    }

    .hero-content {
        padding: 90px 16px 60px;
    }

    .hero-title {
        font-size: clamp(30px, 9vw, 44px);
        line-height: 1.05;
        letter-spacing: -0.5px;
    }

    .hero-description {
        font-size: 17px;
        line-height: 1.45;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        width: 100%;
    }

    .btn {
        width: 100%;
        padding: 24px 16px;
        font-size: 18px;
    }

    .experience-circle {
        display: none;
    }

    .sidebar {
        width: 85%;
        padding: 20px 24px;
    }

    .sidebar-header {
        margin-bottom: 35px;
    }

    .sidebar-links {
        gap: 22px;
        margin-bottom: 35px;
    }

    .sidebar-links a {
        font-size: 32px;
    }

    /* About section mobile styling inside existing Mobile media query */
    .about-section {
        padding: 60px 0;
    }

    .about-container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 16px;
    }

    .about-image-wrapper {
        margin: 0 auto;
        padding: 8px;
    }

    .rating-badge {
        bottom: -15px;
        right: -10px;
        padding: 10px;
        width: 100px;
        height: 100px;
    }

    .rating-number {
        font-size: 26px;
    }

    .rating-text {
        font-size: 9px;
        letter-spacing: 0.5px;
    }

    .about-title {
        font-size: 28px;
        margin-bottom: 16px;
    }

    .about-description {
        font-size: 15px;
        line-height: 1.5;
        margin-bottom: 25px;
    }

    .about-highlights {
        gap: 18px;
    }

    .highlight-item h4 {
        font-size: 16px;
    }

    .highlight-item p {
        font-size: 13px;
    }

    .seamless-marquee {
        padding: 12px 0;
    }

    .marquee-track span {
        font-size: 14px;
        letter-spacing: 1px;
    }

    .marquee-track {
        gap: 20px;
    }

    .why-section {
        padding: 60px 0;
    }

    .why-container {
        padding: 0 16px;
    }

    .why-header {
        margin-bottom: 40px;
    }

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

    .why-description {
        font-size: 15px;
        line-height: 1.5;
    }

    .why-grid {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        gap: 16px;
        padding-bottom: 15px;
        margin: 0 -16px;
        padding-left: 16px;
        padding-right: 16px;
    }

    .why-grid::-webkit-scrollbar {
        display: none;
    }

    .why-card {
        flex: 0 0 280px;
        scroll-snap-align: center;
        padding: 40px 25px;
    }

    .services-section {
        padding: 60px 0;
    }

    .services-container {
        padding: 0 16px;
    }

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

    .services-description {
        font-size: 15px;
        line-height: 1.5;
    }

    .services-tabs {
        gap: 20px;
        margin-bottom: 35px;
        overflow-x: auto;
        white-space: nowrap;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .services-tabs::-webkit-scrollbar {
        display: none;
    }

    .tab-btn {
        font-size: 14px;
    }

    .services-grid {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        gap: 16px;
        padding-bottom: 15px;
        margin: 0 -16px;
        padding-left: 16px;
        padding-right: 16px;
    }

    .services-grid::-webkit-scrollbar {
        display: none;
    }

    .service-card {
        flex: 0 0 290px;
        scroll-snap-align: center;
        padding: 30px 20px;
        min-height: 280px;
    }

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

/* =========================================
   RESPONSIVE DESIGN FOR NEW SECTIONS
   ========================================= */
@media (max-width: 768px) {

    /* Stats mobile 2x2 grid */
    .calicut-stats-section {
        padding: 40px 20px;
    }

    .stats-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 30px 10px;
    }

    .stat-number-wrapper {
        font-size: 48px;
    }

    .stat-label {
        font-size: 11px;
        letter-spacing: 0.2px;
    }

    .stat-divider {
        display: none;
    }

    .stat-icon-wrapper {
        grid-column: span 2;
        padding-left: 0;
        margin-top: 10px;
    }

    .stats-bg-icon {
        font-size: 32px;
    }

    /* Experience section mobile styling */
    .calicut-experience-section {
        padding: 60px 16px;
    }

    .experience-header {
        margin-bottom: 30px;
    }

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

    .experience-desc {
        font-size: 15px;
        line-height: 1.5;
    }

    .experience-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .experience-left {
        height: 380px;
    }

    .experience-right-grid {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 15px;
        padding-bottom: 15px;
        height: 240px;
        scrollbar-width: none;
    }

    .experience-right-grid::-webkit-scrollbar {
        display: none;
    }

    .experience-right-item {
        flex: 0 0 80%;
        scroll-snap-align: start;
        height: 100%;
    }

    /* Reviews Section Mobile */
    .calicut-reviews-section {
        padding: 60px 16px;
    }

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

    .reviews-desc {
        font-size: 15px;
    }

    .review-card {
        flex: 0 0 100%;
        padding: 0 10px;
    }

    .review-card-inner {
        padding: 25px;
        min-height: auto;
    }

    .review-nav-btn {
        padding: 8px;
        font-size: 18px;
    }

    /* Contact Section Mobile */
    .calicut-contact-section {
        padding: 60px 16px;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .contact-desc {
        font-size: 15px;
        margin-bottom: 30px;
    }

    .appointment-buttons {
        flex-direction: column;
    }

    /* Footer Mobile Section (2x2 Columns) */
    .calicut-footer {
        padding: 50px 16px 20px;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 40px 20px;
        margin-bottom: 40px;
    }

    .slogan-col {
        grid-column: span 2;
        align-items: center;
        text-align: center;
        margin-top: 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
        padding-top: 30px;
    }

    .footer-slogan {
        text-align: center;
        max-width: 100%;
        font-size: 20px;
    }

    .footer-big-hours {
        font-size: 28px;
        margin-top: 15px;
    }

    .footer-bottom-container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .book-appointment-card h3 {
        font-size: 32px;
    }

    .btn-whatsapp,
    .btn-call {
        font-size: 18px;
    }

    .book-appointment-card {
        padding-left: 20px;
        padding-right: 20px;
    }
}

/* =========================================
   PRIVACY & TERMS PAGE STYLES
   ========================================= */
.calicut-privacy-section {
    padding: 140px 0 100px;
    max-width: 1100px;
    margin: 0 auto;
    padding-left: 30px;
    padding-right: 30px;
    font-family: var(--font-inter);
}

.privacy-title {
    font-family: var(--font-oswald);
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.privacy-last-updated {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.privacy-content h2 {
    font-family: var(--font-oswald);
    font-size: 26px;
    font-weight: 600;
    color: var(--white);
    margin-top: 40px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px solid rgba(214, 163, 45, 0.15);
    padding-bottom: 10px;
}

.privacy-content p {
    font-size: 16px;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 22px;
}

.privacy-content ul {
    margin-bottom: 25px;
    padding-left: 24px;
    list-style-type: square;
}

.privacy-content li {
    font-size: 16px;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 10px;
}

.privacy-content strong {
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .calicut-privacy-section {
        padding: 100px 20px 60px;
    }

    .privacy-title {
        font-size: 34px;
        margin-bottom: 10px;
    }

    .privacy-last-updated {
        margin-bottom: 30px;
    }

    .privacy-content h2 {
        font-size: 22px;
        margin-top: 30px;
        margin-bottom: 15px;
    }

    .privacy-content p,
    .privacy-content li {
        font-size: 15px;
        line-height: 1.7;
    }
}

/* =========================================
   ABOUT US PAGE STYLES
   ========================================= */
.calicut-about-us-hero {
    position: relative;
    height: 450px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.about-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center top;
    transform: scale(1.05);
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(5, 5, 5, 0.6) 0%, rgba(5, 5, 5, 0.9) 100%);
}

.about-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 20px;
    margin-top: 60px;
}

.about-hero-content h1 {
    font-family: var(--font-oswald);
    font-size: 56px;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.about-hero-content p {
    font-size: 20px;
    color: var(--white);
    letter-spacing: 1px;
    font-weight: 400;
    max-width: 1000px;
}

.calicut-about-us-section {
    padding: 90px 0;
    font-family: var(--font-inter);
    background: var(--black);
}

.about-us-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Intro Grid */
.about-intro-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 80px;
}

.about-intro-text p {
    font-size: 16px;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 22px;
}

.about-intro-text p.lead-text {
    font-size: 20px;
    line-height: 1.6;
    color: var(--white);
    font-weight: 500;
}

.about-intro-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.about-img-wrapper {
    position: relative;
    aspect-ratio: 4/5;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(214, 163, 45, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s;
}

.about-img-wrapper:hover {
    transform: translateY(-5px);
}

.about-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Highlight Box */
.about-highlight-box {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-left: 4px solid var(--primary-color);
    padding: 40px;
    border-radius: 4px;
    margin-bottom: 80px;
}

.about-highlight-box h2 {
    font-family: var(--font-oswald);
    font-size: 32px;
    color: var(--white);
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.about-highlight-box p {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 15px;
}

.about-highlight-box p.highlight-slogan {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0;
}

/* Why Boxes Grid */
.about-why-boxes {
    margin-bottom: 80px;
}

.about-why-title {
    font-family: var(--font-oswald);
    font-size: 32px;
    color: var(--white);
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 40px;
    letter-spacing: 1px;
}

.why-boxes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.why-box {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px 30px;
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.why-box:hover {
    transform: translateY(-8px);
    border-color: rgba(214, 163, 45, 0.3);
    background: rgba(214, 163, 45, 0.02);
}

.why-box-num {
    font-family: var(--font-oswald);
    font-size: 40px;
    font-weight: 700;
    color: var(--primary-color);
    opacity: 0.25;
    margin-bottom: 15px;
    transition: opacity 0.3s;
}

.why-box:hover .why-box-num {
    opacity: 0.8;
}

.why-box h4 {
    font-family: var(--font-oswald);
    font-size: 22px;
    color: var(--white);
    text-transform: uppercase;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.why-box p {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
}

/* Outro CTA Grid */
.about-outro-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: stretch;
}

.outro-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 6px;
}

.outro-card h3 {
    font-family: var(--font-oswald);
    font-size: 28px;
    color: var(--white);
    text-transform: uppercase;
    margin-bottom: 20px;
}

.outro-card p {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 15px;
}

.outro-card p.bold-text {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0;
}

.outro-cta {
    background: linear-gradient(135deg, rgba(214, 163, 45, 0.1) 0%, rgba(5, 5, 5, 0.5) 100%);
    border: 1px dashed var(--primary-color);
    padding: 40px;
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.outro-cta h3 {
    font-family: var(--font-oswald);
    font-size: 28px;
    color: var(--white);
    text-transform: uppercase;
    margin-bottom: 10px;
}

.outro-cta p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}

.about-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: white;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.about-cta-btn:hover {
    background: #20ba59;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

/* Media Queries for About page */
@media (max-width: 992px) {
    .about-intro-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .why-boxes-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .about-outro-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .calicut-about-us-hero {
        height: 280px;
    }

    .about-hero-content h1 {
        font-size: 40px;
    }

    .about-hero-content p {
        font-size: 16px;
    }

    .calicut-about-us-section {
        padding: 50px 0;
    }

    .about-us-container {
        padding: 0 16px;
    }

    .about-intro-images {
        grid-template-columns: 1fr 1fr;
    }

    .why-boxes-grid {
        grid-template-columns: 1fr;
    }

    .about-highlight-box {
        padding: 25px;
    }
}

/* =========================================
   NEW BOOKING & SERVICES WORKFLOW
   ========================================= */

/* Main Containers */
.services-booking-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    max-width: 1400px;
    margin: 40px auto 90px;
    background: #0d0d0d;
    border: 1px solid rgba(214, 163, 45, 0.15);
    border-radius: 8px;
    overflow: hidden;
    min-height: 650px;
}

.services-left-panel {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.services-left-panel .panel-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.services-left-panel .panel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 5, 5, 0.65);
}

.services-left-panel .panel-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.services-left-panel .panel-logo {
    max-width: 252px;
    height: auto;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.5));
}

.services-right-panel {
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
}

.services-right-panel .panel-title {
    font-family: var(--font-oswald);
    font-size: 24px;
    color: var(--white);
    line-height: 1.4;
    margin-bottom: 25px;
    text-transform: uppercase;
}

/* Common Filters */
.gender-filters,
.appointment-filter-row {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
}

.category-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 20px;
}

.filter-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.7);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    text-transform: uppercase;
    transition: all 0.3s;
}

.filter-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.filter-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--black);
}

/* Selection Cart Bar */
.selection-cart-bar {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(214, 163, 45, 0.2);
    padding: 15px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 6px;
    margin-bottom: 30px;
}

.selection-cart-bar .cart-status {
    font-size: 16px;
    color: var(--white);
    font-weight: 500;
}

.selection-cart-bar .checkout-btn {
    background: var(--primary-color);
    border: none;
    color: var(--black);
    padding: 10px 24px;
    font-family: var(--font-oswald);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.selection-cart-bar .checkout-btn:hover {
    background: var(--primary-dark);
}

/* Services list styles */
.services-list-container {
    max-height: 480px;
    overflow-y: auto;
    padding-right: 10px;
}

.services-list-container::-webkit-scrollbar {
    width: 6px;
}

.services-list-container::-webkit-scrollbar-thumb {
    background-color: rgba(214, 163, 45, 0.3);
    border-radius: 10px;
}

.category-group-header {
    font-family: var(--font-oswald);
    font-size: 18px;
    color: var(--primary-color);
    text-transform: uppercase;
    margin: 25px 0 15px;
    letter-spacing: 0.5px;
}

.service-booking-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.08);
}

.service-booking-item:last-child {
    border-bottom: none;
}

.service-info h3 {
    font-size: 16px;
    color: var(--white);
    font-weight: 500;
    margin-bottom: 4px;
}

.badge-men,
.badge-kids {
    font-size: 10px;
    color: var(--primary-color);
    margin-left: 5px;
}

.service-duration {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

.service-price-book {
    display: flex;
    align-items: center;
    gap: 20px;
}

.service-price-tag {
    font-family: var(--font-oswald);
    font-size: 16px;
    color: var(--white);
    font-weight: 500;
}

.book-btn {
    background: transparent;
    border: 1px solid var(--white);
    color: var(--white);
    padding: 8px 18px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.book-btn:hover {
    background: var(--white);
    color: var(--black);
}

.book-btn.booked {
    background: rgba(214, 163, 45, 0.15);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

/* =========================================
   APPOINTMENT VIEW STYLES
   ========================================= */
.appointment-layout-container {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 40px;
    max-width: 1400px;
    margin: 50px auto 90px;
    padding: 0 30px;
}

.appointment-left-col {
    background: #0d0d0d;
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 8px;
}

.appointment-filter-row .filter-label {
    align-self: center;
    font-size: 13px;
    font-weight: 600;
    margin-right: 10px;
    color: rgba(255, 255, 255, 0.5);
}

.appointment-accordion-container {
    margin-top: 30px;
}

.accordion-item {
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 6px;
    margin-bottom: 15px;
    overflow: hidden;
}

.accordion-header {
    background: rgba(255, 255, 255, 0.02);
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: var(--font-oswald);
    font-size: 17px;
    letter-spacing: 0.5px;
    transition: background-color 0.3s;
}

.accordion-header:hover {
    background: rgba(255, 255, 255, 0.04);
}

.accordion-header i {
    color: var(--primary-color);
    transition: transform 0.3s;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s;
    background: #070707;
    padding: 0 25px;
}

.accordion-content.open {
    max-height: 1000px;
    padding: 15px 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.accordion-service-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.05);
}

.accordion-service-row:last-child {
    border-bottom: none;
}

.service-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.service-actions .price {
    font-family: var(--font-oswald);
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
}

.add-btn {
    background: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    padding: 6px 16px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

.add-btn.added {
    background: var(--primary-color);
    color: var(--black);
}

/* Cart Widget */
.appointment-right-col .cart-widget {
    background: #0d0d0d;
    border: 1px solid rgba(214, 163, 45, 0.2);
    border-radius: 8px;
    position: sticky;
    top: 110px;
}

.cart-widget-header {
    padding: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-widget-header h3 {
    font-family: var(--font-oswald);
    font-size: 18px;
    letter-spacing: 0.5px;
}

.cart-badge {
    background: var(--primary-color);
    color: var(--black);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 12px;
}

.cart-widget-items {
    padding: 25px;
    max-height: 350px;
    overflow-y: auto;
}

.cart-widget-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.cart-widget-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.cart-item-details h4 {
    font-size: 14px;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 4px;
}

.cart-item-details p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

.remove-cart-item-btn {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.4);
    font-size: 20px;
    cursor: pointer;
    transition: color 0.3s;
}

.remove-cart-item-btn:hover {
    color: #ff4d4d;
}

.cart-widget-footer {
    padding: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.proceed-booking-btn {
    width: 100%;
    background: var(--primary-color);
    border: none;
    color: var(--black);
    padding: 14px;
    font-family: var(--font-oswald);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s;
}

.proceed-booking-btn:hover {
    background: var(--primary-dark);
}

.empty-cart-msg {
    text-align: center;
    color: rgba(255, 255, 255, 0.4);
    font-size: 14px;
    padding: 20px 0;
}

/* =========================================
   CHECKOUT STYLES
   ========================================= */
.checkout-layout-container {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 40px;
    max-width: 1400px;
    margin: 50px auto 90px;
    padding: 0 30px;
}

.checkout-summary-box {
    background: #0d0d0d;
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 8px;
    position: sticky;
    top: 110px;
}

.summary-box-header,
.form-box-header {
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 15px;
    margin-bottom: 25px;
}

.summary-box-header i,
.form-box-header i {
    color: var(--primary-color);
    font-size: 20px;
}

.summary-box-header h3,
.form-box-header h3 {
    font-family: var(--font-oswald);
    font-size: 18px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.checkout-summary-items {
    margin-bottom: 25px;
}

.summary-item-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.05);
}

.summary-item-row:last-child {
    border-bottom: none;
}

.summary-item-info h4 {
    font-size: 14px;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 4px;
}

.summary-item-info p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

.summary-item-price {
    font-family: var(--font-oswald);
    font-size: 15px;
    color: var(--white);
}

.checkout-summary-totals {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px 0;
    margin-bottom: 25px;
}

.total-row {
    display: flex;
    justify-content: space-between;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 10px;
}

.total-row:last-child {
    margin-bottom: 0;
}

.total-row .subtotal-val {
    font-family: var(--font-oswald);
    font-size: 18px;
    color: var(--primary-color);
    font-weight: 600;
}

.total-row .duration-val {
    color: var(--white);
    font-weight: 600;
}

.edit-services-wrapper {
    text-align: center;
}

.edit-services-link {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.edit-services-link:hover {
    color: var(--primary-color);
}

.details-form-box {
    background: #0d0d0d;
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 8px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label,
.promo-code-group label {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.promo-code-group input {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    padding: 12px 16px;
    border-radius: 4px;
    font-size: 14px;
    font-family: var(--font-inter);
    transition: all 0.3s;
    margin-bottom: 15px;
}

.form-group input:focus,
.form-group select:focus,
.promo-code-group input:focus {
    border-color: var(--primary-color);
    outline: none;
    background: rgba(214, 163, 45, 0.02);
}

.form-group select option {
    background: #0d0d0d;
    color: var(--white);
}

.salon-status-alert {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #2ec4b6;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
}

.salon-hours-table {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.01) 0%, rgba(214, 163, 45, 0.03) 100%);
    border: 1px solid rgba(214, 163, 45, 0.12);
    padding: 22px;
    border-radius: 8px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.hours-col {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hours-col div {
    display: flex;
    align-items: center;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.02);
    border-left: 3px solid rgba(214, 163, 45, 0.3);
    border-radius: 0 4px 4px 0;
    transition: all 0.3s ease;
    font-weight: 500;
}

.hours-col div:hover {
    border-left-color: var(--primary-color);
    background: rgba(214, 163, 45, 0.08);
    transform: translateX(4px);
    color: var(--white);
}

.promo-code-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 30px;
}

.confirm-booking-btn {
    width: 100%;
    background: var(--primary-color);
    border: none;
    color: var(--black);
    padding: 16px;
    font-family: var(--font-oswald);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.5px;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background 0.3s;
}

.confirm-booking-btn:hover {
    background: var(--primary-dark);
}

.no-otp-notice {
    text-align: center;
    color: rgba(255, 255, 255, 0.4);
    font-size: 12px;
    margin-top: 15px;
}

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

    .services-left-panel {
        display: none;
    }

    .appointment-layout-container {
        grid-template-columns: 1fr;
    }

    .appointment-right-col .cart-widget {
        position: static;
        margin-top: 30px;
    }

    .checkout-layout-container {
        grid-template-columns: 1fr;
    }

    .checkout-summary-box {
        position: static;
        margin-bottom: 30px;
    }
}

@media (max-width: 576px) {
    .services-right-panel {
        padding: 30px 20px;
    }

    .form-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .salon-hours-table {
        grid-template-columns: 1fr;
    }

    .service-info h3 {
        font-size: 13px;
    }

    .service-duration {
        font-size: 12px;
    }

    .service-price-tag,
    .book-btn {
        font-size: 11px;
    }

    .appointment-layout-container {
        padding: 0 10px;
    }

    .accordion-header {
        font-size: 16px;
    }

    .appointment-left-col {
        padding: 30px 14px;
    }

    .details-form-box {
        padding: 40px 20px;
    }
}

/* CONTACT US PAGE STYLES */
.calicut-contact-us-section {
    padding: 90px 0;
    font-family: var(--font-inter);
    background: var(--black);
}

.contact-us-page-container {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    align-items: start;
    margin-bottom: 90px;
}

.contact-form-box {
    background: #0d0d0d;
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 8px;
}

.contact-form-box .form-title {
    font-family: var(--font-oswald);
    font-size: 26px;
    color: var(--white);
    text-transform: uppercase;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.contact-form-box .form-subtitle {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 30px;
    line-height: 1.6;
}

.contact-form-box textarea {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    padding: 12px 16px;
    border-radius: 4px;
    font-size: 14px;
    font-family: var(--font-inter);
    transition: all 0.3s;
    resize: none;
    margin-bottom: 15px;
}

.contact-form-box textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    background: rgba(214, 163, 45, 0.02);
}

.contact-submit-btn {
    width: 100%;
    background: var(--primary-color);
    border: none;
    color: var(--black);
    padding: 14px;
    font-family: var(--font-oswald);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.5px;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    transition: background 0.3s;
}

.contact-submit-btn:hover {
    background: var(--primary-dark);
}

.contact-page-right .contact-info-panel {
    background: #0d0d0d;
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 8px;
}

.contact-page-right .contact-label {
    display: inline-block;
    background: rgba(214, 163, 45, 0.1);
    color: var(--primary-color);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 5px 12px;
    border-radius: 50px;
    margin-bottom: 12px;
}

.contact-page-right .contact-title {
    font-family: var(--font-oswald);
    font-size: 32px;
    color: var(--white);
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.contact-page-right .contact-desc {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
}

.contact-page-right .contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-page-right .contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-page-right .contact-detail-icon {
    color: var(--primary-color);
    font-size: 18px;
    margin-top: 2px;
    flex-shrink: 0;
}

.contact-page-right .contact-detail-info h4 {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 4px;
}

.contact-page-right .contact-detail-info p {
    font-size: 14px;
    color: var(--white);
    line-height: 1.5;
}

.contact-page-right .contact-hours {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 25px;
}

.contact-page-right .hours-title {
    font-family: var(--font-oswald);
    font-size: 16px;
    color: var(--white);
    text-transform: uppercase;
    margin-bottom: 15px;
}

.contact-page-right .hours-row {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 10px;
}

@media (max-width: 992px) {
    .contact-us-page-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 576px) {

    .contact-form-box,
    .contact-page-right .contact-info-panel {
        padding: 30px 20px;
    }
}

/*404 ERROR PAGE STYLES*/
.calicut-404-section {
    padding: 120px 0 120px;
    background: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-family: var(--font-inter);
}

.error-container {
    max-width: 600px;
    padding: 0 20px;
}

.error-icon {
    font-size: 70px;
    color: var(--primary-color);
    margin-bottom: 25px;
    animation: scissorsCut 2s infinite ease-in-out;
}
.social-links {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.social-links .social-link {
    font-size: 20px;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-links .social-link .fa-facebook {
    color: #1877F2;
}

.social-links .social-link .fa-instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    -webkit-background-clip: text;
            background-clip: text;
    -webkit-text-fill-color: transparent;
            color: transparent;
}

.social-links .social-link:hover {
    transform: scale(1.2);
}
@keyframes scissorsCut {

    0%,
    100% {
        transform: rotate(0deg);
    }

    50% {
        transform: rotate(-15deg);
    }
}

.error-code {
    font-family: var(--font-oswald);
    font-size: 110px;
    font-weight: 700;
    line-height: 1;
    color: var(--primary-color);
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.error-title {
    font-family: var(--font-oswald);
    font-size: 32px;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 15px;
}

.error-desc {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 40px;
}

.error-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.error-btn {
    display: inline-block;
    padding: 14px 28px;
    font-family: var(--font-oswald);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-home {
    background: var(--primary-color);
    color: var(--black);
    border: 1px solid var(--primary-color);
}

.btn-home:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
}

.btn-services {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-services:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--white);
}

@media (max-width: 576px) {
    .calicut-404-section {
        padding: 90px 0 110px;
    }

    .error-code {
        font-size: 80px;
    }

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

    .error-actions {
        flex-direction: column;
        gap: 15px;
    }
}

/* FLOATING WHATSAPP BUTTON */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 34px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.4);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #20ba59;
    transform: scale(1.1);
}

/* THANK YOU PAGE STYLES */
.calicut-thankyou-section {
    padding: 180px 0 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #050505;
    min-height: 70vh;
}

.thankyou-container {
    max-width: 600px;
    padding: 40px 30px;
    background: #0A0A0A;
    border-left: 2px solid var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.checkmark-svg {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: block;
    stroke-width: 3;
    stroke: var(--primary-color);
    stroke-miterlimit: 10;
    box-shadow: inset 0px 0px 0px var(--primary-color);
    animation: fillCheckmark .4s ease-in-out .4s forwards, scaleCheckmark .3s ease-in-out .9s;
    margin-bottom: 25px;
}

.checkmark-circle {
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-width: 3;
    stroke-miterlimit: 10;
    stroke: var(--primary-color);
    fill: none;
    animation: strokeCheckmark 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark-check {
    transform-origin: 50% 50%;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    stroke-width: 4;
    stroke: #050505;
    animation: strokeCheckmark 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

@keyframes strokeCheckmark {
    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes fillCheckmark {
    100% {
        box-shadow: inset 0px 0px 0px 40px var(--primary-color);
    }
}

@keyframes scaleCheckmark {
    0%, 100% {
        transform: none;
    }
    50% {
        transform: scale3d(1.1, 1.1, 1);
    }
}

.thankyou-title {
    font-family: var(--font-oswald);
    font-size: 42px;
    color: #fff;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.thankyou-message {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 10px;
    font-weight: 500;
}

.thankyou-submessage {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 30px;
    line-height: 1.6;
}

.thankyou-actions {
    display: flex;
    gap: 15px;
}

@media (max-width: 576px) {
    .calicut-thankyou-section {
        padding: 120px 0 100px;
    }
    
    .thankyou-title {
        font-size: 32px;
    }

    .thankyou-message {
        font-size: 16px;
    }
    
    .thankyou-actions {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }
    
    .thankyou-actions .btn {
        width: 100%;
    }
}