* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Inter", sans-serif;
    background: #ffffff;
    color: #1a2a3a;
    overflow-x: hidden;
}

::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: #f5f0eb;
}
::-webkit-scrollbar-thumb {
    background: #e64622;
    border-radius: 10px;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

:root {
    --orange: #e64622;
    --orange-dark: #c73a1a;
    --orange-light: #fef0ec;
    --orange-soft: #fff5f2;
    --white: #ffffff;
    --blue-dark: #0a2b3e;
    --gray-soft: #6b7b8d;
    --border-light: #f0e4d6;
    --shadow-sm: 0 12px 28px -8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 20px 32px -12px rgba(230, 70, 34, 0.12);
    --shadow-lg: 0 30px 40px -16px rgba(230, 70, 34, 0.15);
}

/* Scroll Animations */
.scroll-animate {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}
.scroll-animate.animated {
    opacity: 1;
    transform: translateY(0);
}
.scroll-animate-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}
.scroll-animate-left.animated {
    opacity: 1;
    transform: translateX(0);
}
.scroll-animate-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}
.scroll-animate-right.animated {
    opacity: 1;
    transform: translateX(0);
}
.scroll-animate-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.6s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}
.scroll-animate-scale.animated {
    opacity: 1;
    transform: scale(1);
}
.delay-100 {
    transition-delay: 0.1s;
}
.delay-200 {
    transition-delay: 0.2s;
}
.delay-300 {
    transition-delay: 0.3s;
}
.delay-400 {
    transition-delay: 0.4s;
}

/* Header */
.site-header {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid var(--orange);
    transition: all 0.3s ease;
}
.site-header.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    flex-shrink: 0;
}
.logo-img {
    height: 50px;
    width: auto;
    max-width: 160px;
    object-fit: contain;
    transition: transform 0.3s ease;
}
.logo-img:hover {
    transform: scale(1.02);
}
.logo-fallback {
    display: flex;
    align-items: center;
    gap: 12px;
}
.logo-fallback .logo-circle {
    width: 48px;
    height: 48px;
    background: var(--orange);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.logo-fallback .logo-circle i {
    font-size: 1.4rem;
    color: white;
}
.logo-fallback .logo-text .logo-main {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--blue-dark);
    line-height: 1.2;
}
.logo-fallback .logo-text .logo-sub {
    font-size: 0.5rem;
    font-weight: 600;
    color: var(--orange);
    letter-spacing: 1px;
    display: block;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 35px;
}
.nav-links a {
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--blue-dark);
    transition: 0.2s;
    position: relative;
    padding: 8px 0;
}
.nav-links a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--orange);
    transition: width 0.3s ease;
}
.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}
.nav-links a:hover,
.nav-links a.active {
    color: var(--orange);
}

.nav-cta {
    background: var(--orange);
    color: white !important;
    padding: 10px 28px !important;
    border-radius: 40px;
    font-weight: 700 !important;
    transition: all 0.25s ease;
    box-shadow: 0 2px 8px rgba(230, 70, 34, 0.2);
}
.nav-cta::after {
    display: none !important;
}
.nav-cta:hover {
    background: var(--orange-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(230, 70, 34, 0.3);
    color: white !important;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--blue-dark);
    cursor: pointer;
    padding: 8px;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
}

.hero-slides {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide-1 {
    background-image: url("https://images.pexels.com/photos/669619/pexels-photo-669619.jpeg?w=1920&h=1080&fit=crop");
}
.hero-slide-2 {
    background-image: url("https://images.pexels.com/photos/256514/pexels-photo-256514.jpeg?w=1920&h=1080&fit=crop");
}
.hero-slide-3 {
    background-image: url("https://images.pexels.com/photos/221027/pexels-photo-221027.jpeg?w=1920&h=1080&fit=crop");
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 43, 62, 0.85) 0%, rgba(230, 70, 34, 0.7) 100%);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-grid {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 50px;
    padding: 100px 0;
    min-height: 100vh;
}

.hero-content {
    flex: 1.2;
}

.hero-content h1 {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.2;
    color: white;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 520px;
    margin-bottom: 32px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.btn-primary {
    background: var(--orange);
    color: white;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(230, 70, 34, 0.3);
}
.btn-primary:hover {
    background: var(--orange-dark);
    transform: translateY(-2px);
}

.btn-outline {
    border: 2px solid var(--orange);
    color: var(--orange);
    background: transparent;
    padding: 10px 26px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}
.btn-outline:hover {
    background: var(--orange);
    color: white;
    transform: translateY(-2px);
}

/* Slide Indicators */
.slide-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 3;
}

.slide-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slide-dot.active {
    background: var(--orange);
    width: 30px;
    border-radius: 10px;
}

.slide-dot:hover {
    background: var(--orange);
}

/* Services Section */
.services {
    padding: 80px 0;
    background: var(--white);
}
.section-head {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 48px;
}
.section-head h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--blue-dark);
}
.section-head .orange-line {
    width: 60px;
    height: 3px;
    background: var(--orange);
    margin: 16px auto 0;
    border-radius: 4px;
}
.section-head p {
    color: var(--gray-soft);
    margin-top: 16px;
}
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.service-card {
    background: var(--white);
    border-radius: 24px;
    padding: 0;
    transition: all 0.4s ease;
    border: 1px solid var(--border-light);
    text-decoration: none;
    display: block;
    overflow: hidden;
}
.service-card:hover {
    transform: translateY(-6px);
    border-color: var(--orange);
    box-shadow: var(--shadow-lg);
}
.service-img {
    width: 100%;
    height: 200px;
    overflow: hidden;
}
.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.service-card:hover .service-img img {
    transform: scale(1.05);
}
.service-content {
    padding: 24px;
}
.service-icon {
    width: 50px;
    height: 50px;
    background: var(--orange-light);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}
.service-icon i {
    font-size: 1.5rem;
    color: var(--orange);
}
.service-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--blue-dark);
}
.service-card p {
    color: var(--gray-soft);
    font-size: 0.85rem;
    line-height: 1.5;
}

/* Finishing Badges */
.finishing-strip {
    background: var(--orange-light);
    padding: 60px 0;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}
.finishing-strip h3 {
    text-align: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 32px;
    color: var(--blue-dark);
}
.badge-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}
.finish-badge {
    background: var(--white);
    border: 1px solid rgba(230, 70, 34, 0.25);
    padding: 10px 22px;
    border-radius: 60px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--orange);
    transition: all 0.3s ease;
    cursor: pointer;
}
.finish-badge i {
    margin-right: 6px;
    color: var(--orange);
}
.finish-badge:hover {
    background: var(--orange);
    color: white;
    transform: translateY(-2px);
}
.finish-badge:hover i {
    color: white;
}

/* Booking Form */
.cta-booking {
    padding: 70px 0;
    background: var(--white);
}
.booking-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    background: linear-gradient(135deg, var(--orange-light) 0%, #ffffff 100%);
    border-radius: 32px;
    padding: 40px;
    border: 1px solid var(--border-light);
}
.booking-info {
    flex: 1;
}
.booking-info h2 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--blue-dark);
}
.booking-info h2 span {
    color: var(--orange);
}
.booking-info p {
    color: var(--gray-soft);
    margin-bottom: 20px;
    line-height: 1.6;
}
.booking-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
}
.feature-item i {
    width: 36px;
    height: 36px;
    background: var(--orange-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange);
    font-size: 1rem;
}
.feature-item span {
    color: var(--blue-dark);
    font-weight: 500;
}
.booking-form {
    flex: 1;
    background: var(--white);
    border-radius: 24px;
    padding: 30px;
    box-shadow: var(--shadow-lg);
}
.booking-form h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--blue-dark);
}
.booking-form p {
    color: var(--gray-soft);
    margin-bottom: 20px;
    font-size: 0.85rem;
}
.form-group {
    margin-bottom: 16px;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-light);
    border-radius: 12px;
    font-family: inherit;
    font-size: 0.9rem;
    background: var(--orange-light);
    transition: all 0.3s ease;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(230, 70, 34, 0.1);
    background: white;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}
.submit-btn {
    width: 100%;
    background: var(--orange);
    color: white;
    padding: 12px;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.submit-btn:hover {
    background: var(--orange-dark);
    transform: translateY(-2px);
}
.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}
.form-success {
    background: #e8f5e9;
    color: #2e7d32;
    padding: 12px;
    border-radius: 10px;
    margin-top: 15px;
    text-align: center;
    display: none;
}
.form-success.show {
    display: block;
}
.form-error {
    background: #ffebee;
    color: #c62828;
    padding: 12px;
    border-radius: 10px;
    margin-top: 15px;
    text-align: center;
    display: none;
}
.form-error.show {
    display: block;
}

/* Scroll Top Button */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--orange);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(230, 70, 34, 0.3);
    border: none;
}
.scroll-top.show {
    opacity: 1;
    visibility: visible;
}
.scroll-top:hover {
    background: var(--orange-dark);
    transform: translateY(-3px);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #5B5E5F 0%, #5B5E5F 50%, #5B5E5F 100%);
    color: #ffffff;
    padding: 60px 0 30px;
    position: relative;
}
.footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #fff, rgba(255, 255, 255, 0.3), #fff);
}
.footer-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
}
.footer-col h4 {
    color: white;
    font-size: 1rem;
    margin-bottom: 20px;
    font-weight: 700;
    position: relative;
    display: inline-block;
}
.footer-col h4::after {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 35px;
    height: 2px;
    background: rgba(255, 255, 255, 0.5);
}
.footer-col p,
.footer-col a {
    margin: 10px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
}
.footer-col a:hover {
    color: white;
    transform: translateX(3px);
}
.footer-col i {
    width: 20px;
}
.bank-info {
    background: rgba(255, 160, 160, 0.12);
    padding: 14px 18px;
    border-radius: 16px;
    font-size: 0.8rem;
}
.copyright {
    text-align: center;
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 0.7rem;
}
.design-credit {
    text-align: center;
    margin-top: 15px;
    font-size: 0.65rem;
    opacity: 0.7;
}
.design-credit a {
    color: white;
    text-decoration: none;
}
.design-credit a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 900px) {
    .container {
        padding: 0 24px;
    }
    .mobile-menu-btn {
        display: block;
    }
    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: white;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 40px;
        gap: 25px;
        transition: left 0.3s ease;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        z-index: 999;
    }
    .nav-links.active {
        left: 0;
    }
    .nav-links a {
        font-size: 1.1rem;
        padding: 12px 0;
    }
    .nav-cta {
        margin-top: 10px;
    }
    .hero-content h1 {
        font-size: 2.2rem;
    }
    .hero-grid {
        padding: 60px 0;
    }
    .booking-grid {
        padding: 25px;
    }
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .footer-grid {
        flex-direction: column;
        text-align: center;
    }
    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .footer-col p {
        justify-content: center;
    }
}

@media (max-width: 600px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    .btn-primary,
    .btn-outline {
        text-align: center;
        justify-content: center;
    }
    .service-grid {
        grid-template-columns: 1fr;
    }
    .logo-img {
        height: 45px;
    }
}
/* ===== PREMIUM TWO-LINE LOGO ===== */
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

/* Hide the image logo completely – we only want the text logo */
.logo-img {
    display: none !important;
}

/* Force fallback text logo to always show */
.logo-fallback {
    display: flex !important;
    align-items: center;
    gap: 14px;
}

.logo-circle {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #e64622, #c73a1a);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(230, 70, 34, 0.25);
    transition: transform 0.2s ease;
}

.logo-circle i {
    font-size: 1.6rem;
    color: white;
}

.logo-text {
    line-height: 1.2;
}

.logo-main {
    font-size: 1.3rem;
    font-weight: 800;
    color: #0a2b3e;
    letter-spacing: -0.3px;
}

.logo-main br {
    display: block;
}

/* Optional: add a very subtle tagline if needed */
.logo-sub {
    font-size: 0.55rem;
    font-weight: 600;
    color: #e64622;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-top: 2px;
    display: block;
}

/* Hover effect */
.logo:hover .logo-circle {
    transform: scale(1.02);
}

/* Responsive: adjust for mobile */
@media (max-width: 600px) {
    .logo-circle {
        width: 40px;
        height: 40px;
    }
    .logo-circle i {
        font-size: 1.2rem;
    }
    .logo-main {
        font-size: 1rem;
    }
}