/* ===========================
   SHIVANSH TRAVELS - Premium Travel Website
   Author: Senior UI/UX Design
   =========================== */

/* ===========================
   CSS VARIABLES & BASE
   =========================== */
:root {
    --st-primary: #0B1F33;
    --st-secondary: #087F8C;
    --st-accent: #D8B36A;
    --st-bg: #F7F6F2;
    --st-dark: #17202A;
    --st-muted: #68737D;
    --st-white: #FFFFFF;
    --st-light-gray: #E8E6E1;
    --st-medium-gray: #D1CFC9;
    
    --st-font-primary: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    
    --st-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --st-shadow-sm: 0 1px 3px rgba(11, 31, 51, 0.08);
    --st-shadow-md: 0 4px 12px rgba(11, 31, 51, 0.1);
    --st-shadow-lg: 0 8px 30px rgba(11, 31, 51, 0.12);
    --st-shadow-xl: 0 20px 60px rgba(11, 31, 51, 0.15);
}

/* ===========================
   RESET & BASE STYLES
   =========================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--st-font-primary);
    font-size: 16px;
    line-height: 1.7;
    color: var(--st-dark);
    background-color: var(--st-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

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

/* ===========================
   UTILITY CLASSES
   =========================== */
.st-section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--st-secondary);
    margin-bottom: 1rem;
    position: relative;
    padding-left: 2rem;
}

.st-section-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1.25rem;
    height: 2px;
    background-color: var(--st-secondary);
}

.st-section-heading {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--st-primary);
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
}

.st-section-subheading {
    font-size: 1.05rem;
    color: var(--st-muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.75;
}

/* Buttons */
.st-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    background-color: var(--st-secondary);
    color: var(--st-white);
    font-weight: 600;
    font-size: 0.95rem;
    border: 2px solid var(--st-secondary);
    border-radius: 6px;
    transition: var(--st-transition);
    cursor: pointer;
    text-decoration: none;
}

.st-btn-primary:hover {
    background-color: #076d79;
    border-color: #076d79;
    color: var(--st-white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(8, 127, 140, 0.35);
}

.st-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    background-color: transparent;
    color: var(--st-white);
    font-weight: 600;
    font-size: 0.95rem;
    border: 2px solid rgba(255,255,255,0.6);
    border-radius: 6px;
    transition: var(--st-transition);
    cursor: pointer;
    text-decoration: none;
}

.st-btn-outline:hover {
    background-color: var(--st-white);
    border-color: var(--st-white);
    color: var(--st-primary);
    transform: translateY(-2px);
}

/* ===========================
   NAVBAR
   =========================== */
.st-navbar {
    padding: 0.5rem 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1050;
    background-color: transparent;
}

.st-navbar.scrolled {
    padding: 0.65rem 0;
    background-color: rgb(255 255 255 / 95%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

.st-navbar__brand {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
}

.st-navbar__logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--st-accent);
    border-radius: 8px;
    color: var(--st-primary);
    font-size: 1.1rem;
}

.st-navbar__logo-text {
    font-size: 1.2rem;
    color: var(--st-white);
    letter-spacing: -0.01em;
}

.st-navbar__logo-text strong {
    font-weight: 800;
}

.st-navbar__nav .nav-link {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: var(--st-transition);
    position: relative;
}

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

.st-navbar__nav .nav-link:hover,
.st-navbar__nav .nav-link.active {
    color: var(--st-white);
}

.st-navbar__nav .nav-link:hover::after,
.st-navbar__nav .nav-link.active::after {
    width: 70%;
}

.st-navbar__actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.st-navbar__call-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 1rem;
    color: var(black);
    font-size: 0.85rem;
    font-weight: 600;
    border: 1.5px solid rgba(0, 0, 0, 0.3);
    border-radius: 6px;
    transition: var(--st-transition);
}

.st-navbar__call-btn:hover {
    background-color: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.5);
        border: 1.5px solid rgba(209, 190, 190, 0.3);
    color: var(black);
}

.st-navbar__whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 1rem;
    background-color: var(--st-secondary);
    color: var(--st-white);
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 6px;
    transition: var(--st-transition);
}

.st-navbar__whatsapp-btn:hover {
    background-color: #076d79;
    color: var(--st-white);
    transform: translateY(-1px);
}

/* Navbar Toggle */
.st-navbar__toggle {
    border: none;
    padding: 0.5rem;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.st-navbar__toggle-icon {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--st-white);
    position: relative;
    transition: var(--st-transition);
}

.st-navbar__toggle-icon::before,
.st-navbar__toggle-icon::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background-color: var(--st-white);
    left: 0;
    transition: var(--st-transition);
}

.st-navbar__toggle-icon::before { top: -7px; }
.st-navbar__toggle-icon::after { bottom: -7px; }

.st-navbar__toggle[aria-expanded="true"] .st-navbar__toggle-icon {
    background-color: transparent;
}

.st-navbar__toggle[aria-expanded="true"] .st-navbar__toggle-icon::before {
    transform: rotate(45deg);
    top: 0;
}

.st-navbar__toggle[aria-expanded="true"] .st-navbar__toggle-icon::after {
    transform: rotate(-45deg);
    bottom: 0;
}

/* Mobile Nav */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background-color: var(--st-primary);
        margin: 0.75rem -0.75rem 0;
        padding: 1.5rem;
        border-radius: 12px;
    }
    
    .st-navbar__nav .nav-link {
        padding: 0.75rem 0;
        border-bottom: 1px solid rgba(255,255,255,0.08);
    }
    
    .st-navbar__nav .nav-link:last-child {
        border-bottom: none;
    }
}

/* ===========================
   HERO SECTION
   =========================== */
.st-hero {
    position: relative;
    height: 85vh;
    min-height: 600px;
    max-height: 900px;
}

.st-hero__slider {
    height: 100%;
}

.st-hero__slide {
    position: relative;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}

.st-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgb(217 222 227 / 85%) 0%, rgba(11, 31, 51, 0.6) 50%, rgba(11, 31, 51, 0.4) 100%);
}

.st-hero__content {
    position: relative;
    z-index: 2;
    max-width: 650px;
}

.st-hero__eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--st-accent);
    margin-bottom: 1rem;
    padding: 0.35rem 1rem;
    border: 1px solid rgba(216, 179, 106, 0.3);
    border-radius: 4px;
}

.st-hero__heading {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--st-white);
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
}

.st-hero__text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2rem;
    max-width: 520px;
}

.st-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.st-hero__actions .st-btn-primary {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.st-hero__actions .st-btn-outline {
    padding: 1rem 2rem;
    font-size: 1rem;
}

/* Hero Pagination */
.st-hero__pagination {
    bottom: 2rem !important;
}

.st-hero__pagination .swiper-pagination-bullet {
    width: 32px;
    height: 3px;
    border-radius: 2px;
    background-color: rgba(255,255,255,0.4);
    opacity: 1;
    transition: var(--st-transition);
}

.st-hero__pagination .swiper-pagination-bullet-active {
    width: 48px;
    background-color: var(--st-accent);
}

/* Ken Burns Effect */
.swiper-slide-active .st-hero__slide {
    animation: kenBurns 15s ease infinite alternate;
}

@keyframes kenBurns {
    0% { transform: scale(1); }
    100% { transform: scale(1.08); }
}

/* Hero Mobile */
@media (max-width: 768px) {
    .st-hero {
        height: 70vh;
        min-height: 500px;
    }
    
    .st-hero__heading {
        font-size: clamp(1.75rem, 7vw, 2.5rem);
    }
    
    .st-hero__text {
        font-size: 1rem;
    }
    
    .st-hero__actions {
        flex-direction: column;
    }
    
    .st-hero__actions .st-btn-primary,
    .st-hero__actions .st-btn-outline {
        width: 100%;
        justify-content: center;
    }
}

/* ===========================
   SERVICES SECTION
   =========================== */
.st-services {
    padding: 6rem 0;
    background-color: var(--st-bg);
}

.st-service-card {
    position: relative;
    padding: 2.5rem 2rem;
    background-color: var(--st-white);
    border-radius: 12px;
    border: 1px solid var(--st-light-gray);
    transition: var(--st-transition);
    height: 100%;
    overflow: hidden;
}

.st-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--st-secondary);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--st-transition);
}

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

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

.st-service-card__number {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--st-medium-gray);
    letter-spacing: 0.05em;
}

.st-service-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    background-color: rgba(8, 127, 140, 0.08);
    border-radius: 10px;
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    color: var(--st-secondary);
    transition: var(--st-transition);
}

.st-service-card:hover .st-service-card__icon {
    background-color: var(--st-secondary);
    color: var(--st-white);
    transform: scale(1.05);
}

.st-service-card__title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--st-primary);
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
}

.st-service-card__text {
    font-size: 0.95rem;
    color: var(--st-muted);
    line-height: 1.65;
    margin: 0;
}

/* ===========================
   ABOUT SECTION
   =========================== */
.st-about {
    padding: 6rem 0;
    background-color: var(--st-white);
}

.st-about__image-wrapper {
    position: relative;
    padding: 1rem;
}

.st-about__image-main {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--st-shadow-lg);
}

.st-about__image-main img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.st-about__image-accent {
    position: absolute;
    bottom: -1rem;
    right: -1rem;
    width: 200px;
    height: 160px;
    border-radius: 12px;
    overflow: hidden;
    border: 4px solid var(--st-white);
    box-shadow: var(--st-shadow-lg);
}

.st-about__image-accent img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.st-about__image-badge {
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--st-accent);
    color: var(--st-primary);
    padding: 1rem 1.25rem;
    border-radius: 0 12px 0 12px;
    box-shadow: var(--st-shadow-md);
}

.st-about__badge-text {
    font-size: 0.85rem;
    font-weight: 600;
    display: block;
    line-height: 1.3;
}

.st-about__badge-text strong {
    display: block;
    font-size: 1.1rem;
    font-weight: 800;
}

.st-about__content p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--st-muted);
    margin-bottom: 1rem;
}

.st-about__content p:last-child {
    margin-bottom: 0;
}

.st-about__highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--st-light-gray);
}

.st-about__highlight-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.st-about__highlight-item i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(8, 127, 140, 0.08);
    border-radius: 8px;
    color: var(--st-secondary);
    font-size: 1rem;
    flex-shrink: 0;
}

.st-about__highlight-item div {
    display: flex;
    flex-direction: column;
}

.st-about__highlight-item strong {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--st-primary);
    line-height: 1.2;
}

.st-about__highlight-item span {
    font-size: 0.8rem;
    color: var(--st-muted);
}

/* About Mobile */
@media (max-width: 991.98px) {
    .st-about__image-accent {
        width: 150px;
        height: 120px;
        bottom: 0.5rem;
        right: 0.5rem;
    }
    
    .st-about__image-main img {
        height: 350px;
    }
}

@media (max-width: 575.98px) {
    .st-about__highlights {
        flex-direction: column;
        gap: 1rem;
    }
}

/* ===========================
   WHY CHOOSE US SECTION
   =========================== */
.st-why {
    padding: 6rem 0;
    background-color: var(--st-primary);
    color: var(--st-white);
}

.st-why .st-section-label {
    color: var(--st-accent);
}

.st-why .st-section-label::before {
    background-color: var(--st-accent);
}

.st-why .st-section-heading {
    color: var(--st-white);
}

.st-why__grid {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.st-why__item {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    padding: 2rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--st-transition);
}

.st-why__item:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.st-why__item:hover {
    padding-left: 1rem;
}

.st-why__number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--st-accent);
    line-height: 1;
    min-width: 60px;
    opacity: 0.7;
    transition: var(--st-transition);
}

.st-why__item:hover .st-why__number {
    opacity: 1;
}

.st-why__content {
    flex: 1;
}

.st-why__title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--st-white);
    letter-spacing: -0.01em;
}

.st-why__text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* Why Mobile */
@media (max-width: 575.98px) {
    .st-why__item {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .st-why__number {
        font-size: 1.5rem;
        min-width: auto;
    }
}

/* ===========================
   FACILITIES SECTION
   =========================== */
.st-facilities {
    padding: 6rem 0;
    background-color: var(--st-bg);
}

.st-facility-card {
    position: relative;
    padding: 2rem;
    background-color: var(--st-white);
    border-radius: 12px;
    border: 1px solid var(--st-light-gray);
    transition: var(--st-transition);
    height: 100%;
    text-align: center;
}

.st-facility-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--st-shadow-md);
    border-color: var(--st-secondary);
}

.st-facility-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: rgba(8, 127, 140, 0.08);
    border-radius: 50%;
    margin: 0 auto 1.25rem;
    font-size: 1.4rem;
    color: var(--st-secondary);
    transition: var(--st-transition);
}

.st-facility-card:hover .st-facility-card__icon {
    background-color: var(--st-secondary);
    color: var(--st-white);
    transform: scale(1.1);
}

.st-facility-card__title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--st-primary);
    margin-bottom: 0.65rem;
}

.st-facility-card__text {
    font-size: 0.9rem;
    color: var(--st-muted);
    line-height: 1.6;
    margin: 0;
}

/* CTA Facility Card */
.st-facility-card--cta {
    background-color: var(--st-secondary);
    border-color: var(--st-secondary);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.st-facility-card--cta .st-facility-card__title {
    color: var(--st-white);
    font-size: 1.2rem;
}

.st-facility-card--cta .st-facility-card__text {
    color: rgba(255,255,255,0.85);
    margin-bottom: 1.25rem;
}

.st-facility-card--cta .st-btn-primary {
    background-color: var(--st-white);
    color: var(--st-secondary);
    border-color: var(--st-white);
}

.st-facility-card--cta .st-btn-primary:hover {
    background-color: var(--st-accent);
    border-color: var(--st-accent);
    color: var(--st-primary);
}

/* ===========================
   CTA SECTION
   =========================== */
.st-cta {
    position: relative;
    padding: 7rem 0;
    overflow: hidden;
}

.st-cta__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.st-cta__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(11, 31, 51, 0.9) 0%,
        rgba(11, 31, 51, 0.75) 100%
    );
}

.st-cta__content {
    position: relative;
    z-index: 2;
}

.st-cta__heading {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--st-white);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.st-cta__text {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.st-cta__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.st-cta__actions .st-btn-primary {
    background-color: var(--st-secondary);
    border-color: var(--st-secondary);
    padding: 1rem 2rem;
    font-size: 1rem;
}

.st-cta__actions .st-btn-primary:hover {
    background-color: #076d79;
    border-color: #076d79;
}

.st-cta__actions .st-btn-outline {
    padding: 1rem 2rem;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .st-cta__bg {
        background-attachment: scroll;
    }
    
    .st-cta__actions {
        flex-direction: column;
        align-items: center;
    }
    
    .st-cta__actions .st-btn-primary,
    .st-cta__actions .st-btn-outline {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }
}

/* ===========================
   CONTACT SECTION
   =========================== */
.st-contact {
    padding: 6rem 0;
    background-color: var(--st-white);
}

.st-contact__info {
    padding: 2.5rem;
    background-color: var(--st-primary);
    border-radius: 16px;
    color: var(--st-white);
    height: 100%;
}

.st-contact__info-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.st-contact__info-text {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.75);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.st-contact__persons {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.st-contact__person {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background-color: rgba(255,255,255,0.08);
    border-radius: 12px;
    transition: var(--st-transition);
}

.st-contact__person:hover {
    background-color: rgba(255,255,255,0.12);
}

.st-contact__person-avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background-color: var(--st-accent);
    border-radius: 50%;
    color: var(--st-primary);
    font-weight: 800;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.st-contact__person-details h4 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
    color: var(--st-white);
}

.st-contact__person-phone,
.st-contact__person-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
    margin-right: 1rem;
    transition: var(--st-transition);
}

.st-contact__person-phone:hover,
.st-contact__person-whatsapp:hover {
    color: var(--st-accent);
}

.st-contact__note {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background-color: rgba(255,255,255,0.06);
    border-radius: 8px;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
}

.st-contact__note i {
    color: var(--st-accent);
    font-size: 1.1rem;
}

/* Enquiry Form */
.st-enquiry-form {
    padding: 2.5rem;
    background-color: var(--st-bg);
    border-radius: 16px;
    border: 1px solid var(--st-light-gray);
}

.st-enquiry-form__title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--st-primary);
    margin-bottom: 1.5rem;
}

.st-enquiry-form .form-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--st-primary);
    margin-bottom: 0.4rem;
}

.st-enquiry-form .form-control,
.st-enquiry-form .form-select {
    padding: 0.75rem 1rem;
    border: 1.5px solid var(--st-light-gray);
    border-radius: 8px;
    font-size: 0.95rem;
    transition: var(--st-transition);
    background-color: var(--st-white);
}

.st-enquiry-form .form-control:focus,
.st-enquiry-form .form-select:focus {
    border-color: var(--st-secondary);
    box-shadow: 0 0 0 3px rgba(8, 127, 140, 0.12);
    outline: none;
}

.st-enquiry-form .form-control::placeholder {
    color: var(--st-muted);
    opacity: 0.7;
}

/* ===========================
   FOOTER
   =========================== */
.st-footer {
    padding: 4rem 0 0;
    background-color: var(--st-primary);
    color: rgba(255, 255, 255, 0.8);
}

.st-footer__brand {
    margin-bottom: 1.5rem;
}

.st-footer__logo {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 1rem;
}

.st-footer__desc {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.6);
    margin-bottom: 1.5rem;
}

.st-footer__social {
    display: flex;
    gap: 0.75rem;
}

.st-footer__social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255,255,255,0.08);
    border-radius: 8px;
    color: rgba(255,255,255,0.7);
    font-size: 1rem;
    transition: var(--st-transition);
}

.st-footer__social a:hover {
    background-color: var(--st-secondary);
    color: var(--st-white);
    transform: translateY(-2px);
}

.st-footer__heading {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--st-white);
    margin-bottom: 1.25rem;
    letter-spacing: -0.01em;
}

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

.st-footer__links li {
    margin-bottom: 0.65rem;
}

.st-footer__links a {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    transition: var(--st-transition);
}

.st-footer__links a:hover {
    color: var(--st-accent);
    padding-left: 4px;
}

.st-footer__contact {
    margin-bottom: 1rem;
}

.st-footer__contact-item {
    margin-bottom: 0.75rem;
}

.st-footer__contact-item strong {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--st-white);
    margin-bottom: 0.15rem;
}

.st-footer__contact-item a {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
}

.st-footer__contact-item a:hover {
    color: var(--st-accent);
}

.st-footer .st-btn-primary {
    padding: 0.65rem 1.25rem;
    font-size: 0.85rem;
}

.st-footer__bottom {
    margin-top: 3rem;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.st-footer__bottom p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    margin: 0;
}

/* ===========================
   MOBILE BOTTOM BAR
   =========================== */
.st-mobile-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1040;
    display: flex;
    background-color: var(--st-white);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    border-top: 1px solid var(--st-light-gray);
}

.st-mobile-bar a {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem;
    font-size: 0.9rem;
    font-weight: 700;
    transition: var(--st-transition);
}

.st-mobile-bar__call {
    background-color: var(--st-primary);
    color: var(--st-white);
}

.st-mobile-bar__call:hover {
    background-color: #162d44;
    color: var(--st-white);
}

.st-mobile-bar__whatsapp {
    background-color: #25D366;
    color: var(--st-white);
}

.st-mobile-bar__whatsapp:hover {
    background-color: #1fb855;
    color: var(--st-white);
}

/* ===========================
   FLOATING BUTTONS (Desktop)
   =========================== */
.st-floating-buttons {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1030;
    flex-direction: column;
    gap: 0.75rem;
}

.st-floating-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    font-size: 1.4rem;
    color: var(--st-white);
    transition: var(--st-transition);
    box-shadow: var(--st-shadow-lg);
}

.st-floating-btn:hover {
    transform: scale(1.1);
    box-shadow: var(--st-shadow-xl);
    color: var(--st-white);
}

.st-floating-btn--call {
    background-color: var(--st-primary);
}

.st-floating-btn--call:hover {
    background-color: #162d44;
}

.st-floating-btn--whatsapp {
    background-color: #25D366;
}

.st-floating-btn--whatsapp:hover {
    background-color: #1fb855;
}

/* ===========================
   ANIMATIONS
   =========================== */
.st-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.st-animate.st-animate--visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===========================
   RESPONSIVE ADJUSTMENTS
   =========================== */
@media (max-width: 991.98px) {
    .st-services,
    .st-about,
    .st-why,
    .st-facilities,
    .st-contact {
        padding: 4rem 0;
    }
    
    .st-cta {
        padding: 5rem 0;
    }
}

@media (max-width: 575.98px) {
    .st-services,
    .st-about,
    .st-why,
    .st-facilities,
    .st-contact {
        padding: 3rem 0;
    }
    
    .st-cta {
        padding: 4rem 0;
    }
    
    .st-enquiry-form {
        padding: 1.5rem;
    }
    
    .st-contact__info {
        padding: 1.5rem;
    }
    
    body {
        padding-bottom: 60px;
    }
}

/* Print Styles */
@media print {
    .st-navbar,
    .st-mobile-bar,
    .st-floating-buttons,
    .st-hero__pagination {
        display: none !important;
    }
    
    .st-hero {
        height: auto;
        min-height: auto;
    }
    
    .st-hero__overlay {
        background: rgba(11, 31, 51, 0.3);
    }
}