:root {
    --primary-color: #6F4E37;
    --secondary-color: #E0D8C8;
    --hero-text-color: hsl(0, 21%, 74%);
    --text-dark: #4A3728;
    --text-light: #F8F4ED;
    --accent-color: #B58463;
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --border-radius: 12px;
}

body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    background-color: var(--text-light);
    color: var(--text-dark);
    line-height: 1.6;
    scroll-behavior: smooth;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Header & Navigation --- */
header {
    background-color: var(--text-light);
    box-shadow: var(--box-shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 10px 0;
    transition: background-color 0.3s ease;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

.logo-text {
    color: var(--primary-color);
    padding: 5px 10px;
    background-color: var(--secondary-color);
    border-radius: var(--border-radius);
    margin-left: 10px;
}

.nav-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    padding: 8px 12px;
    transition: color 0.3s ease, background-color 0.3s ease, border-radius 0.3s ease, transform 0.25s ease, box-shadow 0.25s ease;
    border-radius: var(--border-radius);
    display: inline-block;
}


.nav-links a:hover,
.nav-links a.active {
    color: var(--text-light);
    background-color: var(--primary-color);
    border-radius: var(--border-radius);

    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
}

.book-now-btn {
    background-color: var(--primary-color);
    color: var(--text-light) !important;
    padding: 10px 20px !important;
    border-radius: 50px !important;
    box-shadow: var(--box-shadow);
    font-weight: 600 !important;
    transition: color 0.3s ease, background-color 0.3s ease, border-radius 0.3s ease, transform 0.2s ease, box-shadow 0.2s ease;
    display: inline-block;
}

.book-now-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
}

/* Mobile Menu */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.menu-toggle .bar {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    border-radius: 5px;
    transition: all 0.3s ease;
}

/* --- Sections & Content --- */
.section {
    padding: 80px 0;
}

.content-section {
    background-color: var(--secondary-color);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    margin-top: 40px;
    text-align: center;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 700;
}

/* Hero Section */
 .hero {
    text-align: center;
    padding: 100px 0 50px 0;
    background-color: var(--primary-color);
    color: var(--text-light);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    margin-bottom: 0; 
}

.hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 30px;
    opacity: 0;
    animation: slideInFromRight 0.8s ease-out forwards;
    color: var(--hero-text-color);
}

.hero-btn {
    display: inline-block;
    background-color: var(--text-light);
    color: var(--primary-color);
    padding: 15px 30px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    opacity: 0;
    animation: slideInFromRight 0.8s ease-out forwards;
}

.hero-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 69, 0, 0.6),
        0 0 20px rgba(255, 69, 0, 0.4);
}

@keyframes slideInFromLeft {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInFromRight {
    0% {
        transform: translateX(100%);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: scale(0.9);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.hero-visual {
    opacity: 0;
    animation: slideInFromLeft 0.8s ease-out forwards;
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: nowrap;
}

.hero-visual img {
    width: 200px;
    height: 180px;
    object-fit: cover;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.hero-visual img:hover {
    transform: scale(1.05);
}

/* Responsive: Stack images on smaller screens */
@media (max-width: 768px) {
    .hero-visual {
        flex-direction: column;
    }

    .hero-visual img {
        width: 90%;
        max-width: 300px;
    }
}

/* Fade in animation for stats container */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Number counting animation */
@keyframes countUp {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Continuous pulse for numbers */
@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

/* Stats container fade in */
.stats-container {
    opacity: 0;
    animation: fadeInUp 1s ease-out forwards;
}

/* Title slides in */
.stats-title {
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.3s forwards;
}

/* Each stat item animates in with delay */
.stat-item {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.stat-item:nth-child(1) {
    animation-delay: 0.5s;
}

.stat-item:nth-child(2) {
    animation-delay: 0.7s;
}

.stat-item:nth-child(3) {
    animation-delay: 0.9s;
}

/* Numbers have special animation */
.stat-number {
    animation: countUp 0.8s ease-out forwards;
    display: inline-block;
}

.stat-item:nth-child(1) .stat-number {
    animation-delay: 0.5s;
}

.stat-item:nth-child(2) .stat-number {
    animation-delay: 0.7s;
}

.stat-item:nth-child(3) .stat-number {
    animation-delay: 0.9s;
}

/* Hover effect for stat items */
.stat-item {
    transition: transform 0.3s ease;
    cursor: pointer;
}

.stat-item:hover {
    transform: translateY(-10px);
}

.stat-item:hover .stat-number {
    animation: pulse 1s infinite;
}

/* About Section Animations */
@keyframes slideInLeft {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    0% {
        opacity: 0;
        transform: translateX(50px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInScale {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* About Section Styling */
.about-title {
    animation: slideInLeft 0.8s ease-out;
    color: #6F4E37;
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
}

.about-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #FF4500, #FFD700);
    border-radius: 2px;
}

.about-intro {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin: 2rem 0;
    animation: fadeInScale 1s ease-out 0.3s both;
}

.about-highlight {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #333;
}

.highlight-text {
    color: #FF4500;
    font-weight: 700;
    background: linear-gradient(120deg, #FFD700 0%, #FF4500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mission-box {
    background: linear-gradient(135deg, #FF4500 0%, #FF6347 25%, #FFD700 50%, #FF6347 75%, #FF4500 100%);
    color: white;
    padding: 2rem;
    border-radius: 20px;
    margin: 2rem 0;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
    animation: shimmer 3s linear infinite, slideUp 1s ease-out, glow 2s ease-in-out infinite;
    transform-origin: right;
}

.mission-box h3 {
    color: white !important;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.feature-card {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    opacity: 0;
    animation: fadeInScale 0.8s ease-out forwards;
}

.feature-card:nth-child(1) {
    animation-delay: 0.7s;
}

.feature-card:nth-child(2) {
    animation-delay: 0.85s;
}

.feature-card:nth-child(3) {
    animation-delay: 1s;
}

.feature-card:nth-child(4) {
    animation-delay: 1.15s;
}

.feature-card:nth-child(5) {
    animation-delay: 1.3s;
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 15px 30px rgba(255, 69, 0, 0.3);
    background: linear-gradient(135deg, #FF4500 0%, #FFD700 100%);
    color: white;
}

.feature-card:hover h4,
.feature-card:hover p {
    color: white;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: bounce 2s infinite;
}

.feature-card:hover .feature-icon {
    animation: bounce 0.5s infinite;
}

.feature-card h4 {
    color: #6F4E37;
    font-size: 1.2rem;
    margin: 1rem 0 0.5rem;
}

.feature-card p {
    color: #666;
    font-size: 0.95rem;
}

/* CTA Box */
.cta-box {
    background: linear-gradient(135deg, #FFD700 0%, #FF4500 100%);
    color: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    margin-top: 3rem;
    box-shadow: 0 10px 30px rgba(255, 69, 0, 0.4);
    animation: fadeInScale 1s ease-out 1.5s both;
}

.cta-box:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(255, 69, 0, 0.5);
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

    .about-title {
        font-size: 2rem;
    }
}

@keyframes slideUp {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

@keyframes iconBounce {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-10px) scale(1.1);
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 10px 30px rgba(255, 69, 0, 0.3),
                    0 0 20px rgba(255, 215, 0, 0.2);
    }
    50% {
        box-shadow: 0 15px 40px rgba(255, 69, 0, 0.6),
                    0 0 30px rgba(255, 215, 0, 0.4);
    }
}


.trust-bar {
    background: linear-gradient(135deg, #FF4500 0%, #FF6347 25%, #FFD700 50%, #FF6347 75%, #FF4500 100%);
    background-size: 200% 200%;
    animation: shimmer 3s linear infinite, slideUp 1s ease-out, glow 2s ease-in-out infinite;
    color: white;
    padding: 1.5rem 2rem;
    margin-top: -50px;
    border-radius: 20px;
    position: relative;
    z-index: 10;
    box-shadow: 0 10px 30px rgba(255, 69, 0, 0.4);
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
    border: 2px solid rgba(255, 215, 0, 0.3);
}

.trust-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 1rem;
    text-align: center;
}

.trust-item {
    font-weight: 700;
    font-size: 1.1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    cursor: pointer;
}

.trust-item:hover {
    transform: scale(1.1);
}

.trust-item span { 
    font-size: 2rem; 
    display: block; 
    margin-bottom: 8px;
    animation: iconBounce 2s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
}

.trust-item:hover span {
    animation: iconBounce 0.5s ease-in-out infinite;
}

/* Stagger animation for each item */
.trust-item:nth-child(1) {
    animation: slideUp 1s ease-out 0.2s both;
}

.trust-item:nth-child(2) {
    animation: slideUp 1s ease-out 0.4s both;
}

.trust-item:nth-child(3) {
    animation: slideUp 1s ease-out 0.6s both;
}

.trust-item:nth-child(4) {
    animation: slideUp 1s ease-out 0.8s both;
}

.hero > div:has(.hero-btn) {
    margin-bottom: 40px;
}


@media (max-width: 768px) {
    .trust-bar {
        max-width: 85%;
        margin-top: -30px;
        margin-left: auto;
        margin-right: auto;
        padding: 1.5rem 1rem;
    }
    
    .trust-grid {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .hero {
        padding-bottom: 80px;
    }
    
    .trust-item span {
        font-size: 1.8rem;
    }
}

/* Services Grid */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

/* Services Section Animations */
@keyframes slideInFromBottom {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes shimmerEffect {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

/* Services Section Styling */
.services-main-title {
    text-align: center;
    font-size: 2.8rem;
    color: #6F4E37;
    margin-bottom: 1rem;
    animation: slideInFromBottom 1s ease-out;
    position: relative;
}

.services-main-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #FF4500, #FFD700);
    border-radius: 2px;
}

.services-subtitle {
    text-align: center;
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 3rem;
    animation: slideInFromBottom 1s ease-out 0.2s both;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 40px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.service-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: slideInFromBottom 0.8s ease-out both;
    position: relative;
}

.service-card-1 {
    animation-delay: 0.1s;
}

.service-card-2 {
    animation-delay: 0.3s;
}

.service-card-3 {
    animation-delay: 0.5s;
}

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 50px rgba(255, 69, 0, 0.3);
}

/* Service Image Styling */
.service-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 300px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image {
    transform: scale(1.15) rotate(2deg);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.3) 100%);
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 15px;
}

.popular-tag {
    background: linear-gradient(135deg, #FF4500 0%, #FFD700 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(255, 69, 0, 0.4);
    animation: float 3s ease-in-out infinite;
}

/* Service Content */
.service-content {
    padding: 30px;
}

.service-card h3 {
    color: #6F4E37;
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-weight: 800;
}

.price-tag {
    margin: 20px 0;
    padding: 15px;
    background: linear-gradient(135deg, #FF4500 0%, #FF6347 100%);
    border-radius: 15px;
    display: inline-block;
    box-shadow: 0 5px 15px rgba(255, 69, 0, 0.3);
}

.price {
    color: white;
    font-size: 2.2rem;
    font-weight: 900;
}

.duration {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    font-weight: 500;
}

.service-description {
    color: #555;
    line-height: 1.7;
    margin: 20px 0;
    font-size: 1rem;
}

/* Service Features List */
.service-features {
    list-style: none;
    padding: 0;
    margin: 25px 0;
    text-align: left;
}

.service-features li {
    padding: 10px 0;
    color: #333;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-icon {
    color: #4CAF50;
    font-weight: bold;
    font-size: 1.2rem;
    background: rgba(76, 175, 80, 0.1);
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Service Button */
.service-btn {
    width: 100%;
    padding: 15px 30px;
    background: linear-gradient(135deg, #6F4E37 0%, #8B6F47 100%);
    color: white;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
    box-shadow: 0 5px 15px rgba(111, 78, 55, 0.3);
}

.service-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(111, 78, 55, 0.5);
    background: linear-gradient(135deg, #8B6F47 0%, #6F4E37 100%);
}

.service-btn:active {
    transform: translateY(-1px);
}

/* Package Deal Banner */
.package-deal-banner {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 40px;
    border-radius: 25px;
    text-align: center;
    margin-top: 60px;
    color: white;
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
    animation: slideInFromBottom 1s ease-out 0.7s both;
    position: relative;
    overflow: hidden;
}

.package-deal-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
    animation: shimmerEffect 3s infinite;
}

.package-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    animation: float 2s ease-in-out infinite;
}

.package-deal-banner h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: white;
}

.package-deal-banner p {
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.95);
}

.package-btn {
    display: inline-block;
    background: white;
    color: #667eea;
    padding: 15px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.package-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    background: #FFD700;
    color: #667eea;
}

/* Responsive Design */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .services-main-title {
        font-size: 2rem;
    }

    .services-subtitle {
        font-size: 1.1rem;
    }

    .service-card h3 {
        font-size: 1.5rem;
    }

    .price {
        font-size: 1.8rem;
    }

    .package-deal-banner {
        padding: 30px 20px;
    }

    .package-deal-banner h3 {
        font-size: 1.5rem;
    }
}


/* Price Tooltip Styling */
.price-tooltip-wrapper {
    position: relative;
    cursor: help;
}

.price-tooltip {
    position: fixed; 
    bottom: auto;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    background: white;
    color: #333;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    width: 320px;
    max-width: 90vw;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 1000;
    pointer-events: none;
}

/* Tooltip Arrow - Hide on mobile */
.price-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 10px solid transparent;
    border-top-color: white;
}

/* Show tooltip on hover */
.price-tooltip-wrapper:hover .price-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
    pointer-events: auto;
}

/* Overlay backdrop for mobile */
.price-tooltip::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.price-tooltip-wrapper:hover .price-tooltip::before {
    opacity: 1;
}

/* Tooltip Header */
.tooltip-header {
    font-size: 1.1rem;
    font-weight: 800;
    color: #FF4500;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
    text-align: center;
}

/* Tooltip Content */
.price-tooltip p {
    margin: 8px 0;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
}

.price-tooltip p strong {
    color: #FF4500;
    font-weight: 700;
}

.tooltip-divider {
    height: 2px;
    background: linear-gradient(90deg, transparent, #FF4500, transparent);
    margin: 15px 0;
}

/* Animation for tooltip appearance */
@keyframes tooltipBounce {
    0%, 100% {
        transform: translate(-50%, -50%) translateY(0);
    }
    50% {
        transform: translate(-50%, -50%) translateY(-5px);
    }
}

.price-tooltip-wrapper:hover .price-tooltip {
    animation: tooltipBounce 0.6s ease-out;
}

/* Desktop - Position above price tag */
@media (min-width: 769px) {
    .price-tooltip {
        position: absolute;
        bottom: 110%;
        left: 50%;
        top: auto;
        transform: translateX(-50%) scale(0.8);
    }
    
    .price-tooltip-wrapper:hover .price-tooltip {
        transform: translateX(-50%) scale(1);
    }
    
    .price-tooltip::before {
        display: none; 
    }
    
    .price-tooltip::after {
        display: block; 
    }
}

/* Mobile - Center in viewport */
@media (max-width: 768px) {
    .price-tooltip {
        width: 90%;
        max-width: 320px;
        padding: 25px 20px;
        background: white;
        color: #333;
    }
    
    .price-tooltip::after {
        display: none; 
    }
    
    .tooltip-header {
        font-size: 1.2rem;
        color: #FF4500;
    }
    
    .price-tooltip p {
        font-size: 1rem;
        color: #555;
    }
}

/* Add a subtle pulse to indicate it's hoverable */
@keyframes pricePulse {
    0%, 100% {
        box-shadow: 0 5px 15px rgba(255, 69, 0, 0.3);
    }
    50% {
        box-shadow: 0 5px 25px rgba(255, 69, 0, 0.5);
    }
}

.price-tag {
    animation: pricePulse 2s ease-in-out infinite;
}

.price-tag:hover {
    animation: none;
}

/* Add close button for mobile */
.tooltip-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #FF4500;
    color: white;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    line-height: 1;
    display: none;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

@media (max-width: 768px) {
    .tooltip-close {
        display: flex;
    }
}
@media (max-width: 768px) {
    .price-tooltip-wrapper.active .price-tooltip {
        opacity: 1;
        visibility: visible;
        transform: translate(-50%, -50%) scale(1);
        pointer-events: auto;
        background: white;
    }
    
    .price-tooltip-wrapper.active .price-tooltip::before {
        opacity: 1;
    }
}

/* Clients Section Styling */
.clients-section {
    background: linear-gradient(to bottom, #ffffff 0%, #f8f8f8 100%);
    padding: 5rem 2rem;
}

.clients-title {
    text-align: center;
    font-size: 2.5rem;
    color: #000;
    font-weight: 400;
    letter-spacing: 1px;
    margin-bottom: 4rem;
    text-transform: uppercase;
    font-family: Georgia, serif;
    animation: fadeInDown 1s ease-out;
}

/* Clients Grid */
.clients-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
}

/* Client Logo Container */
.client-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: white;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    min-height: 120px;
    text-decoration: none;
    opacity: 0;
    animation: fadeInScale 0.6s ease-out forwards;
}

/* Stagger animation for logos */
.client-logo:nth-child(1) { animation-delay: 0.1s; }
.client-logo:nth-child(2) { animation-delay: 0.15s; }
.client-logo:nth-child(3) { animation-delay: 0.2s; }
.client-logo:nth-child(4) { animation-delay: 0.25s; }
.client-logo:nth-child(5) { animation-delay: 0.3s; }
.client-logo:nth-child(6) { animation-delay: 0.35s; }
.client-logo:nth-child(7) { animation-delay: 0.4s; }
.client-logo:nth-child(8) { animation-delay: 0.45s; }
.client-logo:nth-child(9) { animation-delay: 0.5s; }
.client-logo:nth-child(10) { animation-delay: 0.55s; }
.client-logo:nth-child(11) { animation-delay: 0.6s; }
.client-logo:nth-child(12) { animation-delay: 0.65s; }
.client-logo:nth-child(13) { animation-delay: 0.7s; }
.client-logo:nth-child(14) { animation-delay: 0.75s; }
.client-logo:nth-child(15) { animation-delay: 0.8s; }
.client-logo:nth-child(16) { animation-delay: 0.85s; }
.client-logo:nth-child(17) { animation-delay: 0.9s; }
.client-logo:nth-child(18) { animation-delay: 0.95s; }
.client-logo:nth-child(19) { animation-delay: 1s; }
.client-logo:nth-child(20) { animation-delay: 1.05s; }
.client-logo:nth-child(21) { animation-delay: 1.1s; }
.client-logo:nth-child(22) { animation-delay: 1.15s; }
.client-logo:nth-child(23) { animation-delay: 1.2s; }
.client-logo:nth-child(24) { animation-delay: 1.25s; }

/* Empty logo spaces (invisible but maintain grid) */
.client-logo-empty {
    opacity: 0;
    pointer-events: none;
    box-shadow: none;
    background: transparent;
}

/* Client Logo Image */
.client-logo img {
    max-width: 100%;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.client-logo:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.client-logo:hover img {
    filter: grayscale(0%);
}

.clients-cta {
    text-align: center;
    margin-top: 5rem;
    padding: 40px;
    background: linear-gradient(135deg, #6F4E37 0%, #8B6F47 100%);
    border-radius: 20px;
    color: white;
    animation: fadeInUp 1s ease-out 1.5s both;
}

.clients-cta h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: white;
}

.clients-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.clients-cta-btn {
    display: inline-block;
    background: white;
    color: #6F4E37;
    padding: 15px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.clients-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    background: #FFD700;
}

@media (max-width: 1200px) {
    .clients-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .clients-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .clients-title {
        font-size: 1.8rem;
    }

    .client-logo {
        min-height: 100px;
        padding: 15px;
    }

    .client-logo img {
        max-height: 60px;
    }

    .clients-cta h3 {
        font-size: 1.5rem;
    }

    .clients-cta p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .clients-title {
        font-size: 1.5rem;
    }

    .client-logo {
        min-height: 80px;
        padding: 10px;
    }

    .client-logo img {
        max-height: 50px;
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Booking Section Styling */
.booking-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 5rem 2rem;
    position: relative;
    overflow: hidden;
}

/* Animated background pattern */
.booking-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    animation: backgroundMove 20s ease-in-out infinite;
}

@keyframes backgroundMove {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* Header */
.booking-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
    animation: fadeInDown 1s ease-out;
}

.booking-title {
    color: white;
    font-size: 2.8rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.booking-subtitle {
    color: #FF4500;
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Container Layout */
.booking-container {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Form Styling */
.booking-form {
    background: white;
    padding: 40px;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideInLeft 0.8s ease-out;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 25px;
}

/* Labels with Icons */
label {
    font-weight: 700;
    margin-bottom: 8px;
    color: #333;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.label-icon {
    font-size: 1.2rem;
}

.required {
    color: #FF4500;
    font-weight: bold;
}

/* Input Fields */
input,
textarea,
select {
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    background-color: #f8f9fa;
    color: #333;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: #667eea;
    background-color: white;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
    transform: translateY(-2px);
}

input::placeholder,
textarea::placeholder {
    color: #999;
}


/* Date Input box wrapper */
.custom-date-input {
    position: relative;
    width: 100%;
}

.date-input {
    width: 100%;
    padding: 15px;
    padding-right: 45px; 
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    background-color: #f8f9fa;
    color: #333;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
    box-sizing: border-box;
    /* Prevent text overflow */
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.date-input:focus {
    outline: none;
    border-color: #667eea;
    background-color: white;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
    transform: translateY(-2px);
}

.date-label {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
    font-size: 1rem;
    pointer-events: none;
    transition: all 0.3s ease;
    background: #f8f9fa;
    padding: 0 5px;
}

.date-input:focus + .date-label,
.date-input:valid + .date-label {
    opacity: 0;
    transform: translateY(-50%) translateX(-10px);
}

.date-input:focus + .date-label {
    background: white;
}

.date-input:not(:focus):invalid {
    color: transparent;
}

.date-input:focus,
.date-input:valid {
    color: #333;
}

/* Style the calendar icon */
.date-input::-webkit-calendar-picker-indicator {
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.2s;
    /* Ensure the icon stays within bounds */
    position: absolute;
    margin-right: 10px;
}

.date-input::-webkit-calendar-picker-indicator:hover {
    opacity: 1;
}

/* Mobile-specific adjustments */
@media (max-width: 768px) {
    .date-input {
        font-size: 0.95rem;
        padding: 12px;
        padding-right: 40px;
    }
    
    .date-label {
        font-size: 0.95rem;
    }
}

/* Custom Select Wrapper */
.custom-select-wrapper {
    position: relative;
}

.equipment-select-hidden {
    display: none;
}

.custom-select-trigger {
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    background-color: #f8f9fa;
    color: #333;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.custom-select-trigger.has-selection {
    border-color: #667eea;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
    font-weight: 600;
    color: #667eea;
}

.custom-select-trigger::after {
    content: '▼';
    font-size: 0.8rem;
    color: #667eea;
    transition: transform 0.3s ease;
}

.custom-select-trigger.active::after {
    transform: rotate(180deg);
}

.custom-select-trigger:hover {
    border-color: #667eea;
    background-color: white;
}

.custom-select-trigger.active {
    border-color: #667eea;
    background-color: white;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
}

/* Custom Options Dropdown */
.custom-select-options {
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    right: 0;
    background: white;
    border: 2px solid #667eea;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 100;
}

.custom-select-options.show {
    max-height: 300px;
    overflow-y: auto;
    opacity: 1;
    padding: 10px 0;
}


.custom-select-options::-webkit-scrollbar {
    width: 8px;
}

.custom-select-options::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.custom-select-options::-webkit-scrollbar-thumb {
    background: #667eea;
    border-radius: 10px;
}

/* Custom Option Items */
.custom-option {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    cursor: pointer;
    transition: background 0.2s ease;
    user-select: none;
}

.custom-option:hover {
    background: #f8f9fa;
}

.custom-option input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-right: 12px;
    cursor: pointer;
    accent-color: #667eea;
}

.custom-option span {
    flex: 1;
    font-size: 0.95rem;
    color: #333;
}

.custom-option input:checked + span {
    font-weight: 600;
    color: #667eea;
}

/* Selected count badge */
.selected-count {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 3px 10px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-left: 8px;
}


@media (max-width: 768px) {
    .custom-select-options.show {
        max-height: 250px;
    }
    
    .custom-option {
        padding: 10px 15px;
    }
    
    .custom-option span {
        font-size: 0.9rem;
    }
}


/* Total Price Box */
.total-price-box {
    background: linear-gradient(135deg, #FF4500 0%, #FF6347 100%);
    color: white;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    margin: 30px 0;
    box-shadow: 0 10px 30px rgba(255, 69, 0, 0.3);
    animation: pulse 2s ease-in-out infinite;
    display: none;
}

.total-price-box.show {
    display: block;
    animation: slideInUp 0.5s ease-out, pulse 2s ease-in-out infinite 0.5s;
}

.total-label {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
    opacity: 0.9;
}

.total-amount {
    font-size: 3rem;
    font-weight: 900;
    margin: 10px 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.total-note {
    font-size: 0.85rem;
    opacity: 0.8;
    margin-top: 10px;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
}

/* Submit Button */
.submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #FF4500 0%, #FF6347 100%);
    color: white;
    padding: 18px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 10px 30px rgba(255, 69, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.submit-btn:hover::before {
    left: 100%;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 69, 0, 0.5);
}

.submit-btn:active {
    transform: translateY(-1px);
}

.submit-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.btn-arrow {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.submit-btn:hover .btn-arrow {
    transform: translateX(5px);
}

/* Form Footer */
.form-footer {
    text-align: center;
    margin-top: 20px;
    color: #666;
    font-size: 0.9rem;
}

/* Info Cards (Right Side) */
.booking-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
    animation: slideInRight 0.8s ease-out;
}


.info-card {
    background: linear-gradient(135deg, 
        #FF4500 0%,     
        #FF6347 50%,    
        #FFD700 100%    
    );
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(255, 69, 0, 0.3);
    transition: all 0.3s ease;
    opacity: 0;
    animation: fadeInScale 0.8s ease-out forwards;
    position: relative;
    overflow: hidden;
}

/* Lightning Flash Effect */
.info-card-1::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 50% 30%, 
        rgba(255, 255, 255, 0.8) 0%, 
        rgba(255, 255, 255, 0.4) 30%, 
        transparent 70%
    );
    opacity: 0;
    animation: lightningFlash 5s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

/* Animated Lightning Spark */
.info-card-1::after {
    content: '⚡';
    position: absolute;
    font-size: 5rem;
    top: -20%;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 1));
    animation: lightningStrike 5s ease-in-out infinite;
    pointer-events: none;
    z-index: 2;
}

@keyframes lightningFlash {
    0%, 88%, 100% {
        opacity: 0;
    }
    89%, 91%, 93% {
        opacity: 1;
    }
    90%, 92% {
        opacity: 0.3;
    }
}

@keyframes lightningStrike {
    0%, 88%, 100% {
        opacity: 0;
        top: -20%;
        transform: translateX(-50%) scale(0.5) rotate(-15deg);
    }
    89% {
        opacity: 1;
        top: 30%;
        transform: translateX(-50%) scale(1.2) rotate(5deg);
    }
    90% {
        opacity: 0.5;
        transform: translateX(-50%) scale(1.2) rotate(-5deg);
    }
    91% {
        opacity: 1;
        transform: translateX(-50%) scale(1.2) rotate(10deg);
    }
    93% {
        opacity: 0;
        top: 50%;
        transform: translateX(-50%) scale(1) rotate(0deg);
    }
}

/* Make sure content stays above effects */
.info-card * {
    position: relative;
    z-index: 3;
}

.info-card h3 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.info-card p {
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.info-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    animation: iconGlow 3s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.6));
}

@keyframes iconGlow {
    0%, 88%, 100% {
        filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.6));
        transform: scale(1);
    }
    89%, 91%, 93% {
        filter: drop-shadow(0 0 30px rgba(255, 255, 255, 1));
        transform: scale(1.2);
    }
    90%, 92% {
        filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.8));
        transform: scale(1.1);
    }
}

.info-card-1 { animation-delay: 0.2s; }
.info-card-2 { animation-delay: 0.4s; }
.info-card-3 { animation-delay: 0.6s; }

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 69, 0, 0.5);
}

/* Contact Card - Orange/Yellow Gradient */
.contact-card {
    background: linear-gradient(135deg, 
        #FF6347 0%,    
        #FF8C00 50%,   
        #FFD700 100%   
    );
    color: white;
    padding: 60px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(255, 140, 0, 0.4);
    animation: fadeInScale 0.8s ease-out 0.8s both;
    position: relative;
    overflow: hidden;
}

/* Animated Shimmer */
.contact-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, 
        rgba(255, 255, 255, 0.2) 0%, 
        transparent 60%
    );
    animation: shimmerMove 10s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes shimmerMove {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(20px, 20px) scale(1.1);
    }
}

/* Lightning Flash for Contact Card */
.contact-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 70% 30%, 
        rgba(255, 255, 255, 0.9) 0%, 
        rgba(255, 255, 255, 0.5) 20%, 
        transparent 60%
    );
    opacity: 0;
    animation: contactLightning 6s ease-in-out infinite 2.5s;
    pointer-events: none;
    z-index: 1;
}

@keyframes contactLightning {
    0%, 90%, 100% {
        opacity: 0;
    }
    91% {
        opacity: 1;
    }
    92% {
        opacity: 0.3;
    }
    93% {
        opacity: 1;
    }
    94% {
        opacity: 0.2;
    }
    95% {
        opacity: 0.8;
    }
    96% {
        opacity: 0;
    }
}

/* Ensure content stays above effects */
.contact-card > * {
    position: relative;
    z-index: 2;
}

.contact-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: white;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.contact-card p {
    margin: 10px 0;
    opacity: 0.95;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.contact-phone {
    display: inline-block;
    background: white;
    color: #FF4500;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    margin: 15px 0;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.contact-phone:hover {
    transform: scale(1.05) translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.4);
    background: #FFF;
    color: #FF6347;
}

.contact-hours {
    font-size: 0.9rem;
    opacity: 0.9;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Responsive */
@media (max-width: 768px) {
    .info-icon {
        font-size: 2.5rem;
    }
    
    .contact-card {
        padding: 40px 20px;
    }
}

/* Alerts */
.alert {
    display: none;
    padding: 15px 20px;
    border-radius: 12px;
    margin: 20px 0;
    font-weight: 600;
    animation: slideInDown 0.5s ease-out;
}

.alert-error {
    background-color: #fee;
    color: #c33;
    border-left: 4px solid #c33;
}

.alert-success {
    background-color: #efe;
    color: #2a2;
    border-left: 4px solid #2a2;
}

/* Loading Spinner */
.loading {
    display: none;
    text-align: center;
    margin: 20px 0;
}

.spinner {
    border: 4px solid rgba(102, 126, 234, 0.2);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border-left-color: #667eea;
    animation: spin 1s linear infinite;
    margin: 0 auto 15px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .booking-container {
        grid-template-columns: 1fr;
    }

    .booking-info {
        grid-template-columns: repeat(2, 1fr);
        display: grid;
    }

    .contact-card {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .booking-title {
        font-size: 2rem;
    }

    .booking-subtitle {
        font-size: 1rem;
    }

    .booking-form {
        padding: 25px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .booking-info {
        grid-template-columns: 1fr;
    }

    .total-amount {
        font-size: 2.5rem;
    }

    .equipment-card-label {
        padding: 15px;
    }

    .equipment-icon {
        font-size: 2rem;
    }
}

/* --- Footer --- */
footer {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 40px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

.footer-section {
    flex: 1;
    min-width: 200px;
}

.footer-section h3 {
    color: var(--text-light);
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.footer-section p {
    margin: 5px 0;
    font-size: 0.9rem;
}

.footer-section a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    text-decoration: underline;
}

.social-links {
    margin-top: 15px;
    display: flex;
    gap: 15px;
}

.social-link {
    font-size: 1.5rem;
    transition: transform 0.2s ease;
}

.social-link:hover {
    transform: scale(1.1);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.8rem;
}


@media (max-width: 768px) {
    .section {
        padding: 40px 0;
    }

    .section-title {
        font-size: 2rem;
    }

    /* Mobile Navigation */
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: var(--secondary-color);
        box-shadow: var(--box-shadow);
        padding: 20px 0;
        border-radius: var(--border-radius);
        transition: transform 0.3s ease;
        transform: translateY(-10px);
        opacity: 0;
    }

    .nav-links.active {
        display: flex;
        transform: translateY(0);
        opacity: 1;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-links a {
        display: block;
        text-align: center;
        margin: 10px 20px;
        padding: 15px;
        border: 1px solid var(--accent-color);
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .services-grid,
    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .contact-info {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
    }
}