/* ========== Root Variables ========== */
:root {
    --primary: #1e88e5;
    --primary-dark: #0d47a1;
    --primary-light: #64b5f6;
    --secondary: #0a2540;
    --accent: #ffc107;
    --dark: #0f1419;
    --gray: #6b7280;
    --light-gray: #f3f4f6;
    --white: #ffffff;
    --gradient: linear-gradient(135deg, #1e88e5 0%, #0d47a1 100%);
    --gradient-2: linear-gradient(135deg, #64b5f6 0%, #1e88e5 100%);
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.15);
    --shadow-blue: 0 10px 40px rgba(30, 136, 229, 0.3);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========== Reset ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--dark);
    overflow-x: hidden;
    background: #fafbff;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ========== Typography ========== */
h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    line-height: 1.2;
}

.gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-tag {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(30, 136, 229, 0.1);
    color: var(--primary);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--secondary);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

/* ========== Buttons ========== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background: var(--gradient);
    color: var(--white);
    box-shadow: var(--shadow-blue);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0d47a1, #1e88e5);
    transition: left 0.4s ease;
    z-index: -1;
}

.btn-primary:hover::before {
    left: 0;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(30, 136, 229, 0.5);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

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

.btn-block {
    width: 100%;
    justify-content: center;
    padding: 16px;
    font-size: 1rem;
}

/* ========== Loader ========== */
.loader-wrapper {
    position: fixed;
    inset: 0;
    background: linear-gradient(135deg, var(--secondary) 0%, #0b1a3d 50%, #1a0f3d 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    transition: opacity 0.6s, visibility 0.6s;
    overflow: hidden;
}

.loader-wrapper.hide {
    opacity: 0;
    visibility: hidden;
}

.loader-bg-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.45;
    animation: floatShape 8s ease-in-out infinite;
}

.loader-bg-shape.shape-a {
    width: 320px;
    height: 320px;
    background: var(--primary);
    top: 15%;
    left: 12%;
}

.loader-bg-shape.shape-b {
    width: 380px;
    height: 380px;
    background: var(--primary-light);
    bottom: 10%;
    right: 10%;
    animation-delay: 2s;
}

@keyframes floatShape {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -40px) scale(1.1); }
}

.loader {
    text-align: center;
    position: relative;
    z-index: 2;
}

.loader-logo-wrap {
    display: inline-block;
    background: var(--white);
    padding: 18px 26px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.08);
    margin-bottom: 28px;
    animation: logoFloat 3s ease-in-out infinite;
}

.loader-logo {
    height: 130px;
    width: auto;
    display: block;
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0); box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.08); }
    50% { transform: translateY(-10px); box-shadow: 0 30px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.12); }
}

.loader-text {
    color: var(--white);
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.loader-text span {
    color: var(--primary-light);
}

.loader-tagline {
    color: rgba(255,255,255,0.65);
    font-size: 0.95rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 28px;
}

.loader-dots {
    display: inline-flex;
    gap: 10px;
}

.loader-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--primary-light);
    animation: bounceDot 1.2s ease-in-out infinite;
}

.loader-dots span:nth-child(2) { animation-delay: 0.2s; }
.loader-dots span:nth-child(3) { animation-delay: 0.4s; }

@keyframes bounceDot {
    0%, 80%, 100% { transform: scale(0.6); opacity: 0.5; }
    40% { transform: scale(1.2); opacity: 1; }
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* ========== Custom Cursor ========== */
.cursor, .cursor-follower {
    position: fixed;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.1s;
}

.cursor {
    width: 8px;
    height: 8px;
    background: var(--primary);
    transform: translate(-50%, -50%);
}

.cursor-follower {
    width: 40px;
    height: 40px;
    border: 2px solid var(--primary);
    transform: translate(-50%, -50%);
    transition: transform 0.3s, width 0.3s, height 0.3s;
}

.cursor-follower.active {
    width: 60px;
    height: 60px;
    background: rgba(30, 136, 229, 0.1);
}

@media (max-width: 968px) {
    .cursor, .cursor-follower { display: none; }
}

/* ========== Navbar ========== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(10, 37, 64, 0.06);
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    padding: 10px 0;
    box-shadow: 0 4px 24px rgba(10, 37, 64, 0.08);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
}

.nav-logo .logo-img {
    height: 80px;
    width: auto;
    display: block;
    transition: var(--transition);
}

.navbar.scrolled .nav-logo .logo-img {
    height: 70px;
}

.nav-logo .logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--secondary);
}

.logo-accent {
    color: var(--primary);
}

.navbar:not(.scrolled) .nav-logo .logo-text {
    color: var(--secondary);
}

.nav-menu {
    display: flex;
    gap: 36px;
}

.nav-link {
    font-weight: 500;
    color: var(--dark);
    position: relative;
    transition: var(--transition);
}

.navbar:not(.scrolled) .nav-link {
    color: var(--dark);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

.nav-btn {
    padding: 10px 24px;
    background: var(--gradient);
    color: var(--white);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    box-shadow: var(--shadow-blue);
}

.nav-btn:hover {
    transform: translateY(-2px);
    color: var(--white);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--dark);
    transition: var(--transition);
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* ========== Hero Section ========== */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #0a2540 0%, #1e3a5f 50%, #0d47a1 100%);
    position: relative;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    animation: float 8s ease-in-out infinite;
}

.shape-1 {
    width: 500px;
    height: 500px;
    background: var(--primary);
    top: -200px;
    right: -100px;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: var(--primary-light);
    bottom: -150px;
    left: -100px;
    animation-delay: 2s;
}

.shape-3 {
    width: 300px;
    height: 300px;
    background: #00bcd4;
    top: 40%;
    left: 40%;
    animation-delay: 4s;
    opacity: 0.3;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -30px) scale(1.05); }
}

.hero-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50px;
    color: var(--accent);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 24px;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    color: var(--white);
    margin-bottom: 24px;
    line-height: 1.1;
}

.hero-title .gradient-text {
    background: linear-gradient(135deg, #64b5f6 0%, #ffc107 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 36px;
    max-width: 540px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.hero-buttons .btn-outline {
    color: var(--white);
    border-color: rgba(255,255,255,0.4);
}

.hero-buttons .btn-outline:hover {
    background: var(--white);
    color: var(--primary);
}

.hero-stats {
    display: flex;
    gap: 40px;
}

.stat-item h3 {
    font-size: 2.5rem;
    color: var(--white);
    font-weight: 800;
    margin-bottom: 4px;
}

.stat-item h3::after {
    content: '+';
    color: var(--accent);
}

.stat-item p {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
}

.hero-image-wrapper {
    position: relative;
    animation: floatUp 6s ease-in-out infinite;
}

@keyframes floatUp {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.hero-image-wrapper img {
    width: 100%;
    border-radius: 30px;
    box-shadow: var(--shadow-lg);
    transform: rotate(-3deg);
}

.floating-card {
    position: absolute;
    background: var(--white);
    padding: 16px 20px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 12px;
    animation: floatCard 4s ease-in-out infinite;
}

.floating-card i {
    width: 44px;
    height: 44px;
    background: var(--gradient);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 1.1rem;
}

.floating-card h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--dark);
}

.floating-card p {
    font-size: 0.8rem;
    color: var(--gray);
}

.card-1 {
    top: 10%;
    left: -20px;
    animation-delay: 0s;
}

.card-2 {
    top: 50%;
    right: -30px;
    animation-delay: 1.5s;
}

.card-3 {
    bottom: 5%;
    left: 10%;
    animation-delay: 3s;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(2deg); }
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.7);
    text-align: center;
    font-size: 0.85rem;
    animation: bounce 2s infinite;
}

.mouse {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255,255,255,0.5);
    border-radius: 15px;
    margin: 10px auto 0;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--white);
    border-radius: 4px;
    position: absolute;
    left: 50%;
    top: 8px;
    transform: translateX(-50%);
    animation: wheel 1.5s infinite;
}

@keyframes wheel {
    0% { top: 8px; opacity: 1; }
    100% { top: 20px; opacity: 0; }
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

/* ========== About Section ========== */
.about {
    padding: 120px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image .image-wrapper {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 30px;
    box-shadow: var(--shadow-lg);
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--gradient);
    color: var(--white);
    padding: 30px 40px;
    border-radius: 24px;
    box-shadow: var(--shadow-blue);
    text-align: center;
    animation: pulse-shadow 2s infinite;
}

@keyframes pulse-shadow {
    0%, 100% { box-shadow: var(--shadow-blue); }
    50% { box-shadow: 0 20px 60px rgba(30, 136, 229, 0.5); }
}

.experience-badge h3 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
}

.experience-badge p {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

.about-content .section-title {
    text-align: left;
    margin-bottom: 12px;
}

.about-content .section-subtitle {
    text-align: left;
    margin: 0 0 24px 0;
}

.about-text {
    color: var(--gray);
    margin-bottom: 32px;
    font-size: 1.05rem;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 36px;
}

.feature-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: rgba(30, 136, 229, 0.1);
    color: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    transition: var(--transition);
}

.feature-item:hover .feature-icon {
    background: var(--gradient);
    color: var(--white);
    transform: rotate(-10deg);
}

.feature-item h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.feature-item p {
    font-size: 0.9rem;
    color: var(--gray);
}

/* ========== Services Section ========== */
.services {
    padding: 120px 0;
    background: var(--light-gray);
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 40px 32px;
    border-radius: 24px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

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

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-lg);
}

.service-card.featured {
    background: var(--gradient);
    color: var(--white);
    transform: scale(1.03);
}

.service-card.featured h3,
.service-card.featured p {
    color: var(--white);
}

.service-card.featured .service-icon {
    background: rgba(255,255,255,0.2);
    color: var(--white);
}

.service-card.featured .service-link {
    color: var(--accent);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent);
    color: var(--dark);
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.service-icon {
    width: 70px;
    height: 70px;
    background: rgba(30, 136, 229, 0.1);
    color: var(--primary);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 24px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    transform: rotateY(180deg);
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: var(--secondary);
}

.service-card p {
    color: var(--gray);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.service-link {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

.service-link:hover {
    gap: 12px;
}

/* ========== Booking Section ========== */
.booking {
    padding: 120px 0;
    background: linear-gradient(180deg, #fff 0%, #f5f8ff 100%);
}

.service-type {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto 60px;
}

.service-option {
    background: var(--white);
    padding: 40px;
    border-radius: 24px;
    text-align: center;
    border: 2px solid #e5e7eb;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.service-option:hover,
.service-option.active {
    border-color: var(--primary);
    transform: translateY(-8px);
    box-shadow: var(--shadow-blue);
}

.service-option.active {
    background: var(--gradient);
    color: var(--white);
}

.service-option.active h3,
.service-option.active p,
.service-option.active li {
    color: var(--white);
}

.service-option.active .option-icon {
    background: rgba(255,255,255,0.2);
    color: var(--white);
}

.service-option.active .btn-primary,
.service-option.active .btn-outline {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
}

.option-icon {
    width: 90px;
    height: 90px;
    background: rgba(30, 136, 229, 0.1);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.service-option h3 {
    font-size: 1.6rem;
    margin-bottom: 8px;
    color: var(--secondary);
}

.service-option p {
    color: var(--gray);
    margin-bottom: 20px;
}

.service-option ul {
    text-align: left;
    margin-bottom: 24px;
}

.service-option ul li {
    padding: 8px 0;
    color: var(--gray);
    font-size: 0.95rem;
}

.service-option ul li i {
    color: var(--primary);
    margin-right: 8px;
}

.service-option.active ul li i {
    color: var(--accent);
}

.booking-form-wrapper {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    padding: 50px;
    border-radius: 24px;
    box-shadow: var(--shadow-md);
}

.selected-service {
    background: rgba(30, 136, 229, 0.05);
    padding: 16px 24px;
    border-radius: 12px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-left: 4px solid var(--primary);
}

.selected-service span {
    color: var(--gray);
    font-size: 0.9rem;
}

.selected-service strong {
    color: var(--primary);
    flex: 1;
}

.change-btn {
    background: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
    padding: 6px 16px;
    border-radius: 50px;
    cursor: pointer;
    font-size: 0.85rem;
    transition: var(--transition);
}

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

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 30px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--secondary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-group label i {
    color: var(--primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 18px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    transition: var(--transition);
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(30, 136, 229, 0.1);
}

.form-group textarea {
    resize: vertical;
}

.success-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    backdrop-filter: blur(8px);
}

.success-modal.show {
    display: flex;
    animation: fadeIn 0.3s;
}

.success-content {
    background: var(--white);
    padding: 50px 40px;
    border-radius: 24px;
    text-align: center;
    max-width: 450px;
    width: 90%;
    animation: slideUp 0.4s;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { transform: translateY(50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.success-icon i {
    font-size: 5rem;
    color: #10b981;
    margin-bottom: 20px;
    animation: scaleIn 0.6s;
}

@keyframes scaleIn {
    from { transform: scale(0); }
    to { transform: scale(1); }
}

.success-content h3 {
    font-size: 1.8rem;
    color: var(--secondary);
    margin-bottom: 12px;
}

.success-content p {
    color: var(--gray);
    margin-bottom: 24px;
}

/* ========== Why Us Section ========== */
.why-us {
    padding: 120px 0;
    background: var(--secondary);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.why-us::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(30, 136, 229, 0.2) 0%, transparent 70%);
    transform: translate(-50%, -50%);
}

.why-us .section-title {
    color: var(--white);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    position: relative;
}

.why-card {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 40px 30px;
    border-radius: 20px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.why-card:hover {
    transform: translateY(-10px);
    background: var(--gradient);
    border-color: transparent;
}

.why-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 3rem;
    font-weight: 900;
    color: rgba(255,255,255,0.05);
    font-family: 'Playfair Display', serif;
    transition: var(--transition);
}

.why-card:hover .why-number {
    color: rgba(255,255,255,0.15);
}

.why-card i {
    font-size: 2.5rem;
    color: var(--primary-light);
    margin-bottom: 20px;
    transition: var(--transition);
}

.why-card:hover i {
    color: var(--white);
    transform: scale(1.1);
}

.why-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.why-card p {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
}

/* ========== Testimonials ========== */
.testimonials {
    padding: 120px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--white);
    padding: 40px 32px;
    border-radius: 24px;
    box-shadow: var(--shadow-sm);
    position: relative;
    transition: var(--transition);
    border: 1px solid #f0f0f0;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.quote-icon {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 3rem;
    color: rgba(30, 136, 229, 0.1);
}

.testimonial-card p {
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.testimonial-author img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary);
}

.testimonial-author h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    margin-bottom: 2px;
}

.testimonial-author span {
    font-size: 0.85rem;
    color: var(--gray);
}

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

/* ========== Contact Section ========== */
.contact {
    padding: 120px 0;
    background: var(--light-gray);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-card {
    background: var(--white);
    padding: 24px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.contact-card:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
}

.contact-icon {
    width: 56px;
    height: 56px;
    background: var(--gradient);
    color: var(--white);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.contact-card h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    margin-bottom: 4px;
}

.contact-card p {
    color: var(--gray);
    font-size: 0.95rem;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 10px;
}

.social-links a {
    width: 44px;
    height: 44px;
    background: var(--white);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.social-links a:hover {
    background: var(--gradient);
    color: var(--white);
    transform: translateY(-4px) rotate(360deg);
}

.contact-map {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.contact-map img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.map-overlay {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    padding: 24px;
    border-radius: 16px;
}

.map-overlay h3 {
    color: var(--secondary);
    font-size: 1.3rem;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.map-overlay h3 i {
    color: var(--primary);
}

.map-overlay p {
    color: var(--gray);
    font-size: 0.95rem;
}

/* ========== Footer ========== */
.footer {
    background: var(--dark);
    color: rgba(255,255,255,0.7);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 20px;
    background: var(--white);
    padding: 12px 18px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}

.footer-logo-img {
    height: 90px;
    width: auto;
    display: block;
}

.footer-logo span {
    color: var(--primary-light);
}

.footer-col p {
    margin-bottom: 20px;
    line-height: 1.7;
}

.footer-col h4 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a,
.contact-list li {
    color: rgba(255,255,255,0.6);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-col ul li a:hover {
    color: var(--primary-light);
    transform: translateX(5px);
}

.contact-list li i {
    color: var(--primary-light);
}

.footer-bottom {
    text-align: center;
    padding: 24px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.9rem;
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: center;
}

.footer-bottom i {
    color: #ef4444;
    margin: 0 4px;
}

.footer-credit a {
    color: var(--primary-light);
    font-weight: 600;
    margin-left: 4px;
    position: relative;
    transition: var(--transition);
}

.footer-credit a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background: var(--primary-light);
    transition: width 0.3s ease;
}

.footer-credit a:hover {
    color: var(--white);
}

.footer-credit a:hover::after {
    width: 100%;
}

/* ========== Back to Top ========== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-blue);
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    z-index: 100;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-5px);
}

/* ========== Responsive ========== */
@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        top: 100px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 32px;
        gap: 22px;
        transform: translateY(-150%);
        transition: var(--transition);
        box-shadow: 0 10px 30px rgba(10, 37, 64, 0.08);
        border-top: 1px solid rgba(10, 37, 64, 0.06);
    }

    .nav-menu.active {
        transform: translateY(0);
    }

    .nav-menu .nav-link {
        color: var(--dark) !important;
    }

    .nav-btn {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero-container,
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 24px;
    }

    .stat-item h3 {
        font-size: 2rem;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .service-type {
        grid-template-columns: 1fr;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .booking-form-wrapper {
        padding: 30px 20px;
    }

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

    .experience-badge {
        right: 0;
        bottom: -20px;
        padding: 20px 28px;
    }

    .experience-badge h3 {
        font-size: 2rem;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .floating-card {
        padding: 10px 14px;
    }

    .floating-card i {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }

    .floating-card h4 {
        font-size: 0.85rem;
    }

    .floating-card p {
        font-size: 0.7rem;
    }
}

/* ============================================================
   ===========   POLISH & DESIGN REFINEMENT   =================
   ============================================================ */

/* Body subtle pattern */
body {
    background:
        radial-gradient(at 0% 0%, rgba(30, 136, 229, 0.04) 0px, transparent 50%),
        radial-gradient(at 100% 100%, rgba(100, 181, 246, 0.05) 0px, transparent 50%),
        #fafbff;
    background-attachment: fixed;
}

/* Section pad polish */
section { padding: 110px 0; }
@media (max-width: 768px) { section { padding: 70px 0; } }

/* Nav links — subtle underline on hover */
.nav-link {
    padding: 8px 4px;
    transition: color 0.3s ease;
}
.nav-link:hover { color: var(--primary-dark); }
.nav-link.active { color: var(--primary); }
.nav-link::after {
    height: 2px;
    background: var(--gradient);
    border-radius: 99px;
    bottom: 2px;
    transition: width 0.35s cubic-bezier(0.65, 0, 0.35, 1);
}

/* Nav button — modern lift */
.nav-btn {
    padding: 12px 26px;
    background: var(--secondary);
    box-shadow: 0 6px 20px rgba(10, 37, 64, 0.18);
}
.nav-btn:hover {
    background: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 10px 26px rgba(30, 136, 229, 0.35);
}

/* Logo image — sharper on white navbar */
.nav-logo .logo-img {
    height: 72px;
    filter: drop-shadow(0 2px 4px rgba(10, 37, 64, 0.08));
}
.navbar.scrolled .nav-logo .logo-img { height: 60px; }

/* Buttons — refined */
.btn {
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 0.3px;
    transition: transform 0.4s cubic-bezier(0.65, 0, 0.35, 1), box-shadow 0.4s, background 0.3s;
    position: relative;
    overflow: hidden;
}
.btn-primary {
    background: var(--gradient);
    color: var(--white);
    box-shadow: 0 8px 22px rgba(30, 136, 229, 0.32);
}
.btn-primary::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.4), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}
.btn-primary:hover::before { transform: translateX(100%); }
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 32px rgba(30, 136, 229, 0.45);
}
.btn-outline {
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
}
.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(30, 136, 229, 0.32);
}

/* Section tag pill */
.section-tag {
    display: inline-flex;
    align-items: center;
    padding: 7px 18px;
    background: linear-gradient(135deg, rgba(30,136,229,0.08), rgba(100,181,246,0.04));
    color: var(--primary-dark);
    border: 1px solid rgba(30,136,229,0.15);
    border-radius: 99px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

/* Service cards — premium feel */
.service-card {
    background: var(--white);
    border: 1px solid rgba(10, 37, 64, 0.06);
    border-radius: 20px;
    padding: 36px 30px;
    transition: transform 0.5s cubic-bezier(0.65, 0, 0.35, 1), box-shadow 0.5s, border-color 0.4s;
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.65, 0, 0.35, 1);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(30, 136, 229, 0.25);
    box-shadow: 0 24px 50px rgba(30, 136, 229, 0.14);
}
.service-card .service-icon {
    transition: transform 0.6s cubic-bezier(0.65, 0, 0.35, 1);
}
.service-card:hover .service-icon {
    transform: scale(1.1) rotate(-6deg);
}

/* Why cards — glass on dark bg */
.why-card {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 36px 28px;
    transition: transform 0.5s cubic-bezier(0.65, 0, 0.35, 1), background 0.4s, border-color 0.4s;
}
.why-card:hover {
    transform: translateY(-8px);
    background: rgba(30, 136, 229, 0.12);
    border-color: rgba(100, 181, 246, 0.4);
}

/* Testimonial cards */
.testimonial-card {
    background: var(--white);
    border: 1px solid rgba(10, 37, 64, 0.06);
    border-radius: 20px;
    padding: 34px 30px;
    transition: transform 0.5s cubic-bezier(0.65, 0, 0.35, 1), box-shadow 0.5s;
}
.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 50px rgba(30, 136, 229, 0.14);
}

/* Contact cards row spacing & polish */
.contact-card {
    border: 1px solid rgba(10, 37, 64, 0.06);
    border-radius: 16px;
    transition: transform 0.4s cubic-bezier(0.65, 0, 0.35, 1), border-color 0.3s, box-shadow 0.4s;
}
.contact-card:hover {
    border-color: rgba(30, 136, 229, 0.2);
    transform: translateX(6px);
    box-shadow: 0 12px 28px rgba(30, 136, 229, 0.08);
}

/* Booking form polish */
.booking-form-wrapper {
    border-radius: 24px;
    border: 1px solid rgba(10, 37, 64, 0.06);
    box-shadow: 0 20px 50px rgba(10, 37, 64, 0.06);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary) !important;
    box-shadow: 0 0 0 4px rgba(30, 136, 229, 0.12) !important;
}

/* Service options polish */
.service-option {
    border-radius: 20px;
    border: 2px solid rgba(10, 37, 64, 0.08);
    transition: transform 0.4s cubic-bezier(0.65, 0, 0.35, 1), border-color 0.4s, box-shadow 0.4s;
}
.service-option:hover {
    border-color: rgba(30, 136, 229, 0.3);
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(30, 136, 229, 0.12);
}
.service-option.active {
    border-color: var(--primary) !important;
    box-shadow: 0 14px 36px rgba(30, 136, 229, 0.2);
}

/* Back-to-top polish */
.back-to-top {
    background: var(--secondary);
    box-shadow: 0 10px 24px rgba(10, 37, 64, 0.25);
}
.back-to-top:hover {
    background: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 14px 30px rgba(30, 136, 229, 0.4);
}

/* ============================================================
   ===========   MOBILE HORIZONTAL SCROLL FIX   ===============
   ============================================================ */

html, body {
    overflow-x: hidden !important;
    max-width: 100vw;
    width: 100%;
}

/* Some absolute decorations were causing overflow on small screens */
@media (max-width: 768px) {
    /* Floating decorative cards on hero — clip overflow that pokes past viewport */
    .hero-image-wrapper { overflow: hidden; border-radius: 24px; }
    .card-2 { right: 0 !important; }
    .card-1 { left: 0 !important; }

    /* Footer credit/links sometimes overflow */
    .footer-bottom { word-break: break-word; }
    .footer-credit a, .contact-list li { word-break: break-word; }

    /* Make sure images respect viewport */
    img { max-width: 100%; height: auto; }
    .container { max-width: 100%; }

    /* Hero shapes confined */
    .hero-shape { max-width: 80vw; max-height: 80vw; }

    /* Drop fixed bg-attachment on mobile (iOS Safari quirks) */
    body { background-attachment: scroll !important; }

    /* ============ FORM / INPUTS ============ */
    .form-group { min-width: 0; }
    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        padding: 12px 14px;
        font-size: 16px; /* prevent iOS zoom on focus */
    }
    .form-grid { gap: 16px; }
    .booking-form-wrapper {
        padding: 24px 16px !important;
        border-radius: 18px;
    }
    .selected-service {
        flex-wrap: wrap;
        gap: 8px;
    }

    /* ============ CONTAINER & SECTIONS ============ */
    .container { padding: 0 16px; }
    section { padding: 56px 0; }

    /* ============ HERO ============ */
    .hero { padding: 110px 0 50px; }
    .hero-container {
        padding: 0 16px;
        gap: 36px !important;
    }
    .hero-title { font-size: clamp(2rem, 8vw, 2.6rem); }
    .hero-description { font-size: 0.95rem; }
    .hero-image-wrapper img { width: 100%; height: auto; }

    /* ============ CARDS ============ */
    .service-card,
    .why-card,
    .testimonial-card,
    .contact-card,
    .service-option {
        padding: 24px 20px !important;
        border-radius: 16px;
    }
    .service-card h3,
    .why-card h3,
    .service-option h3 { font-size: 1.1rem; }

    /* ============ GRIDS ============ */
    .services-grid,
    .why-grid,
    .testimonials-grid,
    .about-features {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }
    .service-type { grid-template-columns: 1fr !important; gap: 14px; }

    /* ============ ABOUT IMAGE ============ */
    .about-image .image-wrapper { border-radius: 16px; }
    .experience-badge {
        padding: 14px 20px;
        bottom: -16px;
        right: 12px;
    }

    /* ============ FOOTER ============ */
    .footer { padding: 56px 0 0; }
    .footer-grid {
        grid-template-columns: 1fr !important;
        gap: 30px;
        margin-bottom: 30px;
    }
    .footer-logo-img { height: 70px; }
    .footer-bottom-wrap,
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 6px;
    }
    .contact-list li,
    .footer-credit { font-size: 0.85rem; }

    /* ============ NAVBAR (mobile) ============ */
    .nav-container { padding: 0 16px; }
    .nav-logo .logo-img { height: 56px !important; }
    .navbar.scrolled .nav-logo .logo-img { height: 48px !important; }
    .nav-menu {
        top: 80px !important;
    }

    /* ============ CONTACT SECTION ============ */
    .contact-grid { gap: 28px; }
    .contact-map img { width: 100%; }
    .map-overlay {
        padding: 18px;
        font-size: 0.85rem;
    }
    .map-overlay h3 { font-size: 1rem; }

    /* ============ BOOKING BUTTONS ============ */
    .btn { padding: 12px 22px; font-size: 0.9rem; }
    .btn-block { padding: 16px; }
    .hero-buttons { flex-direction: column; }
    .hero-buttons .btn { width: 100%; justify-content: center; }
}

/* Ultra-small phones */
@media (max-width: 400px) {
    .container { padding: 0 12px; }
    .nav-logo .logo-img { height: 48px !important; }
    .navbar { padding: 12px 0; }
    .nav-menu { top: 70px !important; }
    .booking-form-wrapper { padding: 20px 14px !important; }
    .form-group label { font-size: 0.82rem; }
    .hero-stats { gap: 18px !important; }
    .stat-item h3 { font-size: 1.6rem !important; }
}
