@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Space+Grotesk:wght@400;500;600;700&display=swap');

:root {
    --primary-green: #004d26;
    --dark-green: #001a0d;
    --light-green: #006633;
    --bright-green: #00cc66;
    --accent-gold: #ffd700;
    --accent-gold-hover: #ffed4e;
    --text-light: #ffffff;
    --text-muted: #a8d5ba;
    --text-dark: #001a0d;
    --card-bg: rgba(0, 102, 51, 0.15);
    --card-hover: rgba(0, 204, 102, 0.25);
    --gradient-primary: linear-gradient(135deg, #001a0d 0%, #004d26 25%, #006633 50%, #008844 75%, #00aa55 100%);
    --gradient-card: linear-gradient(135deg, rgba(0, 102, 51, 0.2) 0%, rgba(0, 77, 38, 0.3) 100%);
    --gradient-gold: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.15);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.2);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.3);
    --shadow-xl: 0 24px 64px rgba(0, 0, 0, 0.4);
    --shadow-glow: 0 0 40px rgba(255, 215, 0, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-light);
    background: var(--primary-green);
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(0, 204, 102, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 215, 0, 0.05) 0%, transparent 50%),
        linear-gradient(180deg, #001a0d 0%, #004d26 100%);
    background-attachment: fixed;
    line-height: 1.8;
    padding-top: 90px;
    font-size: 1.05rem;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* Modern Glassmorphism Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 6%;
    background: rgba(0, 95, 65, 0.95);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    position: fixed;
    width: 100%;
    z-index: 1000;
    top: 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

header.scrolled {
    padding: 0.9rem 6%;
    background: #005f41;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}

header img {
    height: 55px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 4px 8px rgba(255, 215, 0, 0.2));
}

header img:hover {
    transform: scale(1.08) rotate(2deg);
    filter: drop-shadow(0 6px 12px rgba(255, 215, 0, 0.4));
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: 2px solid var(--accent-gold);
    color: var(--accent-gold);
    padding: 0.5rem;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.5rem;
    width: 45px;
    height: 45px;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.mobile-menu-toggle:hover {
    background: rgba(255, 215, 0, 0.1);
}

.mobile-menu-toggle.active {
    background: var(--accent-gold);
    color: var(--text-dark);
}

nav {
    position: relative;
}

nav ul {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2.5rem;
    margin: 0;
    padding: 0;
}

nav ul li a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 0.6rem 0;
    text-transform: uppercase;
    font-size: 0.85rem;
    white-space: nowrap;
}

nav ul li a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--gradient-gold);
    border-radius: 2px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

nav ul li a:hover {
    color: var(--accent-gold);
    transform: translateY(-2px);
}

nav ul li a:hover::before {
    width: 100%;
}

.btn-nav {
    padding: 0.75rem 2rem;
    background: var(--gradient-gold);
    color: var(--text-dark);
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 16px rgba(255, 215, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-nav:hover {
    background: linear-gradient(135deg, #ffed4e 0%, #ffd700 100%);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 24px rgba(255, 215, 0, 0.5);
}

/* Hero Section - Voluminous and Modern */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: var(--gradient-primary);
    padding: 8rem 5% 6rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle at 30% 30%, rgba(255, 215, 0, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(0, 204, 102, 0.1) 0%, transparent 50%);
    animation: rotate 20s linear infinite;
    pointer-events: none;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero > * {
    position: relative;
    z-index: 1;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 1rem;
    width: 100%;
}

.hero img {
    max-width: 220px;
    margin-bottom: 2.5rem;
    filter: drop-shadow(0 12px 32px rgba(0, 0, 0, 0.4));
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(2deg); }
}

.hero h1 {
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, var(--accent-gold) 50%, #ffffff 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.03em;
    line-height: 1.1;
    animation: shimmer 3s linear infinite;
    text-shadow: 0 0 40px rgba(255, 215, 0, 0.3);
}

@keyframes shimmer {
    to { background-position: 200% center; }
}

.hero p {
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    margin-bottom: 3rem;
    color: var(--text-light);
    max-width: 750px;
    font-weight: 400;
    line-height: 1.6;
    opacity: 0.95;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* Buttons - Premium Design */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    background: var(--gradient-gold);
    color: var(--text-dark);
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    font-size: 1.05rem;
    box-shadow: 0 8px 24px rgba(255, 215, 0, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn:hover {
    background: linear-gradient(135deg, #ffed4e 0%, #ffd700 100%);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 32px rgba(255, 215, 0, 0.6);
}

.btn-secondary {
    background: transparent;
    color: var(--accent-gold);
    border: 2px solid var(--accent-gold);
    box-shadow: 0 8px 24px rgba(255, 215, 0, 0.2);
}

.btn-secondary:hover {
    background: var(--accent-gold);
    color: var(--text-dark);
    box-shadow: 0 12px 32px rgba(255, 215, 0, 0.5);
}

/* Sections - Spacious and Modern */
section {
    padding: 8rem 5%;
    position: relative;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.page-header {
    padding: 10rem 5% 5rem;
    text-align: center;
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.page-header h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #ffffff 0%, var(--accent-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Typography - Enhanced */
h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    text-align: center;
    background: linear-gradient(135deg, #ffffff 0%, var(--accent-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

h3 {
    font-size: clamp(1.5rem, 2.5vw, 2.25rem);
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

/* Stats Section - Premium Cards */
.stats-section {
    background: rgba(0, 26, 13, 0.6);
    backdrop-filter: blur(20px) saturate(180%);
    border-radius: 32px;
    padding: 4rem 3rem;
    margin: 4rem auto;
    max-width: 1300px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    box-shadow: var(--shadow-xl);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 3rem;
    text-align: center;
}

.stat-item {
    padding: 2rem;
    background: rgba(0, 102, 51, 0.2);
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.stat-item:hover {
    transform: translateY(-8px);
    background: rgba(0, 102, 51, 0.3);
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: var(--shadow-lg);
}

.stat-number {
    font-size: 4rem;
    font-weight: 900;
    color: var(--accent-gold);
    display: block;
    margin-bottom: 0.75rem;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
    line-height: 1;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Services Grid - Premium Cards */
.services {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-top: 4rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.card {
    background: rgba(0, 26, 13, 0.7);
    backdrop-filter: blur(20px) saturate(180%);
    padding: 3.5rem;
    border-radius: 28px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 215, 0, 0.15);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.8s;
}

.card:hover::before {
    left: 100%;
}

.card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: var(--shadow-xl), var(--shadow-glow);
    border-color: rgba(255, 215, 0, 0.4);
    background: rgba(0, 26, 13, 0.85);
}

.card-icon {
    font-size: 4.5rem;
    margin-bottom: 2rem;
    color: var(--accent-gold);
    display: block;
    filter: drop-shadow(0 4px 12px rgba(255, 215, 0, 0.4));
    transition: all 0.4s;
}

.card:hover .card-icon {
    transform: scale(1.15) rotate(5deg);
    filter: drop-shadow(0 8px 20px rgba(255, 215, 0, 0.6));
}

.card h3 {
    margin-bottom: 1.5rem;
    color: var(--text-light);
    font-size: 1.75rem;
}

.card p {
    color: var(--text-muted);
    line-height: 1.9;
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.card .btn {
    padding: 1rem 2rem;
    font-size: 0.95rem;
}

/* About Section */
.about-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.about-text {
    background: rgba(0, 26, 13, 0.6);
    backdrop-filter: blur(20px);
    padding: 4rem;
    border-radius: 32px;
    margin: 3rem 0;
    border: 1px solid rgba(255, 215, 0, 0.15);
    box-shadow: var(--shadow-lg);
}

.about-text h3 {
    color: var(--accent-gold);
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
    font-size: 1.75rem;
}

.about-text p {
    color: var(--text-light);
    line-height: 2;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* Founders Section */
.founders-section {
    background: var(--gradient-primary);
    padding: 8rem 5%;
    position: relative;
    overflow: hidden;
}

.founders-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 204, 102, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.founders-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    max-width: 1300px;
    margin: 4rem auto 0;
    position: relative;
    z-index: 1;
}

.founder-card {
    background: rgba(0, 26, 13, 0.8);
    backdrop-filter: blur(20px);
    border-radius: 28px;
    padding: 3.5rem;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 215, 0, 0.2);
    box-shadow: var(--shadow-lg);
}

.founder-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: var(--shadow-xl), var(--shadow-glow);
    border-color: rgba(255, 215, 0, 0.4);
    background: rgba(0, 26, 13, 0.9);
}

.founder-card img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    margin: 0 auto 2rem;
    object-fit: cover;
    border: 5px solid var(--accent-gold);
    box-shadow: 0 8px 32px rgba(255, 215, 0, 0.4);
    transition: all 0.4s;
}

.founder-card:hover img {
    transform: scale(1.1);
    box-shadow: 0 12px 40px rgba(255, 215, 0, 0.6);
}

.founder-card h3 {
    margin-bottom: 0.75rem;
    color: var(--text-light);
    font-size: 1.5rem;
}

.founder-card .role {
    font-style: italic;
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
    font-weight: 600;
    font-size: 1.05rem;
}

.founder-card p {
    color: var(--text-muted);
    line-height: 1.9;
    font-size: 1.05rem;
}

/* Contact Form - Modern Design */
.contact form {
    max-width: 700px;
    margin: 3rem auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact input,
.contact textarea,
.booking-form input,
.booking-form select,
.booking-form textarea {
    padding: 1.25rem 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    font-size: 1.05rem;
    background: rgba(0, 26, 13, 0.6);
    backdrop-filter: blur(10px);
    color: var(--text-light);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: inherit;
}

.contact input::placeholder,
.contact textarea::placeholder {
    color: var(--text-muted);
}

.contact input:focus,
.contact textarea:focus,
.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
    background: rgba(0, 26, 13, 0.8);
    box-shadow: 0 0 0 4px rgba(255, 215, 0, 0.15), var(--shadow-md);
    transform: translateY(-2px);
}

.contact button {
    padding: 1.25rem 2.5rem;
    background: var(--gradient-gold);
    color: var(--text-dark);
    font-weight: 700;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1.05rem;
    box-shadow: 0 8px 24px rgba(255, 215, 0, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact button:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 32px rgba(255, 215, 0, 0.6);
}

/* Social Links */
.social {
    text-align: center;
    margin-top: 3rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.social a {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 26, 13, 0.6);
    backdrop-filter: blur(10px);
    color: var(--accent-gold);
    font-size: 1.75rem;
    text-decoration: none;
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(255, 215, 0, 0.2);
}

.social a:hover {
    background: var(--accent-gold);
    color: var(--text-dark);
    transform: translateY(-6px) rotate(5deg) scale(1.1);
    box-shadow: 0 12px 32px rgba(255, 215, 0, 0.5);
    border-color: var(--accent-gold);
}

/* Footer */
footer {
    background: rgba(0, 26, 13, 0.95);
    backdrop-filter: blur(20px);
    padding: 4rem 5%;
    text-align: center;
    margin-top: 6rem;
    border-top: 1px solid rgba(255, 215, 0, 0.15);
}

footer p {
    color: var(--text-muted);
    font-size: 1rem;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    width: 70px;
    height: 70px;
    bottom: 2.5rem;
    right: 2.5rem;
    background: linear-gradient(135deg, #25D366, #20ba5a);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    z-index: 100;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4); }
    50% { transform: scale(1.1); box-shadow: 0 12px 32px rgba(37, 211, 102, 0.6); }
}

.whatsapp-float:hover {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 16px 40px rgba(37, 211, 102, 0.6);
}

/* Alerts */
.alert {
    padding: 1.5rem 2rem;
    margin: 2rem 5%;
    border-radius: 16px;
    text-align: center;
    font-weight: 600;
    animation: slideDown 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1.05rem;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.alert-success {
    background: rgba(0, 102, 51, 0.8);
    backdrop-filter: blur(10px);
    color: var(--text-light);
    border: 2px solid var(--accent-gold);
    box-shadow: var(--shadow-md);
}

.alert-error {
    background: rgba(139, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    color: var(--text-light);
    border: 2px solid #ff4444;
    box-shadow: var(--shadow-md);
}

/* Booking Form */
.booking-section {
    padding: 5rem 5%;
}

.booking-form {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(0, 26, 13, 0.7);
    backdrop-filter: blur(20px);
    padding: 4rem;
    border-radius: 32px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    box-shadow: var(--shadow-xl);
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.75rem;
    font-weight: 600;
    color: var(--text-light);
    font-size: 1.05rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.error {
    color: #ff6b6b;
    font-size: 0.95rem;
    display: block;
    margin-top: 0.5rem;
    font-weight: 500;
}

/* Payment Section */
.payment-section {
    padding: 5rem 5%;
}

.payment-summary {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(0, 26, 13, 0.7);
    backdrop-filter: blur(20px);
    padding: 4rem;
    border-radius: 32px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    box-shadow: var(--shadow-xl);
}

.summary-details {
    background: rgba(0, 102, 51, 0.3);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 20px;
    margin-bottom: 2.5rem;
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.summary-details p {
    margin-bottom: 1.25rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    font-size: 1.1rem;
}

.summary-details p:last-child {
    border-bottom: none;
}

.summary-details .amount {
    font-size: 2.5rem;
    color: var(--accent-gold);
    font-weight: 900;
    margin-top: 1.5rem;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.btn-payment {
    width: 100%;
    padding: 1.5rem;
    font-size: 1.15rem;
    margin-top: 2rem;
}

/* Success Section */
.success-section {
    padding: 5rem 5%;
}

.success-message {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background: rgba(0, 26, 13, 0.7);
    backdrop-filter: blur(20px);
    padding: 5rem;
    border-radius: 32px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    box-shadow: var(--shadow-xl), var(--shadow-glow);
}

.success-message i {
    font-size: 6rem;
    color: var(--accent-gold);
    margin-bottom: 2rem;
    animation: scaleIn 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 8px 24px rgba(255, 215, 0, 0.5));
}

@keyframes scaleIn {
    from {
        transform: scale(0) rotate(-180deg);
        opacity: 0;
    }
    to {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
}

.booking-details {
    background: rgba(0, 102, 51, 0.3);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 20px;
    margin: 2.5rem 0;
    text-align: left;
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.booking-details h3 {
    margin-bottom: 2rem;
    text-align: center;
    color: var(--accent-gold);
    font-size: 1.75rem;
}

.booking-details p {
    margin-bottom: 1.25rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    font-size: 1.1rem;
}

.booking-details p:last-child {
    border-bottom: none;
}

.status-confirmed {
    color: var(--accent-gold);
    font-weight: 800;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.action-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 3rem;
    flex-wrap: wrap;
}

/* Map Container */
.map-container {
    max-width: 1300px;
    margin: 3rem auto;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border: none;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(255, 215, 0, 0.15);
    color: var(--accent-gold);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.section-header h2 {
    font-size: 2.75rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff 0%, var(--accent-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Why Choose Us Section */
.why-choose-section {
    padding: 8rem 5%;
    background: linear-gradient(180deg, rgba(0, 26, 13, 0.4) 0%, rgba(0, 77, 38, 0.2) 100%);
    position: relative;
    overflow: hidden;
}

.why-choose-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 4rem;
}

.feature-card {
    background: rgba(0, 102, 51, 0.2);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 215, 0, 0.15);
    border-radius: 24px;
    padding: 3rem 2.5rem;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    transition: left 0.6s;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(255, 215, 0, 0.4);
    box-shadow: 0 20px 60px rgba(255, 215, 0, 0.2);
    background: rgba(0, 102, 51, 0.3);
}

.feature-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-gold);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--text-dark);
    box-shadow: 0 8px 24px rgba(255, 215, 0, 0.3);
    transition: all 0.4s;
}

.feature-card:hover .feature-icon {
    transform: rotate(10deg) scale(1.1);
    box-shadow: 0 12px 32px rgba(255, 215, 0, 0.5);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--accent-gold);
}

.feature-card p {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 1rem;
}

/* Process Section */
.process-section {
    padding: 8rem 5%;
    background: rgba(0, 26, 13, 0.5);
    position: relative;
}

.process-steps {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 4rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.process-step {
    flex: 1;
    min-width: 220px;
    text-align: center;
    position: relative;
    background: rgba(0, 102, 51, 0.2);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 215, 0, 0.15);
    border-radius: 24px;
    padding: 3rem 2rem;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.process-step:hover {
    transform: translateY(-15px);
    border-color: rgba(255, 215, 0, 0.4);
    box-shadow: 0 24px 64px rgba(255, 215, 0, 0.25);
    background: rgba(0, 102, 51, 0.3);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.2rem;
    color: var(--text-dark);
    box-shadow: 0 4px 16px rgba(255, 215, 0, 0.4);
}

.step-icon {
    width: 80px;
    height: 80px;
    margin: 1.5rem auto;
    background: rgba(255, 215, 0, 0.15);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: var(--accent-gold);
    transition: all 0.4s;
}

.process-step:hover .step-icon {
    transform: scale(1.15) rotate(5deg);
    background: rgba(255, 215, 0, 0.25);
}

.process-step h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--accent-gold);
}

.process-step p {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 0.95rem;
}

.process-connector {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, rgba(255, 215, 0, 0.3), rgba(255, 215, 0, 0.1));
    position: relative;
    flex-shrink: 0;
}

.process-connector::after {
    content: '→';
    position: absolute;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--accent-gold);
    font-size: 1.5rem;
}

/* Testimonials Section */
.testimonials-section {
    padding: 8rem 5%;
    background: linear-gradient(180deg, rgba(0, 77, 38, 0.3) 0%, rgba(0, 26, 13, 0.4) 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 4rem;
}

.testimonial-card {
    background: rgba(0, 102, 51, 0.2);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 215, 0, 0.15);
    border-radius: 24px;
    padding: 2.5rem;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.testimonial-card::after {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 6rem;
    color: rgba(255, 215, 0, 0.2);
    font-family: serif;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 215, 0, 0.4);
    box-shadow: 0 20px 60px rgba(255, 215, 0, 0.2);
    background: rgba(0, 102, 51, 0.3);
}

.testimonial-rating {
    color: var(--accent-gold);
    font-size: 1rem;
    margin-bottom: 1.5rem;
    display: flex;
    gap: 0.25rem;
}

.testimonial-text {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 1.05rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 60px;
    height: 60px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--text-dark);
    flex-shrink: 0;
}

.author-info h4 {
    color: var(--accent-gold);
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.author-info span {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* CTA Section */
.cta-section {
    padding: 8rem 5%;
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 25s ease-in-out infinite;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, var(--accent-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-content p {
    font-size: 1.3rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta-primary {
    padding: 1.25rem 3rem;
    background: var(--gradient-gold);
    color: var(--text-dark);
    font-weight: 800;
    font-size: 1.1rem;
    border-radius: 50px;
    box-shadow: 0 8px 32px rgba(255, 215, 0, 0.4);
    transition: all 0.4s;
}

.btn-cta-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 16px 48px rgba(255, 215, 0, 0.6);
}

.btn-cta-secondary {
    padding: 1.25rem 3rem;
    background: transparent;
    color: var(--accent-gold);
    border: 2px solid var(--accent-gold);
    font-weight: 800;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: all 0.4s;
}

.btn-cta-secondary:hover {
    background: rgba(255, 215, 0, 0.1);
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(255, 215, 0, 0.3);
}

/* FAQ Section */
.faq-section {
    padding: 8rem 5%;
    background: rgba(0, 26, 13, 0.6);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.faq-item {
    background: rgba(0, 102, 51, 0.2);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 215, 0, 0.15);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.4s;
    cursor: pointer;
}

.faq-item:hover {
    border-color: rgba(255, 215, 0, 0.3);
    background: rgba(0, 102, 51, 0.3);
    transform: translateY(-5px);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.faq-question h3 {
    font-size: 1.2rem;
    color: var(--accent-gold);
    margin: 0;
    flex: 1;
}

.faq-question i {
    color: var(--accent-gold);
    font-size: 1.2rem;
    transition: transform 0.3s;
    flex-shrink: 0;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding-top: 0;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-top: 1.5rem;
}

.faq-answer p {
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 1rem;
}

/* Partners Section */
.partners-section {
    padding: 8rem 5%;
    background: linear-gradient(180deg, rgba(0, 77, 38, 0.2) 0%, rgba(0, 26, 13, 0.4) 100%);
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 2rem;
    margin-top: 4rem;
    align-items: center;
}

.partner-logo {
    background: rgba(0, 102, 51, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.4s;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.partner-logo:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 215, 0, 0.3);
    background: rgba(0, 102, 51, 0.25);
    box-shadow: 0 12px 32px rgba(255, 215, 0, 0.15);
}

.partner-logo i {
    font-size: 2.5rem;
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
}

.partner-logo span {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 600;
}

/* Location Section */
.location-section {
    padding: 8rem 5%;
    background: rgba(0, 77, 38, 0.3);
}

/* Responsive - Tablet */
@media (max-width: 1024px) {
    .services {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    section {
        padding: 6rem 4%;
    }
    
    .container {
        padding: 0 1.5rem;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .process-steps {
        flex-direction: column;
    }

    .process-connector {
        width: 3px;
        height: 40px;
        transform: rotate(90deg);
    }

    .process-connector::after {
        content: '↓';
        right: -8px;
        top: 50%;
    }

    .partners-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .cta-content h2 {
        font-size: 2.5rem;
    }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
    html {
        font-size: 14px;
    }

    body {
        padding-top: 60px;
        font-size: 0.95rem;
        line-height: 1.6;
    }

    /* Header Mobile */
    header {
        padding: 0.75rem 4%;
        flex-wrap: nowrap;
        align-items: center;
    }

    header > a {
        flex: 0 0 auto;
    }

    header img {
        height: 40px;
    }

    .mobile-menu-toggle {
        display: flex;
        flex: 0 0 auto;
        margin-left: auto;
    }

    nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #005f41;
        backdrop-filter: blur(20px);
        border-top: 1px solid rgba(255, 215, 0, 0.1);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    }

    nav.active {
        max-height: 600px;
    }

    nav ul {
        flex-direction: column;
        gap: 0;
        width: 100%;
        padding: 0.5rem 0;
        align-items: stretch;
    }

    nav ul li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 215, 0, 0.08);
    }

    nav ul li:last-child {
        border-bottom: none;
    }

    nav ul li a {
        display: block;
        padding: 1rem 4%;
        font-size: 0.9rem;
        text-align: left;
        width: 100%;
        text-transform: none;
        letter-spacing: 0;
    }

    nav ul li a::before {
        display: none;
    }

    nav ul li a:hover {
        background: rgba(255, 215, 0, 0.1);
        transform: none;
    }

    .btn-nav {
        padding: 0.85rem 1.5rem;
        font-size: 0.85rem;
        width: calc(100% - 8%);
        margin: 0.5rem 4%;
        text-align: center;
        border-radius: 12px;
    }

    /* Sections Mobile */
    section {
        padding: 3rem 4%;
    }

    .container {
        padding: 0;
        max-width: 100%;
    }

    /* Hero Mobile */
    .hero {
        padding: 4rem 4% 3rem;
        min-height: auto;
    }

    .hero img {
        max-width: 120px;
        margin-bottom: 1.5rem;
    }

    .hero h1 {
        font-size: 2rem;
        margin-bottom: 1rem;
        line-height: 1.2;
    }

    .hero p {
        font-size: 1rem;
        margin-bottom: 2rem;
        line-height: 1.6;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 100%;
    }

    /* Buttons Mobile */
    .btn {
        padding: 1rem 1.5rem;
        font-size: 0.9rem;
        width: 100%;
        max-width: 100%;
        border-radius: 12px;
    }

    /* Typography Mobile */
    h2 {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
        line-height: 1.3;
    }

    h3 {
        font-size: 1.35rem;
        margin-bottom: 0.75rem;
    }

    /* Services Mobile */
    .services {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .card {
        padding: 2rem 1.5rem;
        border-radius: 20px;
    }

    .card-icon {
        font-size: 3rem;
        margin-bottom: 1.25rem;
    }

    .card h3 {
        font-size: 1.35rem;
        margin-bottom: 1rem;
    }

    .card p {
        font-size: 0.95rem;
        line-height: 1.7;
        margin-bottom: 1.5rem;
    }

    .card .btn {
        padding: 0.85rem 1.5rem;
        font-size: 0.85rem;
    }

    /* Stats Mobile */
    .stats-section {
        padding: 2rem 1.5rem;
        margin: 2rem 4%;
        border-radius: 20px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }

    .stat-item {
        padding: 1.5rem 1rem;
    }

    .stat-number {
        font-size: 2.25rem;
        margin-bottom: 0.5rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    /* Page Header Mobile */
    .page-header {
        padding: 5rem 4% 2.5rem;
    }

    .page-header h1 {
        font-size: 1.75rem;
        line-height: 1.3;
    }

    .page-header p {
        font-size: 0.95rem;
        margin-top: 0.75rem;
    }

    /* About Mobile */
    .about-text {
        padding: 2rem 1.5rem;
        margin: 2rem 0;
        border-radius: 20px;
    }

    .about-text p {
        font-size: 0.95rem;
        line-height: 1.7;
        margin-bottom: 1.5rem;
    }

    .about-text > div {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }

    /* Founders Mobile */
    .founders-section {
        padding: 4rem 4%;
    }

    .founders-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 2rem;
    }

    .founder-card {
        padding: 2rem 1.5rem;
    }

    .founder-card img {
        width: 140px;
        height: 140px;
        margin-bottom: 1.5rem;
    }

    .founder-card h3 {
        font-size: 1.25rem;
    }

    .founder-card p {
        font-size: 0.95rem;
    }

    /* Contact Mobile */
    .contact form {
        gap: 1.25rem;
        margin: 2rem auto;
    }

    .contact input,
    .contact textarea {
        padding: 1rem 1.25rem;
        font-size: 0.95rem;
    }

    .contact button {
        padding: 1rem 1.5rem;
        font-size: 0.95rem;
    }

    /* Forms Mobile */
    .booking-form,
    .payment-summary {
        padding: 2rem 1.5rem;
        border-radius: 20px;
        margin: 0 4%;
    }

    .form-group {
        margin-bottom: 1.25rem;
    }

    .form-group label {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }

    .booking-form input,
    .booking-form select,
    .booking-form textarea {
        padding: 1rem 1.25rem;
        font-size: 0.95rem;
    }

    /* Payment Mobile */
    .summary-details {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .summary-details p {
        font-size: 0.95rem;
        margin-bottom: 1rem;
        padding-bottom: 1rem;
        flex-direction: column;
        gap: 0.25rem;
    }

    .summary-details p strong {
        margin-bottom: 0.25rem;
    }

    .summary-details .amount {
        font-size: 2rem;
        margin-top: 1rem;
    }

    /* Success Mobile */
    .success-message {
        padding: 2.5rem 1.5rem;
        border-radius: 20px;
    }

    .success-message i {
        font-size: 4rem;
        margin-bottom: 1.5rem;
    }

    .booking-details {
        padding: 1.5rem;
        margin: 1.5rem 0;
    }

    .booking-details h3 {
        font-size: 1.35rem;
        margin-bottom: 1.25rem;
    }

    .booking-details p {
        font-size: 0.95rem;
        flex-direction: column;
        gap: 0.25rem;
    }

    .action-buttons {
        flex-direction: column;
        gap: 1rem;
        margin-top: 2rem;
    }

    .action-buttons .btn {
        width: 100%;
    }

    /* Map Mobile */
    .map-container {
        margin: 2rem 4%;
        border-radius: 16px;
    }

    .map-container iframe {
        height: 280px;
    }

    /* Footer Mobile */
    footer {
        padding: 2.5rem 4%;
    }

    footer .container {
        max-width: 100%;
    }

    footer .container > div {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    footer h3 {
        font-size: 1.1rem;
    }

    footer p,
    footer li {
        font-size: 0.9rem;
    }

    .social {
        justify-content: center;
        gap: 1rem;
        margin-top: 1.5rem;
    }

    .social a {
        width: 48px;
        height: 48px;
        font-size: 1.4rem;
    }

    /* Alerts Mobile */
    .alert {
        margin: 1rem 4%;
        padding: 1rem 1.25rem;
        font-size: 0.9rem;
        border-radius: 12px;
    }

    /* WhatsApp Mobile */
    .whatsapp-float {
        width: 56px;
        height: 56px;
        bottom: 1.25rem;
        right: 1.25rem;
        font-size: 26px;
    }

    /* New Sections Mobile */
    .section-header h2 {
        font-size: 2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .feature-card {
        padding: 2rem 1.5rem;
    }

    .process-steps {
        flex-direction: column;
        gap: 2rem;
    }

    .process-connector {
        width: 3px;
        height: 30px;
        transform: rotate(90deg);
    }

    .process-connector::after {
        content: '↓';
        right: -8px;
        top: 50%;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .cta-content p {
        font-size: 1.1rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        padding: 1rem 2rem;
    }

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    html {
        font-size: 13px;
    }

    body {
        padding-top: 58px;
    }

    header {
        padding: 0.65rem 3%;
    }

    header img {
        height: 36px;
    }

    section {
        padding: 2.5rem 3%;
    }

    .hero {
        padding: 3.5rem 3% 2.5rem;
    }

    .hero h1 {
        font-size: 1.75rem;
    }

    .hero p {
        font-size: 0.95rem;
    }

    .hero img {
        max-width: 100px;
    }

    .stats-section {
        padding: 1.5rem 1rem;
        margin: 1.5rem 3%;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .stat-item {
        padding: 1.25rem 0.75rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }

    .card {
        padding: 1.5rem 1.25rem;
    }

    .card-icon {
        font-size: 2.5rem;
    }

    .card h3 {
        font-size: 1.25rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .page-header {
        padding: 4rem 3% 2rem;
    }

    .page-header h1 {
        font-size: 1.5rem;
    }

    .booking-form,
    .payment-summary {
        padding: 1.5rem 1.25rem;
        margin: 0 3%;
    }

    .summary-details .amount {
        font-size: 1.75rem;
    }

    .whatsapp-float {
        width: 52px;
        height: 52px;
        bottom: 1rem;
        right: 1rem;
        font-size: 24px;
    }

    .map-container {
        margin: 1.5rem 3%;
    }

    .map-container iframe {
        height: 250px;
    }
}
