/* Global Styles */
:root {
    --primary-color: #f69e51;
    --primary-color-hover: #fce4cf;
    --secondary-color: #333333;
    --text-color: #666666;
    --white: #ffffff;
    --light-yellow: rgba(255, 217, 61, 0.1);
    --light-blue: #fce4cf;
    --light-orange: #FFF6F0;
    --blue: #f69e51;
    --bg-primary: #FFFFFF;
    --bg-secondary: #F6F7F9;
    --text-primary: #1A1A1A;
    --text-secondary: #666666;
    --border-color: #E5E7EB;
    --card-bg: #FFFFFF;
    --accent-color: #f69e51;
    --accent-hover: #f69e51;
    --shadow-color: rgba(0, 0, 0, 0.20);
    --toggle-bg: #F6F7F9;
    --toggle-border: #E5E7EB;
    --experience-card-hover: rgba(0, 163, 255, 0.1);
    --experience-icon-bg: rgba(0, 163, 255, 0.1);
    --body-font: 'Glacial Indifference', sans-serif;
    --title-font: 'Schoolbell', cursive;
    --dark-yellow: #f69e51;
    --dark-yellow-hover: #f69e51;
}

[data-theme="dark"] {
    --bg-primary: #121212;
    --bg-secondary: #1E1E1E;
    --text-primary: #FFFFFF;
    --text-secondary: #A1A1AA;
    --border-color: #2A2A2A;
    --card-bg: #1E1E1E;
    --accent-color: #f69e51;
    --accent-hover: #f69e51;
    --shadow-color: rgba(0, 0, 0, 0.3);
    --toggle-bg: #1E1E1E;
    --toggle-border: #2A2A2A;
    --experience-card-hover: rgba(0, 163, 255, 0.15);
    --experience-icon-bg: rgba(0, 163, 255, 0.15);
    --dark-bg: #121212;
    --dark-card-bg: #1E1E1E;
    --light-orange: #39362e;
}

@font-face {
    font-family: 'Comic Handwriting';
    src: url('assets/fonts/comic-handwriting.woff2') format('woff2');
}

body {
    font-family: var(--body-font);
    background-color: var(--bg-primary);
}

/* Title styles - using Schoolbell font */
.hero-title,
.packages-title,
.different-title,
.zones-content h4,
.package-name,
.reviews-title,
.contact-title {
    font-family: var(--title-font);
}

/* Update specific text elements to use Glacial Indifference */
.hero-description,
.different-description,
.zones-content p,
.package-subtitle,
.package-features li,
.footer-description,
.footer-column ul a,
.copyright,
.navbar-nav .nav-link,
.packages-description,
.contact-packages,
.review-text,
.reviewer-name,
.form-label,
.form-input {
    font-family: var(--body-font);
}

/* Navbar Styles */
.navbar {
    backdrop-filter: blur(12px);
}

.highlight {
    color: var(--accent-color);
}

/* Navigation Links */
.navbar-nav .nav-link {
    color: var(--text-primary) !important;
}

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

/* Mobile Toggle Button */
.navbar-toggler {
    padding: 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
    border-color: var(--accent-color) !important;
}

.navbar-toggler-icon {
    background-image: none !important;
    position: relative;
    width: 24px;
    height: 2px;
    background-color: var(--text-primary);
    transition: background-color 0.3s ease;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background-color: var(--text-primary);
    transition: all 0.3s ease;
    left: 0;
}

.navbar-toggler-icon::before {
    top: -6px;
}

.navbar-toggler-icon::after {
    bottom: -6px;
}

/* Dropdown Menu */
.dropdown-menu {
    background-color: var(--bg-primary);
    border-color: var(--border-color);
    box-shadow: 0 4px 12px var(--shadow-color);
}

.dropdown-item {
    color: var(--text-primary);
}

.dropdown-item:hover,
.dropdown-item:focus {
    background-color: var(--bg-secondary);
    color: var(--accent-color);
}

/* Scrolled State */
.navbar.scrolled {
    background-color: var(--bg-primary);
    box-shadow: 0 5px 20px var(--shadow-color);
    padding: 15px 0;
}

/* Dark Mode Specific Overrides */
[data-theme="dark"] .navbar {
    background-color: var(--bg-primary) !important;
}

[data-theme="dark"] .navbar-brand,
[data-theme="dark"] .navbar-nav .nav-link {
    color: var(--text-primary) !important;
}

[data-theme="dark"] .navbar-toggler-icon,
[data-theme="dark"] .navbar-toggler-icon::before,
[data-theme="dark"] .navbar-toggler-icon::after {
    background-color: var(--text-primary);
}

/* Collapse Menu Background */
.navbar-collapse {
    background-color: var(--bg-primary);
}

@media (max-width: 991px) {
    .navbar-collapse {
        padding: 1rem;
        border-radius: 8px;
        margin-top: 1rem;
        border: 1px solid var(--border-color);
    }

    .hv-100 {
        height: auto;
    }
}

.mode-switch {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-warning {
    background-color: var(--primary-color);
    border: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-warning:hover {
    background-color: #ffc107;
    transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
    background-color: var(--bg-primary);
}

.hero-title {
    font-size: 48px;
    line-height: 1.2;
}

.hero-description {
    font-size: 18px;
    color: var(--text-secondary);
}

.btn-learn {
    background-color: transparent;
    color: var(--primary-color);
    padding: 14px 30px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid var(--primary-color);
}

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

.number-indicators span {
    border: 2px solid var(--primary-color);
}

/* Status Cards */

.status-card {
    backdrop-filter: blur(12px);
    box-shadow: 0 8px 30px var(--shadow-color);
}

.status-card:hover {
    transform: translateY(-4px);
}

.status-dot {
    width: 8px;
    height: 8px;
    background-color: #4CAF50;
}

.status-label {
    color: var(--text-primary);
}

.status-time {
    font-size: 14px;
}

.status-toys {
    background-color: rgba(255, 217, 61, 0.05);
}

.status-toys .status-content {
    color: var(--text-color);
}

.slots-label {
    font-size: 14px;
}

.slots-subtitle {
    font-size: 12px;
}

/* About Section */
.about-section {
    padding: 100px 0 80px;
    background-color: var(--bg-primary);
}

.about-tag {
    font-size: 12px;
    background-color: var(--light-blue);
}

.text-primary {
    color: var(--blue) !important;
}

/* What Makes Us Different */

.different-title {
    font-size: 2.5rem;
}

.diff-title {
    font-family: 'Schoolbell', cursive;
    font-size: 18px;
}

.diff-icon {
    background-color: var(--light-blue);
}

.diff-desc {
    font-family: 'Glacial Indifference', Arial, sans-serif;
    font-size: 14px;
}

.different-features li>.diff-title {
    margin-left: 2px;
}

.different-features li>.diff-desc {
    margin-left: 0;
}

.zones-overlay {
    background-color: var(--light-orange);
}

.zones-content h4 {
    font-size: 24px;
    font-weight: 700;
    color: #f69e51;
    margin-bottom: 8px;
    line-height: 1.3;
}

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

/* Logo theme switching */
.logo-dark {
    display: inline;
}

.logo-light {
    display: none;
}

[data-theme="dark"] .logo-dark {
    display: none !important;
}

[data-theme="dark"] .logo-light {
    display: inline !important;
}


/* Little Speedsters Section */
.little-speedsters-section {
    padding: 80px 0;
}

.ls-gradient-text,
.ls-desc-highlight,
.ls-highlight-main.ls-gradient-text,
.ls-card-header {
    background: linear-gradient(90deg, #dc2626 0%, #f97316 70%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    font-family: var(--title-font);
    font-size: 42px;
    font-weight: 700;
    display: inline-block;
}

.ls-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.ls-header-icon {
    height: 2.2rem;
    filter: invert(60%) sepia(80%) saturate(2000%) hue-rotate(10deg);
}

.ls-subtitle {
    font-family: var(--title-font);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.ls-highlight-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.ls-highlight-main {
    font-size: 1.7rem;
    font-weight: 700;
    color: #ff8800;
}

.ls-highlight-secondary {
    font-size: 1.7rem;
    font-weight: 700;
}

.ls-desc {
    max-width: 700px;
    margin: 0 auto 2rem auto;
    font-size: 1.1rem;
}

.ls-desc .ls-desc-highlight {
    font-size: 1.1rem;
    font-weight: 600;
}

@keyframes ls-btn-blink {

    0%,
    100% {
        background: linear-gradient(90deg, #dc2626, #f97316);
    }

    25% {
        background: linear-gradient(90deg, #f97316, #ffd700);
    }

    50% {
        background: linear-gradient(90deg, #ffd700, #dc2626);
    }

    75% {
        background: linear-gradient(90deg, #f97316, #dc2626);
    }
}

.ls-btn-gradient {
    display: inline-block;
    background: linear-gradient(90deg, #dc2626, #f97316);
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 0.7em 2.2em;
    border-radius: 2em;
    border: none;
    transition: filter 0.2s;
    text-decoration: none;
    animation: ls-btn-blink 1.2s infinite alternate;
    box-shadow: none;
}

.ls-btn-gradient:hover {
    filter: brightness(1.1);
    color: #fff;
}

@media only screen and (max-width: 600px) {
    .ls-btn-gradient {
        font-size: 1rem;
        padding: 0.6em 1.2em;
    }
}

.ls-card-row {
    display: flex;
    justify-content: center;
    margin-top: 0;
}

.ls-card {
    background: #FFF5EA;
    border-radius: 20px;
    max-width: 70%;
    width: 100%;
    border: 1px solid #ddd;
    box-shadow: 0 2px 16px #00000000;
    padding: 2rem 1.5rem 2.5rem 1.5rem;
    text-align: center;
}

.ls-card-header {
    font-size: 2rem;
}

.ls-card-header-icon {
    height: 1.7rem;
    filter: invert(60%) sepia(80%) saturate(2000%) hue-rotate(10deg);
}

.ls-card-price {
    font-size: 2.2rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 0.2rem;
}

.ls-card-price span {
    font-size: 1rem;
    font-weight: 400;
}

.ls-card-age {
    font-size: 1.2rem;
    color: #ff8800;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.ls-card-age span {
    font-size: 0.9rem;
    font-weight: 400;
}

.ls-card-desc {
    margin-bottom: 1.2rem;
    font-size: 1rem;
}

.ls-header-car-icon {
    height: 2.2rem;
    margin-right: 0.3rem;
    vertical-align: middle;
}

@media only screen and (max-width: 600px) {
    .ls-header-car-icon {
        height: 1.4rem;
    }

    .ls-gradient-text {
        font-size: 2rem;
    }
}

.ls-highlight-flag-icon {
    height: 1.6em;
    margin-right: 0.3em;
    vertical-align: middle;
}

.ls-highlight-bold {
    font-family: var(--body-font);
    font-weight: 700;
    font-size: 1.7rem;
}

.ls-highlight-main.ls-gradient-text {
    font-family: var(--body-font);
    font-weight: 700;
    font-size: 1.7rem;
    margin-right: 0.2em;
}

@media only screen and (max-width: 600px) {
    .ls-highlight-flag-icon {
        height: 1.1em;
    }

    .ls-highlight-main.ls-gradient-text,
    .ls-highlight-bold {
        font-size: 1.1rem;
    }
}

.ls-subtitle-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
    margin: 1.2rem 0 2.2rem 0;
}

.ls-divider-line {
    display: inline-block;
    height: 4px;
    width: 60px;
    border-radius: 2px;
}

.ls-divider-line-left {
    background: linear-gradient(90deg, #ff4747 0%, #ffb347 100%);
}

.ls-divider-line-right {
    background: linear-gradient(90deg, #ff4747 0%, #ffb347 100%);
}

.ls-divider-circle {
    display: inline-block;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: radial-gradient(circle at 60% 40%, #ffb347 60%, #ff4747 100%);
    box-shadow: 0 0 8px 2px #ff880088;
    border: 2px solid #222;
}

@media only screen and (max-width: 600px) {
    .ls-subtitle-divider {
        gap: 0.5rem;
        margin: 0.7rem 0 1.2rem 0;
    }

    .ls-divider-line {
        width: 28px;
        height: 3px;
    }

    .ls-divider-circle {
        width: 18px;
        height: 18px;
    }
}

.ls-card-info-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.2rem;
    margin: 1.2rem 0 1.5rem 0;
}

.ls-card-info-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    min-width: 120px;
}

.ls-card-info-price {
    align-items: flex-end;
}

.ls-card-info-age {
    align-items: flex-start;
}

.ls-card-info-divider {
    width: 1px;
    height: 48px;
    background: rgb(183 183 183);
    margin: 0 1.2rem;
}

.ls-card-price-main {
    font-size: 2.3rem;
    font-weight: 700;
    background: linear-gradient(90deg, #ff8800 0%, #ffb347 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    line-height: 33px;
}

.ls-card-price-sub,
.ls-card-age-sub {
    font-family: var(--body-font);
}

.ls-card-age-main {
    font-family: var(--body-font);
    font-size: 1.3rem;
    font-weight: 700;
    background: linear-gradient(90deg, #dc2626 0%, #f97316 70%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    margin-bottom: 0.1em;
}

@media only screen and (max-width: 600px) {
    .ls-card-info-row {
        flex-direction: column;
        gap: 0.7rem;
        margin: 0.7rem 0 1rem 0;
    }

    .ls-card-info-divider {
        width: 60%;
        height: 1px;
        margin: 0.7rem 0;
        background: rgba(255, 255, 255, 0.12);
    }

    .ls-card-info-col {
        min-width: 0;
        align-items: center;
    }

    .ls-card-price-main {
        font-size: 1.4rem;
    }

    .ls-card-age-main {
        font-size: 1rem;
    }

    .ls-card-price-sub,
    .ls-card-age-sub {
        font-size: 0.95rem;
    }
}


/* Packages Section */
#packages {
    padding: 100px 0 80px;
    text-align: center;
}

.packages-label,
.booking-tag {
    display: inline-block;
    background-color: #FFE8D9;
    color: #000;
    padding: 8px 24px;
    border-radius: 100px;
    font-size: 12px;
    margin-bottom: 16px;
}

.packages-title {
    font-size: 42px;
    margin-bottom: 16px;
    font-weight: 700;
}

.packages-title span {
    color: #f69e51;
}

.packages-description {
    max-width: 800px;
    margin: 0 auto 48px;
    font-size: 17px;
    line-height: 1.6;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.package-card {
    padding: 32px;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: left;
    position: relative;
}

.package-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.package-card.popular {
    border: 2px solid #f69e51;
    background: #FFF5EA;
}

.most-popular-badge {
    position: absolute;
    top: -16px;
    right: 24px;
    background: #f69e51;
    color: white;
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
}

.package-name {
    font-size: 28px;
    margin-bottom: 8px;
    font-weight: 600;
}

.package-subtitle {
    font-size: 15px;
    margin-bottom: 24px;
}

.package-price {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 4px;
}

.package-price span {
    font-size: 16px;
    font-weight: normal;
}

.package-total {
    font-size: 14px;
    margin-bottom: 24px;
}

.package-features {
    margin: 24px 0;
    list-style: none;
    padding: 0;
}

.package-features li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 12px;
    font-size: 16px;
}

.package-features li svg {
    flex-shrink: 0;
    margin-top: 4px;
}

.package-upgrade {
    color: #f69e51;
    font-size: 15px;
    margin: 24px 0;
    text-align: center;
}

.select-package {
    display: block;
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.purple-ribbon {
    top: 28px;
    right: -36px;
    width: 160px;
    background: linear-gradient(34deg, #a259e6 70%, #7c3aed 100%);
    color: #fff;
    font-weight: bold;
    text-align: center;
    padding: 6px 0;
    transform: rotate(45deg);
    box-shadow: 0 2px 8px rgba(124, 58, 237, 0.15);
    z-index: 10;
    font-size: 14px;
    letter-spacing: 1px;
    pointer-events: none;
}

.package-card:not(.popular) .select-package {
    background: transparent;
    border: 2px solid #f69e51;
    color: #f69e51;
}

.package-card.popular .select-package {
    background: #f69e51;
    border: none;
    color: white;
}

.package-card:not(.popular) .select-package:hover {
    background: #f69e51;
    color: white;
}

.packages-footer {
    margin-top: 48px;
    text-align: center;
}

/* .packages-footer p {
    animation: multicolor-blink 0.5s linear infinite;
} */

/* Multi-color blink animation */
@keyframes multicolor-blink {
    0% {
        color: #f69e51;
    }

    20% {
        color: #4CAF50;
    }

    40% {
        color: #4285F4;
    }

    60% {
        color: #EA4335;
    }

    80% {
        color: #FBBC05;
    }

    100% {
        color: #f69e51;
    }
}

.contact-packages {
    display: inline-block;
    padding: 12px 24px;
    border: 2px solid #f69e51;
    border-radius: 8px;
    color: #f69e51;
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact-packages:hover {
    background: #f69e51;
    color: white;
}

/* Customer Reviews Section */
#reviews {
    background-color: var(--light-orange);
    padding: 100px 0 80px;
    text-align: center;
    position: relative;
}

.reviews-label {
    display: inline-block;
    background-color: #FFE8D9;
    color: #000;
    padding: 8px 24px;
    border-radius: 100px;
    font-size: 12px;
    margin-bottom: 16px;
}

.reviews-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 16px;
}

.reviews-title span {
    color: #f69e51;
}

.reviews-description {
    max-width: 800px;
    margin: 0 auto 48px;
    color: #333;
    font-size: 17px;
    line-height: 1.6;
}

.reviews-slider {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    overflow: hidden;
}

.reviews-grid {
    display: flex;
    gap: 24px;
    transition: transform 0.5s ease;
}

.review-card {
    flex: 0 0 calc(50% - 12px);
    background: #fff;
    border-radius: 16px;
    padding: 32px;
    text-align: left;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.reviewer-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #FFE8D9;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 600;
    color: #f69e51;
}

.reviewer-info {
    flex: 1;
}

.reviewer-name {
    font-size: 18px;
    font-weight: 600;
    color: #000;
    margin-bottom: 4px;
}

.review-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.review-stars {
    display: flex;
    gap: 2px;
    color: #f69e51;
    margin-right: 4px;
}

.google-icon {
    width: 16px;
    height: 16px;
}

.review-text {
    color: #333;
    font-size: 16px;
    line-height: 1.6;
}

.reviews-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 32px;
}

.nav-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-arrow:hover {
    background: #f69e51;
    border-color: #f69e51;
}

.nav-arrow:hover svg path {
    stroke: #fff;
}

.nav-dots {
    display: flex;
    gap: 8px;
}

.nav-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-dot.active {
    background: #f69e51;
    width: 24px;
    border-radius: 100px;
}

.read-more-reviews {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #f69e51;
    font-weight: 500;
    margin-top: 32px;
    text-decoration: none;
}

.read-more-reviews:hover {
    text-decoration: underline;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background-color: var(--bg-primary);
}

.contact-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.contact-description {
    font-size: 16px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 48px;
    line-height: 1.6;
}

.contact-content {
    display: flex;
    gap: 48px;
    margin-top: 48px;
}

/* Left Side */
.contact-left {
    flex: 1;
    background: var(--card-bg);
    border-radius: 20px;
    box-shadow: 0 4px 24px var(--shadow-color);
    overflow: hidden;
}

.map-container {
    width: 100%;
    height: 300px;
    border-radius: 20px 20px 0 0;
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.contact-info {
    padding: 32px;
}

.contact-info h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 24px;
}

.info-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-item .icon {
    width: 40px;
    height: 40px;
    background-color: #E5F6FF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-item .icon i {
    color: var(--accent-color);
    font-size: 16px;
}

.info-item .info h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 8px;
}

.info-item .info p {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.5;
}

/* Right Side */
.contact-right {
    flex: 1;
    background: var(--card-bg);
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 4px 24px var(--shadow-color);
}

.contact-right h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 24px;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.contact-form input,
.contact-form select,
.contact-form textarea,
.file-input,
.ui[class*="left icon"].input>input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: 8px !important;
    font-size: 14px;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(0, 163, 255, 0.1);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--text-secondary);
}

.contact-form select {
    appearance: none;
    background-image: none;
    position: relative;
}

.contact-form .select-wrapper {
    position: relative;
}

.contact-form .select-wrapper::after {
    content: '\f107';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-secondary);
    pointer-events: none;
}

.contact-form textarea {
    height: 120px;
    resize: vertical;
}

.send-message-btn {
    width: 100%;
    padding: 14px 24px;
    background: var(--accent-color);
    color: var(--bg-secondary);
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.send-message-btn:hover {
    background: var(--accent-hover);
    transform: translateY(-1px);
}

.send-message-btn:active {
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 991px) {
    .contact-content {
        flex-direction: column;
    }

    .contact-left,
    .contact-right {
        width: 100%;
    }

    .packages-grid {
        grid-template-columns: repeat(1, 1fr);
    }

}

/* Footer Section */
.footer {
    background-color: var(--bg-secondary);
    padding: 80px 0 32px;
}

.footer-content {
    display: flex;
    gap: 80px;
}

/* Footer Brand */
.footer-brand {
    flex: 0 0 320px;
}

.footer-logo {
    display: inline-block;
    text-decoration: none;
    margin-bottom: 24px;
}

.footer-logo .logo-text {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
}

.footer-description {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 16px;
}

.social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--card-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: var(--accent-color);
    color: var(--bg-secondary);
    transform: translateY(-5px) rotate(8deg);
}

.social-link i {
    font-size: 16px;
}

/* Footer Links */
.footer-links {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 48px;
}

.footer-column h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 24px;
    font-family: var(--title-font);
}

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

.footer-column ul li {
    margin-bottom: 16px;
}

.footer-column ul li:last-child {
    margin-bottom: 0;
}

.footer-column ul a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-column ul a:hover,
.footer-column ul a.active {
    color: var(--accent-color);
}

/* Footer Bottom */
.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 0;
}

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

.footer-bottom-links a {
    font-size: 14px;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

/* Responsive Design */
@media (max-width: 991px) {
    .footer-content {
        flex-direction: column;
        gap: 48px;
    }

    .footer-brand {
        flex: 0 0 auto;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
}

@media (max-width: 576px) {
    .footer {
        padding: 48px 0 24px;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }

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

/* Theme Toggle Button */

.theme-toggle-input {
    opacity: 0;
    position: absolute;
}

.theme-toggle-label {
    background-color: var(--toggle-bg);
    border: 2px solid var(--toggle-border);
    border-radius: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px;
    position: relative;
    height: 25px;
    width: 50px;
    transform: scale(1.2);
    transition: all 0.3s ease;
}

.theme-toggle-label .fa-sun {
    font-size: 12px;
}

.theme-toggle-label .fa-moon {
    color: #A1A1AA;
    font-size: 12px;
}

.toggle-ball {
    background-color: var(--accent-color);
    border-radius: 50%;
    position: absolute;
    top: 2px;
    left: 2px;
    height: 18px;
    width: 18px;
    transform: translateX(0);
    transition: transform 0.3s ease;
}

.theme-toggle-input:checked+.theme-toggle-label .toggle-ball {
    transform: translateX(24px);
}

/* Smooth transitions */
body * {
    transition: background-color 0.3s ease,
        color 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease,
        transform 0.3s ease,
        opacity 0.3s ease;
}

/* Animation Keyframes */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

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

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

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes shine {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

/* Enhanced Hover Effects */

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--accent-color);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.navbar-nav .nav-link:hover::after {
    transform: translateX(0);
}

.btn {
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg,
            transparent,
            rgba(255, 255, 255, 0.3),
            transparent);
    transition: 0.5s;
}

.btn:hover::before {
    animation: shine 0.75s;
}

/* Card Animations */

.package-card {
    transition: all 0.3s ease;
    background: #FFF5EA;
}

.package-card:hover {
    transform: translateY(-10px) scale(1.02);
}

.review-card {
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px var(--shadow-color);
}

/* Hero Section Animations */


.status-card {
    animation: float 5s ease-in-out infinite;
}

.status-card:nth-child(2) {
    animation-delay: 0.5s;
}

.status-card:nth-child(3) {
    animation-delay: 1s;
}

/* Interactive Elements */
.form-input:focus {
    transform: scale(1.01);
}

.theme-toggle-label {
    transition: all 0.3s ease;
}

.theme-toggle-label:hover {
    transform: scale(1.1);
}

/* Social Links Animation */
.social-link {
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateY(-5px) rotate(8deg);
}

/* Navbar Scroll Effect */
.navbar.scrolled {
    background-color: var(--bg-primary);
    box-shadow: 0 5px 20px var(--shadow-color);
    padding: 15px 0;
}

/* Smooth Transitions */

/* AOS Customizations */
[data-aos] {
    pointer-events: none;
}

[data-aos].aos-animate {
    pointer-events: auto;
}

[data-aos][data-aos][data-aos-duration="400"],
body[data-aos-duration="400"] [data-aos] {
    transition-duration: 400ms;
}

[data-aos][data-aos][data-aos-delay="100"],
body[data-aos-delay="100"] [data-aos] {
    transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="100"].aos-animate,
body[data-aos-delay="100"] [data-aos].aos-animate {
    transition-delay: 100ms;
}

#contact {
    padding: 100px 0 80px;
    text-align: center;
}

.contact-label {
    display: inline-block;
    background-color: #FFE8D9;
    color: #000;
    padding: 8px 24px;
    border-radius: 100px;
    font-size: 12px;
    margin-bottom: 16px;
}

.contact-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 16px;
}

.contact-title span {
    color: #f69e51;
}

.contact-description {
    max-width: 800px;
    margin: 0 auto 48px;
    color: #333;
    font-size: 17px;
    line-height: 1.6;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-form {
    background: #fff;
    border-radius: 16px;
    padding: 32px;
    text-align: left;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.contact-info {
    background: #fff;
    border-radius: 16px;
    padding: 32px;
    text-align: left;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.form-title {
    font-size: 20px;
    font-weight: 600;
    color: #000;
    margin-bottom: 24px;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-size: 15px;
    color: #333;
    margin-bottom: 8px;
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
    color: #333;
    transition: border-color 0.3s ease;
}

.form-input::placeholder {
    color: #999;
}

.form-input:focus {
    outline: none;
    border-color: #f69e51;
}

textarea.form-input {
    height: 120px;
    resize: none;
}

.send-message-btn {
    width: 100%;
    padding: 14px;
    background: #f69e51;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s ease;
}

.send-message-btn:hover {
    background: var(--dark-yellow);
}

.send-message-btn:active {
    transform: translateY(0);
}

.info-title {
    font-size: 20px;
    font-weight: 600;
    color: #000;
    margin-bottom: 24px;
}

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

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
}

.contact-text {
    flex: 1;
}

.contact-text h4 {
    font-size: 16px;
    font-weight: 600;
    color: #000;
    margin: 0 0 4px;
}

.contact-text p {
    font-size: 15px;
    color: #666;
    margin: 0;
}

.contact-text a {
    color: #f69e51;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-text a:hover {
    color: var(--dark-yellow);
}

.view-map-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #f69e51;
    font-size: 15px;
    text-decoration: none;
    margin-top: 16px;
    transition: color 0.3s ease;
}

.view-map-link:hover {
    color: var(--dark-yellow);
}

.view-map-link svg {
    width: 16px;
    height: 16px;
}

.white-bg-le {
    background: #ffffffa1;
}

.country-select .dial-code {
    padding: 10px 0 0 28px;
}

/* Dark Mode Styles */
[data-theme="dark"] #contact {
    background-color: var(--dark-bg);
}

[data-theme="dark"] .white-bg-le {
    background: #ffffff2e;
}

[data-theme="dark"] .contact-label {
    background-color: rgba(255, 215, 0, 0.1);
    color: var(--dark-yellow);
}

[data-theme="dark"] .packages-footer p {
    color: #f69e51;
}

[data-theme="dark"] .contact-title {
    color: #fff;
}

[data-theme="dark"] .contact-title span {
    color: var(--dark-yellow);
}

[data-theme="dark"] .contact-description {
    color: #ccc;
}

[data-theme="dark"] .contact-form,
[data-theme="dark"] .contact-info {
    background: var(--dark-card-bg);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

[data-theme="dark"] .form-title,
[data-theme="dark"] .info-title {
    color: #fff;
}

[data-theme="dark"] .form-label {
    color: #ccc;
}

[data-theme="dark"] .form-input {
    background-color: var(--dark-bg);
    border-color: #444;
    color: #fff;
}

[data-theme="dark"] .form-input::placeholder {
    color: #666;
}

[data-theme="dark"] .form-input:focus {
    border-color: var(--dark-yellow);
}

[data-theme="dark"] .send-message-btn {
    background: var(--dark-yellow);
    color: #000;
}

[data-theme="dark"] .send-message-btn:hover {
    background: var(--dark-yellow-hover);
}

[data-theme="dark"] .contact-text h4 {
    color: #fff;
}

[data-theme="dark"] .contact-text p {
    color: #ccc;
}

[data-theme="dark"] .contact-text a,
[data-theme="dark"] .view-map-link {
    color: var(--dark-yellow);
}

[data-theme="dark"] .contact-text a:hover,
[data-theme="dark"] .view-map-link:hover {
    color: var(--dark-yellow-hover);
}

[data-theme="dark"] .contact-icon svg path {
    stroke: var(--dark-yellow);
}

[data-theme="dark"] .view-map-link svg path {
    stroke: var(--dark-yellow);
}

/* Dark Mode Global Styles */
[data-theme="dark"] body {
    background-color: var(--dark-bg);
    color: #fff;
}

[data-theme="dark"] .number-indicators span {
    color: #fff;
}

[data-theme="dark"] .navbar {
    background-color: rgba(18, 18, 18, 0.9);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

[data-theme="dark"] .nav-link {
    color: #fff !important;
}

[data-theme="dark"] .nav-link:hover,
[data-theme="dark"] .nav-link.active {
    color: var(--dark-yellow) !important;
}

/* Hero Section Dark Mode */

[data-theme="dark"] .country-select .country-list,
[data-theme="dark"] .country-select .country-list .divider {
    background-color: var(--dark-bg);
    border: 1px solid #333;
}

[data-theme="dark"] .hero-title {
    color: #fff;
}

[data-theme="dark"] .hero-description {
    color: #ccc;
}

[data-theme="dark"] .cta-button {
    background: var(--dark-yellow);
    color: #000;
}

[data-theme="dark"] .cta-button:hover {
    background: var(--dark-yellow-hover);
}

/* About Section Dark Mode */

[data-theme="dark"] .status-slots {
    background-color: #2d2c2a !important;
}

[data-theme="dark"] .status-card {
    box-shadow: 0 0px 10px var(--dark-yellow-hover);
}

[data-theme="dark"] .stat-label {
    color: #fff;
}

/* Packages Section Dark Mode */

[data-theme="dark"] .package-card {
    background: var(--dark-card-bg);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

[data-theme="dark"] .ls-card,
[data-theme="dark"] .mission-block,
[data-theme="dark"] .contact-block {
    background: rgba(40, 0, 0, 0.7);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    border: 1px solid #444;
}

[data-theme="dark"] .package-card.popular {
    border: 2px solid var(--dark-yellow);
}

[data-theme="dark"] .package-price {
    color: var(--dark-yellow);
}

[data-theme="dark"] .package-features li {
    color: #ccc;
}

[data-theme="dark"] .package-features li::before {
    color: var(--dark-yellow);
}

[data-theme="dark"] .package-button {
    background: var(--dark-yellow);
    color: #000;
}

[data-theme="dark"] .package-button:hover {
    background: var(--dark-yellow-hover);
}

/* Reviews Section Dark Mode */

[data-theme="dark"] .reviews-label {
    background-color: rgba(246, 158, 81, 0.1);
    color: var(--dark-yellow);
}

[data-theme="dark"] .reviews-title {
    color: #fff;
}

[data-theme="dark"] .reviews-title span {
    color: var(--dark-yellow);
}

[data-theme="dark"] .reviews-description {
    color: #ccc;
}

[data-theme="dark"] .review-card {
    background: var(--dark-card-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

[data-theme="dark"] .review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    border-color: var(--dark-yellow);
}

[data-theme="dark"] .reviewer-info {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .reviewer-avatar {
    background: rgba(246, 158, 81, 0.1);
    color: var(--dark-yellow);
    border: 2px solid var(--dark-yellow);
}

[data-theme="dark"] .reviewer-name {
    color: #fff;
}

[data-theme="dark"] .review-text {
    color: #ccc;
}

[data-theme="dark"] .review-dots {
    gap: 8px;
}

[data-theme="dark"] .review-dot {
    background: #444;
    border: none;
}

[data-theme="dark"] .review-dot.active {
    background: var(--dark-yellow);
}

[data-theme="dark"] .review-slide {
    background: transparent;
}

/* Footer Dark Mode */
[data-theme="dark"] footer {
    border-top: 1px solid #333;
}

[data-theme="dark"] .footer-links a {
    color: #ccc;
}

[data-theme="dark"] .footer-links a:hover {
    color: var(--dark-yellow);
}

[data-theme="dark"] .social-links a {
    color: var(--dark-yellow);
    border-color: var(--dark-yellow);
}

[data-theme="dark"] .social-links a:hover {
    background: var(--dark-yellow);
    color: #000;
}

/* Animations in Dark Mode */
[data-theme="dark"] .fade-up,
[data-theme="dark"] .fade-down,
[data-theme="dark"] .fade-left,
[data-theme="dark"] .fade-right {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

[data-theme="dark"] .fade-up.active,
[data-theme="dark"] .fade-down.active,
[data-theme="dark"] .fade-left.active,
[data-theme="dark"] .fade-right.active {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 992px) {
    body{
        padding-top: 60px;
    }
}
@media (max-width: 767px) {
    .contact-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .footer-bottom {
        flex-wrap: wrap;
    }

    .review-card {
        flex: 0 0 calc(100% - 12px);
    }
}

@media (max-width: 575px) {

    .booking-flow,
    .calendar-container {
        width: 100%
    }
}

.mission-contact-blocks {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2.5rem 0;
}

.mission-block,
.contact-block {
    background: #FFF8E6;
    border-radius: 24px;
    padding: 2.2rem 2.5rem 1.5rem 2.5rem;
    box-shadow: none;
}

.mission-title,
.contact-title {
    font-family: var(--title-font);
}

.mission-vision,
.mission-values {
    font-family: var(--body-font);
    font-size: 1.15rem;
    font-weight: 700;
    color: #d18a1d;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.mission-icon {
    font-size: 1.3em;
    margin-right: 0.3em;
}

.mission-vision-highlight {
    color: #d18a1d;
    font-weight: 700;
}

.mission-values-highlight {
    color: #e86a2e;
    font-weight: 700;
}

.mission-rooted {
    font-family: var(--body-font);
    font-size: 1.1rem;
    margin-top: 1.2rem;
    font-style: italic;
}

.contact-row {
    display: flex;
    justify-content: center;
    gap: 0.7rem;
    font-size: 1.1rem;
    margin-bottom: 0.7rem;
}

.contact-icon {
    font-size: 1.3em;
    color: #e86a2e;
}

.contact-phone {
    color: #e86a2e;
    font-weight: 500;
    font-family: var(--body-font);
}

.contact-email {
    color: #d18a1d;
    font-weight: 500;
    font-family: var(--body-font);
}

.contact-address {
    font-family: var(--body-font);
    font-size: 1.05rem;
    margin-top: 0.2rem;
    text-align: center;
}

@media (max-width: 767px) {

    .mission-block,
    .contact-block {
        padding: 1.2rem 0.7rem 1.2rem 0.7rem;
        max-width: 99%;
    }

    .mission-title,
    .contact-title {
        font-size: 1.3rem;
    }

    .mission-vision,
    .mission-values {
        font-size: 1rem;
    }

    .contact-row {
        font-size: 1rem;
    }

    .contact-address {
        font-size: 0.98rem;
    }
}

.what-why-block {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: 3.5rem;
    margin: 2.5rem 0 1.5rem 0;
}

.what-why-col {
    flex: 1 1 0;
    min-width: 240px;
    max-width: 400px;
    text-align: left;
}

.what-why-title {
    display: flex;
    align-items: center;
    font-size: 1.3rem;
    font-family: var(--title-font);
    font-weight: 700;
    margin-bottom: 0.7rem;
}

.what-why-icon {
    font-size: 1.5em;
    margin-right: 0.4em;
    color: #e86a2e;
}

.what-why-heading {
    font-family: var(--title-font);
    font-weight: 700;
}

.what-why-list {
    list-style: disc inside;
    padding-left: 0.5em;
    margin: 0;
    font-family: var(--body-font);
    font-size: 1.08rem;
}

.what-why-list li {
    margin-bottom: 0.4em;
}

.mission-block-gradient {
    background: linear-gradient(250deg, #fff8e6 60%, #fff1f5 100%);
}

@media (max-width: 900px) {
    .what-why-block {
        flex-direction: column;
        gap: 1.5rem;
        align-items: stretch;
    }

    .what-why-col {
        max-width: 100%;
        min-width: 0;
        text-align: left;
    }
}

.why-work-box {
    margin: 2.5rem 0 1.5rem 0;
    text-align: center;
}

.why-work-grid {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 2.5rem;
}

.why-work-col {
    flex: 1 1 0;
    min-width: 200px;
    max-width: 300px;
    text-align: center;
}

.why-work-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.why-work-heading {
    font-family: var(--title-font);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    display: inline-block;
}

.why-work-gradient {
    background: linear-gradient(90deg, #d18a1d 0%, #e86a2e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.why-work-desc {
    font-family: var(--body-font);
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

.What-Included {
    background: #faf5ff;
}

.ui[class*="left icon"].input>input {
    padding: 12px 15px !important;
}

.ui.input {
    width: 100%;
}

@media (max-width: 900px) {
    .why-work-grid {
        flex-direction: column;
        gap: 1.2rem;
        align-items: center;
    }

    .why-work-col {
        max-width: 100%;
        min-width: 0;
    }
}

@media (max-width: 430px) {
    .top-20.navbar-toggler {
        top: 7px;
    }

    #packages,
    #reviews,
    #contact {
        padding: 20px 0;
    }

    .footer-content {
        gap: 20px;
    }

    .footer-links {
        gap: 0;
    }
}