:root {
    --primary-color: #1c1b1b;
    --secondary-color: #474545;
    --accent-color: #f3f3f3;
    --text-color: #333;
    --white: #ffffff;
    --font-main: 'Source Sans Pro', sans-serif;
    --transition: all 0.3s ease;
}

/* Animation Keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@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 pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

body.preloader-active {
    overflow: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.9rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    border: 2px solid var(--primary-color);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--primary-color);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

/* Top Header */
.top-header {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 0.75rem 0;
    font-size: 0.85rem;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1001;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.top-header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.contact-info {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.contact-info a {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.contact-info a:hover {
    color: var(--accent-color);
}

.contact-info span {
    display: flex;
    align-items: center;
    transition: var(--transition);
}

.contact-info span:hover {
    color: var(--accent-color);
}

.contact-info span i {
    margin-right: 0.5rem;
    color: var(--accent-color);
    font-size: 0.9rem;
}

.top-links span i {
    margin-right: 0.5rem;
    color: var(--accent-color);
    font-size: 0.9rem;
}

.top-links {
    display: flex;
    align-items: center;
}

.top-links span {
    color: rgba(255, 255, 255, 0.9);
}

/* Navbar */
.navbar {
    padding: 1.5rem 0;
    position: fixed;
    width: 100%;
    top: var(--top-header-height, 45px); /* Position below top header dynamically */
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #eee;
    margin-top: 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: inline-block;
    font-size: 0;
    line-height: 0;
}

.logo img {
    height: 40px;
    width: auto;
    max-width: 200px;
    display: block;
    transition: var(--transition);
    object-fit: contain;
}

.logo:hover img {
    opacity: 0.8;
}

.footer-logo .logo img {
    height: 45px;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--secondary-color);
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--primary-color);
}

.nav-buttons {
    display: flex;
    gap: 1rem;
}

.hamburger {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    padding-top: calc(var(--top-header-height, 45px) + var(--navbar-height, 70px) + 20px); /* Dynamic calculation */
    padding-bottom: 4rem;
    background-color: var(--white);
}

/* Booking Section */
.booking-section {
    padding-top: calc(var(--top-header-height, 45px) + var(--navbar-height, 70px) + 40px); /* Dynamic calculation */
    padding-bottom: 4rem;
    min-height: calc(100vh - var(--top-header-height, 45px) - var(--navbar-height, 70px));
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

.hero-content h1 {
    font-size: 5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
}

.hero-content p {
    font-size: 1.1rem;
    color: var(--secondary-color);
    margin-bottom: 2.5rem;
    max-width: 450px;
}

.hero-image {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

.hero-overlay-text {
    position: absolute;
    top: 20%;
    left: 10%;
    color: rgba(255, 255, 255, 0.7);
    font-family: monospace;
    font-size: 0.8rem;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.logo-overlay {
    position: absolute;
    bottom: 10%;
    right: 10%;
    font-size: 4rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 2px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Services Section */
.services {
    padding: 6rem 0;
    background-color: var(--white);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.section-header p {
    max-width: 400px;
    color: var(--secondary-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 2rem;
}

.service-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    height: 350px;
    cursor: pointer;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.service-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-card:hover img {
    transform: scale(1.05);
}

.service-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: var(--white);
}

.service-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.service-info p {
    font-size: 0.9rem;
    opacity: 0.9;
    display: none; /* Hidden by default, shown on hover or larger cards if desired, but design shows minimal text */
}

/* Grid Layout for Services */
.service-card:nth-child(1) { grid-column: span 6; }
.service-card:nth-child(2) { grid-column: span 6; }
.service-card:nth-child(3) { 
    grid-column: span 12; 
    height: 450px;
}
.service-card:nth-child(4) { grid-column: span 4; }
.service-card:nth-child(5) { grid-column: span 4; }

/* Why Choose Us / International Section */
.why-choose-us {
    padding: 6rem 0;
    background-color: #f9f9f9;
    position: relative;
    overflow: hidden;
}

.why-choose-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--primary-color), transparent);
    opacity: 0.1;
}

.subtitle {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.subtitle.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.why-header {
    margin-bottom: 4rem;
}

.why-header h2 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.why-header h2.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.why-header p {
    max-width: 600px;
    color: var(--secondary-color);
    font-size: 1.1rem;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease 0.2s, transform 0.8s ease 0.2s;
}

.why-header p.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Schedule Box */
.schedule-box {
    display: flex;
    gap: 2rem;
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin-bottom: 3rem;
    border-left: 4px solid var(--primary-color);
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.3s ease;
}

.schedule-box:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.schedule-box.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.schedule-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.schedule-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: var(--transition);
    animation: pulse 2s ease-in-out infinite;
}

.schedule-item:hover i {
    transform: scale(1.2);
    color: var(--primary-color);
}

.schedule-item:hover {
    transform: translateX(5px);
}

.schedule-item h4 {
    font-size: 0.9rem;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.3rem;
}

.schedule-item p {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.1rem;
}

/* Rates Container */
.rates-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.rate-card {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border: 1px solid #eee;
    transition: var(--transition);
    opacity: 0;
    transform: translateY(30px);
}

.rate-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.rate-card:nth-child(1) {
    transition-delay: 0.1s;
}

.rate-card:nth-child(2) {
    transition-delay: 0.2s;
}

.rate-card:nth-child(3) {
    transition-delay: 0.3s;
}

.rate-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.rate-card.highlight {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

.rate-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.rate-card.highlight h3 {
    color: #fff;
}

.rate-card .price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 1rem 0;
}

.rate-card.highlight .price {
    color: #fff;
}

.rate-card .per {
    font-size: 1rem;
    font-weight: 400;
    color: var(--secondary-color);
}

.rate-card.highlight .per {
    color: #ccc;
}

.rate-card .note {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.rate-card.highlight .note {
    color: #ccc;
}

.rate-features, .flat-rates {
    list-style: none;
}

.rate-features li {
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.rate-features li i {
    color: var(--primary-color);
    margin-top: 4px;
}

.rate-card.highlight .rate-features li i {
    color: #fff;
}

.flat-rates li {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.rate-card.highlight .flat-rates li {
    border-bottom-color: rgba(255,255,255,0.1);
}

.compliance-note {
    background: #fff3cd;
    border: 1px solid #ffeeba;
    color: #856404;
    padding: 1.5rem;
    border-radius: 8px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.compliance-note.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.compliance-note h4 {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
}

.feature-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.feature-item h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.feature-item p {
    font-size: 0.9rem;
    color: var(--secondary-color);
    line-height: 1.6;
}

/* Industries */
.industries {
    padding: 6rem 0;
    background-color: var(--white);
}

.industries-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 4rem;
}

.industries-header h2 {
    font-size: 3rem;
    color: var(--primary-color);
    line-height: 1.2;
}

.industries-header p {
    max-width: 400px;
    color: var(--secondary-color);
}

.nav-arrows {
    display: flex;
    gap: 1rem;
}

.arrow-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid #ddd;
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.arrow-btn:hover {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.industries-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.industry-card {
    padding: 2.5rem 2rem;
    border-radius: 12px;
    height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition);
}

.industry-card.white {
    background-color: #fff;
    border: 1px solid #eee;
}

.industry-card.dark {
    background-color: var(--secondary-color);
    color: var(--white);
}

.industry-card.dark p {
    color: #ccc;
}

.icon-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--primary-color);
}

.industry-card.dark .icon-circle {
    background-color: rgba(255,255,255,0.1);
    color: var(--white);
}

.industry-card h3 {
    font-size: 1.2rem;
    margin-top: auto;
    margin-bottom: 1rem;
}

.industry-card p {
    font-size: 0.9rem;
    color: var(--secondary-color);
}

/* Technology */
.technology {
    padding: 6rem 0;
    background-color: #f9f9f9;
}

.technology h2 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 4rem;
    line-height: 1.2;
}

.tech-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.tech-image img {
    border-radius: 8px;
    width: 100%;
    height: auto;
}

.tech-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.tech-feature h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.tech-feature p {
    font-size: 0.9rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.learn-more {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Footer */
.footer {
    background-color: var(--white);
    padding: 4rem 0 2rem;
    border-top: 1px solid #eee;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    font-size: 0.9rem;
    color: var(--secondary-color);
    font-weight: 600;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: #999;
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-links a {
    color: var(--primary-color);
    font-size: 1.2rem;
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.preloader-logo {
    animation: fadeIn 0.8s ease;
}

.preloader-logo img {
    height: 60px;
    width: auto;
    max-width: 250px;
    display: block;
    object-fit: contain;
}

.preloader-spinner {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    justify-content: center;
}

.spinner-circle {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--primary-color);
    animation: pulse 1.4s ease-in-out infinite;
}

.spinner-circle:nth-child(1) {
    animation-delay: 0s;
}

.spinner-circle:nth-child(2) {
    animation-delay: 0.2s;
}

.spinner-circle:nth-child(3) {
    animation-delay: 0.4s;
}

.preloader-text {
    font-size: 0.9rem;
    color: var(--secondary-color);
    font-weight: 600;
    letter-spacing: 1px;
    animation: fadeIn 0.8s ease 0.3s both;
}

/* Floating Booking Button */
.floating-booking-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    z-index: 999;
    transition: var(--transition);
    animation: slideInUp 0.5s ease 0.5s both;
    cursor: pointer;
}

.floating-booking-btn:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
}

.floating-booking-btn i {
    font-size: 1.2rem;
}

.floating-booking-btn .booking-text {
    white-space: nowrap;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 3.5rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .service-card:nth-child(n) {
        grid-column: span 1;
    }
    
    .service-card:nth-child(3) {
        grid-column: span 2;
        height: 400px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .industries-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .why-header h2 {
        font-size: 2.5rem;
    }
    
    .rates-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links, .nav-buttons {
        display: none;
    }
    
    .hamburger {
        display: block;
    }
    
    .logo img {
        height: 35px;
        max-width: 150px;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card:nth-child(3) {
        height: 350px;
    }
    
    .tech-content {
        grid-template-columns: 1fr;
    }
    
    .tech-features {
        grid-template-columns: 1fr;
    }
    
    .footer-top {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Footer Updates */
.footer-contact p, .footer-hours p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--secondary-color);
}

.footer-contact i {
    width: 20px;
    color: var(--primary-color);
}

.slogan {
    font-style: italic;
    color: var(--secondary-color);
    margin-top: 0.5rem;
}

/* Responsive Updates */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .top-header {
        font-size: 0.7rem;
        padding: 0.5rem 0;
        line-height: 1.4;
    }
    
    .top-header .container {
        padding: 0 1rem;
    }
    
    .top-header-container {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0.5rem 0.75rem;
        align-items: center;
        justify-content: flex-start;
        width: 100%;
    }
    
    .contact-info {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0.5rem 0.75rem;
        flex: 0 1 auto;
    }
    
    .contact-info a {
        display: inline-flex;
        align-items: center;
        padding: 0;
        white-space: nowrap;
    }
    
    .contact-info span {
        font-size: 0.7rem;
        white-space: nowrap;
        display: inline-flex;
        align-items: center;
        gap: 0.3rem;
    }
    
    .contact-info span i {
        font-size: 0.75rem;
        margin-right: 0;
        flex-shrink: 0;
        width: auto;
        text-align: center;
    }
    
    .top-links {
        flex: 0 1 auto;
        margin-left: auto;
    }
    
    .top-links span {
        font-size: 0.7rem;
        white-space: nowrap;
        display: inline-flex;
        align-items: center;
        gap: 0.3rem;
    }
    
    .top-links span i {
        font-size: 0.75rem;
        margin-right: 0;
        flex-shrink: 0;
        width: auto;
        text-align: center;
    }
    
    /* Position navbar directly below top-header with no gap */
    .navbar {
        margin-top: 0;
        border-top: none;
    }
    
    /* Ensure content isn't hidden - calculate padding for headers dynamically */
    .hero {
        padding-top: calc(var(--top-header-height, 50px) + var(--navbar-height, 70px) + 20px);
    }
    
    .booking-section {
        padding-top: calc(var(--top-header-height, 50px) + var(--navbar-height, 70px) + 40px);
    }
    
    .why-header h2 {
        font-size: 2rem;
    }
    
    .why-header p {
        font-size: 1rem;
    }
    
    .rates-container {
        grid-template-columns: 1fr;
    }
    
    .schedule-box {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .rate-card {
        padding: 1.5rem;
    }
    
    .compliance-note {
        padding: 1rem;
    }
    
    .floating-booking-btn {
        bottom: 1.5rem;
        right: 1.5rem;
        padding: 0.9rem 1.35rem;
        font-size: 0.9rem;
    }
    
    .preloader-logo img {
        height: 50px;
        max-width: 200px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.75rem;
    }
    
    .logo img {
        height: 30px;
        max-width: 120px;
    }
    
    .footer-logo .logo img {
        height: 35px;
    }
    
    .top-header {
        font-size: 0.65rem;
        padding: 0.45rem 0;
        line-height: 1.3;
    }
    
    .top-header .container {
        padding: 0 0.75rem;
    }
    
    .top-header-container {
        gap: 0.35rem 0.6rem;
        justify-content: flex-start;
    }
    
    .contact-info {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0.35rem 0.6rem;
    }
    
    .contact-info a {
        padding: 0;
        width: auto;
    }
    
    .contact-info span {
        font-size: 0.65rem;
        white-space: nowrap;
        gap: 0.25rem;
    }
    
    .contact-info span i {
        font-size: 0.7rem;
        margin-right: 0;
    }
    
    .top-links span {
        font-size: 0.65rem;
        white-space: nowrap;
        gap: 0.25rem;
        line-height: 1.3;
    }
    
    .top-links span i {
        font-size: 0.7rem;
        margin-right: 0;
    }
    
    .navbar {
        margin-top: 0;
    }
    
    .hero {
        padding-top: calc(var(--top-header-height, 45px) + var(--navbar-height, 65px) + 20px);
    }
    
    .booking-section {
        padding-top: calc(var(--top-header-height, 45px) + var(--navbar-height, 65px) + 40px);
    }
    
    .floating-booking-btn {
        bottom: 1rem;
        right: 1rem;
        padding: 0.9rem;
        border-radius: 50%;
        width: 56px;
        height: 56px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .floating-booking-btn .booking-text {
        display: none;
    }
    
    .floating-booking-btn i {
        font-size: 1.3rem;
        margin: 0;
    }
    
    .preloader-logo img {
        height: 40px;
        max-width: 180px;
    }
    
    .preloader-spinner {
        gap: 0.4rem;
    }
    
    .spinner-circle {
        width: 10px;
        height: 10px;
    }
}

/* Booking Page Styles */
.booking-section {
    padding: 4rem 0;
    min-height: 80vh;
    background-color: #f9f9f9;
}

.booking-container {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.booking-header {
    text-align: center;
    margin-bottom: 3rem;
}

.booking-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.booking-header p {
    color: var(--secondary-color);
}

.form-step {
    display: none;
    animation: fadeIn 0.5s ease;
}

.form-step.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.form-step h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.step-number {
    background: var(--primary-color);
    color: #fff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--secondary-color);
}

.form-control, input[type="text"], input[type="tel"], input[type="number"], input[type="date"], textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

input:focus, textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.radio-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.radio-card {
    cursor: pointer;
    position: relative;
}

.radio-card input {
    position: absolute;
    opacity: 0;
}

.card-content {
    border: 2px solid #eee;
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
}

.card-content i {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    display: block;
}

.radio-card input:checked + .card-content {
    border-color: var(--primary-color);
    background-color: rgba(28, 27, 27, 0.05);
}

.radio-card input:checked + .card-content i {
    color: var(--primary-color);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: #fff;
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
    max-width: 500px;
    width: 90%;
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.modal-icon {
    font-size: 4rem;
    color: #28a745;
    margin-bottom: 1.5rem;
}

.modal h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.modal p {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .radio-group, .form-row {
        grid-template-columns: 1fr;
    }
    .booking-container {
        padding: 1.5rem;
    }
}
