/* Jesko Jets Inspired Design Variables */
:root {
    /* Colors - Premium Aviation Theme */
    --primary-color: #333333;
    --primary-dark: #222222;
    --primary-light: #1a1a1a;
    --accent-color: #c9a96e;
    --text-light: #999999;
    --text-white: #ffffff;
    --bg-light: #0a0a0a;
    --bg-white: #0a0a0a;
    --border-color: #333333;
    
    /* Typography - Jesko Jets Style */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.875rem;
    --font-size-4xl: 2.5rem;
    --font-size-5xl: 3.5rem;
    --font-size-6xl: 5rem;
    
    /* Spacing - More generous */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    --spacing-3xl: 6rem;
    
    /* Border Radius - Subtle */
    --radius-sm: 2px;
    --radius-md: 4px;
    --radius-lg: 8px;
    --radius-xl: 12px;
    --radius-2xl: 16px;
    
    /* Shadows - Premium */
    --shadow-sm: 0 2px 4px 0 rgba(255, 255, 255, 0.05);
    --shadow-md: 0 4px 12px -1px rgba(255, 255, 255, 0.1), 0 2px 4px -1px rgba(255, 255, 255, 0.06);
    --shadow-lg: 0 8px 24px -1px rgba(255, 255, 255, 0.1), 0 4px 6px -2px rgba(255, 255, 255, 0.05);
    --shadow-xl: 0 16px 48px -5px rgba(255, 255, 255, 0.1), 0 10px 10px -5px rgba(255, 255, 255, 0.04);
    
    /* Transitions - Smooth */
    --transition-fast: 0.2s ease-out;
    --transition-normal: 0.4s ease-out;
    --transition-slow: 0.8s ease-out;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: 1.7;
    color: var(--text-white);
    background-color: var(--primary-color);
    overflow-x: hidden;
    font-weight: 400;
}

/* Skip Link for Accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: var(--primary-color);
    color: var(--text-white);
    padding: 8px;
    text-decoration: none;
    border-radius: var(--radius-md);
    z-index: 1000;
    transition: top var(--transition-fast);
}

.skip-link:focus {
    top: 6px;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm) var(--spacing-lg);
    font-size: var(--font-size-base);
    font-weight: 500;
    text-decoration: none;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-normal);
    white-space: nowrap;
}

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

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--text-white);
    transform: translateY(-2px);
}

.btn-large {
    padding: var(--spacing-md) var(--spacing-xl);
    font-size: var(--font-size-lg);
}

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

/* Header Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(20px);
    z-index: 1000;
    box-shadow: none;
    transition: all var(--transition-normal);
    overflow: visible;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar {
    padding: var(--spacing-md) 0;
    overflow: visible;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.nav-logo .logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--text-white);
    text-decoration: none;
    transition: all var(--transition-normal);
}

.logo i {
    font-size: var(--font-size-2xl);
    color: var(--accent-color);
}

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

.nav-menu {
    display: flex;
    overflow: visible;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: var(--spacing-xl);
    overflow: visible;
    align-items: center;
}

.nav-item {
    display: flex;
    align-items: center;
    height: 100%;
}

.nav-link {
    color: var(--text-white);
    text-decoration: none;
    font-weight: 500;
    font-size: var(--font-size-base);
    padding: var(--spacing-sm) 0;
    transition: all var(--transition-normal);
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
}

.nav-link:hover {
    color: var(--accent-color);
}

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

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

/* Dropdown Menu */
.dropdown {
    position: relative;
    overflow: visible;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
}

.dropdown-toggle i {
    font-size: var(--font-size-xs);
    transition: transform var(--transition-normal);
}

.dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background: rgba(0, 0, 0, 0.95);
    min-width: 280px;
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 9999;
    border: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: var(--spacing-md) var(--spacing-lg);
    color: var(--text-white);
    text-decoration: none;
    transition: all var(--transition-normal);
    border-bottom: 1px solid var(--border-color);
}

.dropdown-menu a:hover {
    background: var(--primary-light);
    color: var(--accent-color);
    padding-left: var(--spacing-xl);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--spacing-sm);
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: all var(--transition-normal);
}

/* Flight Animation Scene */
.flight-scene {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: -1;
}

/* Window Frame Effect */
.window-frame {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 20px solid rgba(0, 0, 0, 0.3);
    box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.5);
    pointer-events: none;
    z-index: 10;
}

/* Cloud Layers */
.cloud-layer {
    position: absolute;
    width: 100%;
    height: 100%;
}

.cloud-back {
    z-index: 1;
}

.cloud-mid {
    z-index: 2;
}

.cloud-front {
    z-index: 3;
}

.cloud {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    filter: blur(2px);
}

.cloud-1 {
    width: 200px;
    height: 60px;
    top: 20%;
    left: 10%;
}

.cloud-2 {
    width: 150px;
    height: 50px;
    top: 40%;
    left: 60%;
}

.cloud-3 {
    width: 180px;
    height: 55px;
    top: 60%;
    left: 30%;
}

.cloud-4 {
    width: 120px;
    height: 40px;
    top: 15%;
    left: 70%;
}

.cloud-5 {
    width: 160px;
    height: 45px;
    top: 35%;
    left: 20%;
}

.cloud-6 {
    width: 140px;
    height: 42px;
    top: 55%;
    left: 80%;
}

.cloud-7 {
    width: 100px;
    height: 35px;
    top: 25%;
    left: 40%;
}

.cloud-8 {
    width: 130px;
    height: 38px;
    top: 45%;
    left: 50%;
}

/* Mountain Layers */
.mountain-layer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    z-index: 2;
}

.mountain {
    position: absolute;
    bottom: 0;
    width: 0;
    height: 0;
    border-style: solid;
}

.mountain-1 {
    border-left: 200px solid transparent;
    border-right: 200px solid transparent;
    border-bottom: 300px solid rgba(255, 255, 255, 0.05);
    left: 10%;
}

.mountain-2 {
    border-left: 150px solid transparent;
    border-right: 150px solid transparent;
    border-bottom: 250px solid rgba(255, 255, 255, 0.03);
    left: 40%;
}

.mountain-3 {
    border-left: 180px solid transparent;
    border-right: 180px solid transparent;
    border-bottom: 280px solid rgba(255, 255, 255, 0.04);
    left: 70%;
}

/* Flying Helicopter - Professional Version */
.helicopter-container {
    position: absolute;
    top: 30%;
    left: -150px;
    z-index: 5;
    transition: transform 0.3s ease-out;
}

.helicopter {
    position: relative;
    transform: scale(1.5);
}

.helicopter-body {
    position: relative;
    animation: helicopterFloat 3s ease-in-out infinite;
}

.helicopter-main {
    width: 80px;
    height: 30px;
    background: var(--accent-color);
    border-radius: 15px;
    position: relative;
    box-shadow: 0 5px 20px rgba(201, 169, 110, 0.4);
}

.helicopter-tail {
    position: absolute;
    top: 5px;
    right: -30px;
    width: 35px;
    height: 20px;
    background: var(--accent-color);
    border-radius: 0 10px 10px 0;
    box-shadow: 0 5px 20px rgba(201, 169, 110, 0.4);
}

.helicopter-tail::before {
    content: '';
    position: absolute;
    top: -8px;
    right: 5px;
    width: 3px;
    height: 36px;
    background: var(--accent-color);
}

.helicopter-cockpit {
    position: absolute;
    top: 5px;
    left: 15px;
    width: 25px;
    height: 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50% 50% 0 0;
    border: 2px solid var(--accent-color);
}

.helicopter-blades {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 120px;
}

.blade {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60px;
    height: 4px;
    background: var(--accent-color);
    border-radius: 2px;
    transform-origin: center;
    box-shadow: 0 0 10px rgba(201, 169, 110, 0.6);
    opacity: 0.8;
}

.blade-1 {
    animation: bladeSpin 0.1s linear infinite;
}

.blade-2 {
    animation: bladeSpin 0.1s linear infinite reverse;
    transform: rotate(90deg);
}

/* Professional Clouds */
.cloud {
    position: absolute;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 100px;
    filter: blur(1px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

/* Helicopter Animations */
@keyframes helicopterFloat {
    0%, 100% {
        transform: translateY(0px) rotate(-2deg);
    }
    50% {
        transform: translateY(-15px) rotate(2deg);
    }
}

@keyframes bladeSpin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Parallax Animation Classes */
.parallax-cloud-back {
    transition: transform 0.5s ease-out;
}

.parallax-cloud-mid {
    transition: transform 0.5s ease-out;
}

.parallax-cloud-front {
    transition: transform 0.5s ease-out;
}

.parallax-mountain {
    transition: transform 0.6s ease-out;
}

.parallax-helicopter {
    transition: transform 0.4s ease-out;
}
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    padding-bottom: 300px;
    overflow: hidden;
    color: var(--text-white);
    background: url('../assets/svg/Images/peacockbgi.png') center/80% no-repeat fixed !important;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-3xl);
    align-items: center;
    color: var(--text-white);
    position: relative;
    z-index: 2;
}

.hero-title {
font-size: var(--font-size-6xl);
font-weight: 300;
line-height: 1.1;
margin-bottom: var(--spacing-xl);
letter-spacing: -0.02em;
}

/* Hero Typing Animation */
#hero-typing-text {
    display: inline-block;
    color: var(--text-white);
}

.hero-title strong {
    font-weight: 600;
    color: var(--accent-color);
}

.hero-description {
    font-size: var(--font-size-xl);
    margin-bottom: var(--spacing-2xl);
    opacity: 0.8;
    line-height: 1.6;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

.hero-contact {
    margin-top: var(--spacing-xl);
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    color: var(--text-white);
    text-decoration: none;
    font-size: var(--font-size-lg);
    font-weight: 400;
    transition: all var(--transition-normal);
    opacity: 0.8;
}

.contact-link:hover {
    opacity: 1;
    transform: translateX(5px);
}

/* Jesko Jets Style Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-md) var(--spacing-xl);
    font-size: var(--font-size-base);
    font-weight: 500;
    text-decoration: none;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition-normal);
    white-space: nowrap;
    letter-spacing: 0.02em;
}

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

.btn-primary:hover {
    background: #b3985f;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: var(--text-white);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.btn-large {
    padding: var(--spacing-lg) var(--spacing-2xl);
    font-size: var(--font-size-lg);
}

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

/* Floating Elements */
.hero-visual {
    position: relative;
    height: 500px;
}

.floating-elements {
    position: relative;
    width: 100%;
    height: 100%;
}

.float-element {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.float-element.helicopter {
    width: 120px;
    height: 120px;
    top: 20%;
    right: 20%;
    animation-delay: 0s;
}

.float-element.mountain {
    width: 80px;
    height: 80px;
    bottom: 30%;
    left: 10%;
    animation-delay: 2s;
}

.float-element.cloud {
    width: 60px;
    height: 60px;
    top: 60%;
    right: 10%;
    animation-delay: 4s;
}

.float-element i {
    font-size: 2rem;
    color: var(--text-white);
}

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

/* Trust Indicators - Jesko Jets Style */
.trust-indicators {
    padding: var(--spacing-3xl) 0;
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-xl);
    text-align: center;
}

.trust-item {
    padding: var(--spacing-lg);
    transition: transform var(--transition-normal);
}

.trust-item:hover {
    transform: translateY(-5px);
}

.trust-content h3 {
    font-size: var(--font-size-4xl);
    font-weight: 600;
    color: #666666;
    margin-bottom: var(--spacing-xs);
    letter-spacing: -0.01em;
}

.trust-content p {
    color: var(--text-light);
    font-size: var(--font-size-base);
    font-weight: 400;
}

/* Value Proposition Section */
.value-proposition {
    padding: var(--spacing-3xl) 0 var(--spacing-2xl);
    background: var(--bg-white);
}

.value-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--spacing-3xl);
}

.value-title {
    font-size: var(--font-size-5xl);
    font-weight: 300;
    line-height: 1.1;
    color: var(--text-white);
    margin-bottom: var(--spacing-lg);
    letter-spacing: -0.02em;
}

/* Typing Animation */
#typing-text {
    display: inline-block;
}


.value-title strong {
    font-weight: 600;
    color: var(--accent-color);
}

.value-subtitle {
    font-size: var(--font-size-xl);
    color: var(--text-light);
    line-height: 1.6;
    font-weight: 300;
    max-width: 700px;
    margin: 0 auto;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-3xl);
    max-width: 1200px;
    margin: 0 auto;
}

.value-item {
    padding: var(--spacing-xl);
}

.value-item h3 {
    font-size: var(--font-size-2xl);
    font-weight: 500;
    color: #666666;
    margin-bottom: var(--spacing-lg);
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.value-item p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: var(--font-size-lg);
    font-weight: 300;
}

/* Section Styles */
section {
    padding: var(--spacing-3xl) 0;
    background: var(--primary-color);
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-3xl);
}

.section-title {
    font-size: var(--font-size-4xl);
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: var(--spacing-md);
}

.section-subtitle {
    font-size: var(--font-size-lg);
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Packages Section */
.packages {
    background: var(--bg-light);
    margin-top: 400px !important;
    padding-top: 200px !important;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--spacing-xl);
}

.package-card {
    background: var(--primary-light);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    position: relative;
    border: 1px solid var(--border-color);
}

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

.package-card.featured,
.package-card.premium {
    border: 2px solid var(--accent-color);
}

.package-badge {
    position: absolute;
    top: var(--spacing-md);
    right: var(--spacing-md);
    background: var(--accent-color);
    color: var(--primary-color);
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: var(--radius-lg);
    font-size: var(--font-size-sm);
    font-weight: 600;
    z-index: 1;
}

.package-card.premium .package-badge {
    background: var(--secondary-color);
}

.package-image {
    height: 200px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.package-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.package-icon i {
    font-size: 2rem;
    color: var(--text-white);
}

.package-content {
    padding: var(--spacing-xl);
}

.package-title {
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: #999999;
    margin-bottom: var(--spacing-md);
}

.package-description {
    color: var(--text-light);
    margin-bottom: var(--spacing-lg);
    line-height: 1.6;
}

.package-features {
    margin-bottom: var(--spacing-lg);
}

.package-features ul {
    list-style: none;
}

.package-features li {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-xs) 0;
    color: var(--text-dark);
}

.package-features i {
    color: var(--accent-color);
    font-size: var(--font-size-sm);
}

.package-price {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: var(--spacing-lg);
}

.price-label {
    font-size: var(--font-size-sm);
    color: var(--text-light);
}

.price-amount {
    font-size: var(--font-size-2xl);
    font-weight: 700;
    color: var(--primary-color);
}

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

/* Safety Section */
.safety-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-xl);
}

.safety-item {
    text-align: center;
    padding: var(--spacing-xl);
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-normal);
}

.safety-item:hover {
    transform: translateY(-5px);
}

.safety-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    color: var(--text-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-lg);
    font-size: var(--font-size-2xl);
}

.safety-item h3 {
    font-size: var(--font-size-xl);
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: var(--spacing-md);
}

.safety-item p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials {
    background: var(--bg-light);
}

.testimonials-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-item {
    display: none;
    text-align: center;
    padding: var(--spacing-xl);
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.testimonial-item.active {
    display: block;
}

.testimonial-stars {
    display: flex;
    justify-content: center;
    gap: var(--spacing-xs);
    margin-bottom: var(--spacing-lg);
}

.testimonial-stars i {
    color: var(--secondary-color);
    font-size: var(--font-size-lg);
}

.testimonial-text {
    font-size: var(--font-size-lg);
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: var(--spacing-lg);
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-md);
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: var(--text-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-info h4 {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: var(--spacing-xs);
}

.author-info p {
    color: var(--text-light);
    font-size: var(--font-size-sm);
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.testimonial-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-color);
    color: var(--text-white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-normal);
}

.testimonial-btn:hover {
    background: var(--primary-dark);
    transform: scale(1.1);
}

/* CTA Section */
.cta {
    background: var(--gradient-primary);
    color: var(--text-white);
    text-align: center;
}

.cta-title {
    font-size: var(--font-size-4xl);
    font-weight: 700;
    margin-bottom: var(--spacing-lg);
}

.cta-description {
    font-size: var(--font-size-lg);
    margin-bottom: var(--spacing-xl);
    opacity: 0.9;
}

.cta-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-lg);
}

.cta-phone {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    color: var(--text-white);
    text-decoration: none;
    font-size: var(--font-size-lg);
    font-weight: 600;
    transition: transform var(--transition-normal);
}

.cta-phone:hover {
    transform: translateX(5px);
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-3xl);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xl);
}

.contact-item {
    display: flex;
    gap: var(--spacing-lg);
    align-items: flex-start;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: var(--text-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-details h3 {
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: var(--spacing-sm);
}

.contact-details p {
    color: var(--text-light);
    line-height: 1.6;
}

.contact-form {
    background: var(--bg-light);
    padding: var(--spacing-2xl);
    border-radius: var(--radius-lg);
}

/* Form Group */
.form-group {
    margin-bottom: var(--spacing-lg);
}

/* Form Labels */
.form-group label {
    display: block;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: var(--spacing-sm);
    font-size: var(--font-size-base);
}

/* Form Inputs - Fresh Start */
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px;
    border: 2px solid #555555;
    border-radius: 8px;
    font-size: 16px;
    font-family: var(--font-family);
    transition: all 0.3s ease;
    background: #333333;
    color: #ffffff;
    box-sizing: border-box;
}

/* Form Placeholders */
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #aaaaaa;
    opacity: 1;
}

/* Form Focus States */
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #c9a96e;
    box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.2);
    background: #3a3a3a;
}

/* Form Textarea */
.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Form Select Dropdown */
.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 20px;
    padding-right: 40px;
}

.form-group select option {
    background: #333333;
    color: #ffffff;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--text-white);
    padding: var(--spacing-3xl) 0 var(--spacing-lg);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--spacing-3xl);
    margin-bottom: var(--spacing-2xl);
}

.footer-section h4 {
    font-size: var(--font-size-lg);
    font-weight: 600;
    margin-bottom: var(--spacing-lg);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-size: var(--font-size-xl);
    font-weight: 700;
    margin-bottom: var(--spacing-md);
}

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

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: var(--spacing-lg);
}

.footer-social {
    display: flex;
    gap: var(--spacing-md);
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all var(--transition-normal);
}

.footer-social a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: var(--spacing-sm);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color var(--transition-normal);
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--spacing-lg);
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom i {
    color: var(--secondary-color);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: var(--spacing-xl);
    right: var(--spacing-xl);
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--text-white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-lg);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
    z-index: 999;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

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

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 120px 0 var(--spacing-3xl);
    text-align: center;
    color: var(--text-white);
    margin-top: 80px;
}

.page-header-content {
    max-width: 800px;
    margin: 0 auto;
}

.page-title {
    font-size: var(--font-size-5xl);
    font-weight: 800;
    margin-bottom: var(--spacing-lg);
}

.page-subtitle {
    font-size: var(--font-size-lg);
    opacity: 0.9;
    margin-bottom: var(--spacing-xl);
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    font-size: var(--font-size-sm);
}

.breadcrumb a {
    color: var(--text-white);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity var(--transition-normal);
}

.breadcrumb a:hover {
    opacity: 1;
}

.breadcrumb-separator {
    opacity: 0.6;
}

.breadcrumb-current {
    opacity: 1;
    font-weight: 500;
}

/* Map Section - Enhanced Visibility */
.map-section {
    padding: var(--spacing-3xl) 0;
    background: var(--bg-white);
}

.map-container {
    max-width: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 2px solid var(--border-color);
}

.map-placeholder {
    background: #4a90e2 !important;
    min-height: 450px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    padding: var(--spacing-2xl) !important;
    position: relative !important;
    border: 5px solid #ff6b6b !important;
    overflow: hidden !important;
}

.map-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(201, 169, 110, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(201, 169, 110, 0.1) 0%, transparent 50%),
        linear-gradient(45deg, rgba(201, 169, 110, 0.05) 0%, transparent 70%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><rect fill="%23e8f0f5" width="200" height="200"/><path fill="%23d1d5db" d="M0 100 L50 70 L100 90 L150 60 L200 80 L200 200 L0 200 Z"/><path fill="%23c9a96e" opacity="0.3" d="M30 80 L40 75 L50 85 L60 70 L70 80"/><path fill="%23c9a96e" opacity="0.3" d="M130 60 L140 55 L150 65 L160 50 L170 60"/><circle fill="%23c9a96e" cx="60" cy="75" r="2"/><circle fill="%23c9a96e" cx="140" cy="55" r="2"/><path stroke="%23c9a96e" stroke-width="1" fill="none" d="M20 120 L180 140"/><path stroke="%23c9a96e" stroke-width="1" fill="none" d="M10 140 L190 160"/><path stroke="%23c9a96e" stroke-width="1" fill="none" d="M30 160 L170 180"/></svg>') center/cover;
    opacity: 0.8;
    z-index: 1;
}

.map-placeholder::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(90deg, transparent, transparent 35px, rgba(201, 169, 110, 0.03) 35px, rgba(201, 169, 110, 0.03) 70px),
        repeating-linear-gradient(0deg, transparent, transparent 35px, rgba(201, 169, 110, 0.03) 35px, rgba(201, 169, 110, 0.03) 70px);
    z-index: 2;
}

.map-placeholder > * {
    position: relative;
    z-index: 2;
}

.map-placeholder i {
    font-size: 5rem !important;
    color: #ffffff !important;
    margin-bottom: var(--spacing-lg) !important;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5) !important;
}

.map-placeholder h3 {
    font-size: var(--font-size-3xl) !important;
    color: #ffffff !important;
    margin-bottom: var(--spacing-md) !important;
    font-weight: 600 !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5) !important;
}

.map-placeholder p {
    color: #ffffff !important;
    margin-bottom: var(--spacing-xl) !important;
    font-size: var(--font-size-xl) !important;
    line-height: 1.6 !important;
    max-width: 600px !important;
    font-weight: 500 !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5) !important;
}

.map-placeholder .btn {
    background: var(--accent-color);
    color: var(--primary-color);
    border: none;
    padding: var(--spacing-lg) var(--spacing-2xl);
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: var(--font-size-lg);
    transition: all var(--transition-normal);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(201, 169, 110, 0.3);
}

.map-placeholder .btn:hover {
    background: #b3985f;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(201, 169, 110, 0.4);
}

/* FAQ Section */
.faq-section {
    padding: var(--spacing-3xl) 0;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    margin-bottom: var(--spacing-lg);
    overflow: hidden;
    transition: all var(--transition-normal);
}

.faq-item:hover {
    box-shadow: var(--shadow-lg);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--spacing-xl);
    cursor: pointer;
    transition: background-color var(--transition-normal);
}

.faq-question:hover {
    background-color: var(--bg-light);
}

.faq-question h3 {
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

.faq-question i {
    color: var(--primary-color);
    transition: transform var(--transition-normal);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.faq-answer p {
    padding: 0 var(--spacing-xl) var(--spacing-xl);
    color: var(--text-light);
    line-height: 1.6;
}

.faq-item.active .faq-question {
    background-color: var(--bg-light);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* Contact Info Enhancements */
.contact-info a {
    color: var(--text-white);
    text-decoration: none;
    transition: color var(--transition-normal);
}

.contact-info a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

.contact-form h3 {
    font-size: var(--font-size-xl);
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: var(--spacing-xl);
    text-align: center;
}

/* Responsive Design for New Sections */
@media (max-width: 768px) {
    .page-header {
        padding: 100px 0 var(--spacing-xl);
        margin-top: 80px;
    }
    
    .page-title {
        font-size: var(--font-size-3xl);
    }
    
    .map-placeholder {
        height: 300px;
    }
    
    .map-placeholder i {
        font-size: 3rem;
    }
    
    .faq-question {
        padding: var(--spacing-lg);
    }
    
    .faq-question h3 {
        font-size: var(--font-size-base);
    }
    
    .breadcrumb {
        flex-wrap: wrap;
    }
}
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        height: 100vh;
        background: var(--bg-white);
        box-shadow: var(--shadow-xl);
        transition: left var(--transition-normal);
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-list {
        flex-direction: column;
        padding: var(--spacing-xl);
        gap: var(--spacing-lg);
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

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

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    /* Mobile Dropdown Fix */
    .dropdown {
        position: static;
        width: 100%;
    }
    
    .dropdown-menu {
        position: static !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        box-shadow: none !important;
        background: rgba(255, 255, 255, 0.1) !important;
        margin: 0 !important;
        padding: 0 !important;
        border: 1px solid rgba(255, 255, 255, 0.2) !important;
        border-radius: 8px !important;
        margin-top: var(--spacing-xs) !important;
        backdrop-filter: blur(10px) !important;
        min-width: 100% !important;
        width: 100% !important;
        left: 0 !important;
        top: auto !important;
    }
    
    .dropdown-menu a {
        padding: var(--spacing-sm) var(--spacing-lg) !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
        font-size: 0.9rem !important;
    }
    
    .dropdown-menu a:last-child {
        border-bottom: none !important;
    }
    
    .dropdown-menu a:hover {
        background: rgba(201, 169, 110, 0.15) !important;
        padding-left: var(--spacing-xl) !important;
    }
    
    /* Mobile Nav Actions Fix */
    .nav-actions {
        display: flex;
        align-items: center;
        gap: var(--spacing-sm);
    }
    
    .nav-actions .btn {
        display: none; /* Hide Book Now button on mobile */
    }
    
    .nav-toggle {
        display: flex !important;
        flex-direction: column;
        gap: 3px;
        width: 25px;
        height: 20px;
        justify-content: center;
        cursor: pointer;
        z-index: 1001;
        background: none;
        border: none;
        padding: 0;
    }
    
    .nav-toggle span {
        width: 100%;
        height: 2px;
        background: var(--accent-color);
        transition: all 0.3s ease;
        border-radius: 2px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-title {
        font-size: var(--font-size-4xl);
    }

    .hero-visual {
        display: none;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-lg);
    }

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

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

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

    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }

    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--spacing-sm);
    }

    .hero-title {
        font-size: var(--font-size-3xl);
    }

    .section-title {
        font-size: var(--font-size-3xl);
    }

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

    .trust-item {
        flex-direction: column;
        text-align: center;
    }
}

/* Perfect Ornamental Label Button */
.shape-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.shape-button .label-shape {
    width: 300px;
    height: 100px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 4px 12px rgba(201, 169, 110, 0.3));
}

.shape-button .label-shape path {
    fill: #c9a96e;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.shape-button span {
    position: absolute;
    color: #ffffff;
    font-weight: 600;
    font-size: 14px;
    text-align: center;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}

/* Hover Effects */
.shape-button:hover .label-shape {
    filter: drop-shadow(0 8px 20px rgba(201, 169, 110, 0.4));
    transform: translateY(-2px);
}

.shape-button:hover .label-shape path {
    fill: #d4af37;
}

.shape-button:hover span {
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Active State */
.shape-button:active .label-shape {
    transform: translateY(0) scale(0.98);
    filter: drop-shadow(0 2px 8px rgba(201, 169, 110, 0.5));
}

/* Enhanced Mobile Responsiveness */
@media (max-width: 768px) {
    /* Reset and Mobile Base */
    html, body {
        overflow-x: hidden; /* Prevent horizontal scroll */
        width: 100%;
        min-height: 100vh;
        -webkit-text-size-adjust: 100%; /* Prevent iOS zoom */
        -ms-text-size-adjust: 100%;
        text-size-adjust: 100%;
    }
    
    /* Fluid Typography */
    html {
        font-size: 14px;
    }
    
    /* Container Adjustments - Full Width */
    .container {
        padding: 0 var(--spacing-sm);
        max-width: 100%;
        width: 100%;
        margin: 0 auto;
        box-sizing: border-box;
    }
    
    /* Hero Section Mobile - Enhanced */
    .hero {
        min-height: 100vh;
        min-height: 100dvh; /* Dynamic viewport height for mobile */
        padding: 100px 0 40px;
        display: flex;
        align-items: center;
        width: 100%;
        background: url('../assets/svg/Images/peacockbgi.png') center/cover no-repeat scroll !important;
        background-attachment: scroll !important; /* Better mobile performance */
        background-size: cover !important;
        background-position: center !important;
    }
    
    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        width: 100%;
        max-width: 100%;
        padding: 0 var(--spacing-md);
        position: relative;
        z-index: 2;
        box-sizing: border-box;
    }
    
    .hero-text {
        width: 100%;
        max-width: 100%;
        background: rgba(0, 0, 0, 0.6); /* Better text readability */
        padding: var(--spacing-lg);
        border-radius: 15px;
        backdrop-filter: blur(5px);
        box-sizing: border-box;
        margin: 0;
    }
    
    .hero-title {
        font-size: clamp(1.4rem, 6vw, 2rem);
        line-height: 1.2;
        margin-bottom: var(--spacing-md);
        word-wrap: break-word;
        overflow-wrap: break-word;
        color: #ffffff;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
        width: 100%;
    }
    
    .hero-description {
        font-size: clamp(0.85rem, 3.5vw, 1rem);
        margin-top: var(--spacing-md) !important;
        line-height: 1.6;
        max-width: 100%;
        color: #ffffff;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
        width: 100%;
        box-sizing: border-box;
    }
    
    /* Enhanced Hero Overlay for Mobile */
    .hero-overlay {
        background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 100%) !important;
        width: 100%;
    }
    
    /* Hero Actions Mobile - Enhanced */
    .hero-actions {
        margin-top: var(--spacing-lg) !important;
        text-align: center;
        width: 100%;
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: var(--spacing-md);
        padding: 0 var(--spacing-md);
        box-sizing: border-box;
    }
    
    .shape-button {
        width: 100%;
        max-width: 300px;
        display: flex;
        justify-content: center;
        margin-bottom: var(--spacing-sm);
        box-sizing: border-box;
    }
    
    .shape-button .label-shape {
        width: 100%;
        max-width: 280px;
        height: 70px;
        box-sizing: border-box;
    }
    
    .shape-button span {
        font-size: clamp(10px, 4vw, 12px);
        letter-spacing: 0.8px;
        padding: 0 8px;
    }
    
    /* Navigation Mobile - Enhanced */
    .header {
        padding: var(--spacing-xs) 0;
        position: fixed;
        width: 100%;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        background: rgba(0, 0, 0, 0.9) !important;
        backdrop-filter: blur(10px);
        box-sizing: border-box;
    }
    
    .nav-container {
        padding: 0 var(--spacing-sm);
        justify-content: space-between;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .nav-logo .logo span {
        font-size: 1rem;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 85%;
        max-width: 300px;
        height: 100vh;
        background: linear-gradient(135deg, rgba(0,0,0,0.98) 0%, rgba(26,26,26,0.98) 100%);
        box-shadow: 2px 0 20px rgba(0,0,0,0.5);
        transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
        padding: var(--spacing-xl);
        overflow-y: auto;
        backdrop-filter: blur(15px);
        box-sizing: border-box;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-list {
        flex-direction: column;
        gap: var(--spacing-md);
        padding: var(--spacing-lg) 0;
        width: 100%;
        box-sizing: border-box;
    }
    
    .nav-item {
        width: 100%;
        box-sizing: border-box;
    }
    
    .nav-link {
        font-size: 1rem;
        padding: var(--spacing-md) var(--spacing-lg);
        border-radius: 10px;
        transition: all 0.3s ease;
        display: block;
        width: 100%;
        text-align: left;
        box-sizing: border-box;
    }
    
    .nav-link:hover {
        background: rgba(201, 169, 110, 0.15);
        transform: translateX(5px);
    }
    
    .nav-toggle {
        display: flex;
        flex-direction: column;
        gap: 3px;
        width: 25px;
        height: 20px;
        justify-content: center;
        cursor: pointer;
        z-index: 1001;
    }
    
    .nav-toggle span {
        width: 100%;
        height: 2px;
        background: var(--accent-color);
        transition: all 0.3s ease;
        border-radius: 2px;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    /* Package Cards Mobile - Enhanced */
    .packages-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
        padding: 0 var(--spacing-sm);
        width: 100%;
        box-sizing: border-box;
    }
    
    .package-card {
        padding: var(--spacing-lg);
        margin: 0;
        max-width: 100%;
        width: 100%;
        border-radius: 20px;
        box-shadow: 0 15px 35px rgba(0,0,0,0.3);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
        backdrop-filter: blur(10px);
        box-sizing: border-box;
    }
    
    .package-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    }
    
    .package-header {
        text-align: center;
        margin-bottom: var(--spacing-lg);
        width: 100%;
        box-sizing: border-box;
    }
    
    .package-title {
        font-size: clamp(1.3rem, 5vw, 1.6rem);
        line-height: 1.3;
        margin-bottom: var(--spacing-sm);
        width: 100%;
        box-sizing: border-box;
    }
    
    .package-description {
        font-size: 0.9rem;
        line-height: 1.6;
        text-align: center;
        margin-bottom: var(--spacing-lg);
        color: rgba(255, 255, 255, 0.9);
        width: 100%;
        box-sizing: border-box;
    }
    
    .package-features {
        margin-bottom: var(--spacing-lg);
        width: 100%;
        box-sizing: border-box;
    }
    
    .package-features li {
        font-size: 0.85rem;
        margin-bottom: var(--spacing-sm);
        padding-left: var(--spacing-lg);
        line-height: 1.5;
        color: rgba(255, 255, 255, 0.85);
        box-sizing: border-box;
    }
    
    .package-svg-btn {
        width: 100%;
        max-width: 260px;
        margin: 0 auto;
        display: flex;
        justify-content: center;
        box-sizing: border-box;
    }
    
    .package-svg-btn .package-shape {
        height: 60px;
        width: 100%;
        box-sizing: border-box;
    }
    
    .package-svg-btn span {
        font-size: clamp(9px, 4vw, 11px);
        letter-spacing: 0.8px;
    }
    
    /* Trust Indicators Mobile - Enhanced */
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-md);
        padding: 0 var(--spacing-sm);
        width: 100%;
        box-sizing: border-box;
    }
    
    .trust-item {
        text-align: center;
        padding: var(--spacing-lg);
        border-radius: 15px;
        background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
        backdrop-filter: blur(10px);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        box-shadow: 0 8px 25px rgba(0,0,0,0.2);
        width: 100%;
        box-sizing: border-box;
    }
    
    .trust-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 30px rgba(0,0,0,0.3);
    }
    
    .trust-item h3 {
        font-size: clamp(1.3rem, 5vw, 1.6rem);
        margin-bottom: var(--spacing-sm);
        color: var(--accent-color);
    }
    
    .trust-item p {
        font-size: 0.85rem;
        line-height: 1.4;
        color: rgba(255, 255, 255, 0.9);
    }
    
    /* Contact Form Mobile - Enhanced */
    .contact-form {
        padding: var(--spacing-lg);
        margin: 0 auto;
        max-width: 100%;
        width: 100%;
        border-radius: 20px;
        background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
        backdrop-filter: blur(15px);
        box-shadow: 0 15px 35px rgba(0,0,0,0.3);
        box-sizing: border-box;
    }
    
    .contact-form h2 {
        font-size: clamp(1.3rem, 5vw, 1.6rem);
        margin-bottom: var(--spacing-lg);
        text-align: center;
        color: #ffffff;
    }
    
    .contact-form input,
    .contact-form select,
    .contact-form textarea {
        font-size: 16px; /* Prevents zoom on iOS */
        padding: var(--spacing-md);
        border-radius: 12px;
        margin-bottom: var(--spacing-md);
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
        color: #ffffff;
    }
    
    .contact-form input::placeholder,
    .contact-form textarea::placeholder {
        color: rgba(255, 255, 255, 0.6);
    }
    
    .contact-form button {
        width: 100%;
        max-width: 100%;
        padding: var(--spacing-md);
        font-size: 1rem;
        border-radius: 12px;
        margin-top: var(--spacing-md);
        background: var(--accent-color);
        color: #000000;
        font-weight: bold;
        transition: all 0.3s ease;
        box-sizing: border-box;
    }
    
    /* Footer Mobile - Enhanced */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
        text-align: center;
        padding: 0 var(--spacing-sm);
        width: 100%;
        box-sizing: border-box;
    }
    
    .footer-section {
        margin-bottom: var(--spacing-lg);
        width: 100%;
        box-sizing: border-box;
    }
    
    .footer-logo {
        justify-content: center;
        margin-bottom: var(--spacing-md);
    }
    
    .footer-social {
        justify-content: center;
        gap: var(--spacing-md);
    }
    
    .footer-social a {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    /* Section Spacing Mobile */
    section {
        padding: var(--spacing-2xl) 0;
        width: 100%;
        box-sizing: border-box;
    }
    
    .section-header {
        margin-bottom: var(--spacing-xl);
        text-align: center;
        padding: 0 var(--spacing-sm);
        width: 100%;
        box-sizing: border-box;
    }
    
    .section-title {
        font-size: clamp(1.4rem, 6vw, 1.8rem);
        margin-bottom: var(--spacing-md);
        color: #ffffff;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }
    
    .section-subtitle {
        font-size: clamp(0.9rem, 3.5vw, 1rem);
        line-height: 1.6;
        color: rgba(255, 255, 255, 0.9);
    }
    
    /* Floating Elements Mobile */
    .floating-elements {
        display: none;
    }
    
    /* Better mobile background handling */
    body {
        background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
        width: 100%;
        overflow-x: hidden;
    }
    
    /* FAQ Mobile Styles */
    .faq-section {
        padding: var(--spacing-xl) 0;
        width: 100%;
        box-sizing: border-box;
    }
    
    .faq-grid {
        max-width: 100%;
        margin: 0 auto;
        padding: 0 var(--spacing-sm);
        width: 100%;
        box-sizing: border-box;
    }
    
    .faq-item {
        background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
        backdrop-filter: blur(10px);
        border-radius: 15px;
        margin-bottom: var(--spacing-md);
        overflow: hidden;
        transition: all 0.3s ease;
        box-shadow: 0 8px 25px rgba(0,0,0,0.2);
        width: 100%;
        box-sizing: border-box;
    }
    
    .faq-item:hover {
        transform: translateY(-2px);
        box-shadow: 0 12px 30px rgba(0,0,0,0.3);
    }
    
    .faq-question {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: var(--spacing-lg);
        cursor: pointer;
        transition: all 0.3s ease;
        background: transparent;
        width: 100%;
        box-sizing: border-box;
    }
    
    .faq-question:hover {
        background: rgba(255, 255, 255, 0.05);
    }
    
    .faq-question h3 {
        font-size: clamp(0.9rem, 4vw, 1.1rem);
        font-weight: 600;
        color: #ffffff;
        margin: 0;
        line-height: 1.4;
        flex: 1;
        padding-right: var(--spacing-sm);
    }
    
    .faq-question i {
        color: var(--accent-color);
        transition: transform 0.3s ease;
        font-size: 1rem;
        flex-shrink: 0;
    }
    
    .faq-answer {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        width: 100%;
        box-sizing: border-box;
    }
    
    .faq-answer p {
        padding: 0 var(--spacing-lg) var(--spacing-lg);
        color: rgba(255, 255, 255, 0.9);
        line-height: 1.6;
        font-size: clamp(0.85rem, 3.5vw, 0.95rem);
        width: 100%;
        box-sizing: border-box;
    }
    
    .faq-item.active .faq-question {
        background: rgba(255, 255, 255, 0.08);
    }
    
    .faq-item.active .faq-question i {
        transform: rotate(180deg);
    }
}

/* Small Mobile Devices - Enhanced */
@media (max-width: 480px) {
    html, body {
        overflow-x: hidden;
        width: 100%;
        -webkit-text-size-adjust: 100%;
        -ms-text-size-adjust: 100%;
        text-size-adjust: 100%;
    }
    
    html {
        font-size: 13px;
    }
    
    .container {
        padding: 0 var(--spacing-xs);
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    /* Hero Section Small Mobile - Enhanced */
    .hero {
        padding: 80px 0 30px;
        min-height: 100vh;
        min-height: 100dvh;
        width: 100%;
        background: url('../assets/svg/Images/peacockbgi.png') center/120% no-repeat scroll !important;
        background-size: cover !important;
        background-position: center !important;
    }
    
    .hero-content {
        padding: 0 var(--spacing-sm);
        width: 100%;
        box-sizing: border-box;
    }
    
    .hero-text {
        background: rgba(0, 0, 0, 0.7);
        padding: var(--spacing-md);
        border-radius: 12px;
        width: 100%;
        box-sizing: border-box;
    }
    
    .hero-title {
        font-size: clamp(1.2rem, 7vw, 1.6rem);
        line-height: 1.3;
        margin-bottom: var(--spacing-sm);
        width: 100%;
    }
    
    .hero-description {
        font-size: clamp(0.8rem, 4vw, 0.95rem);
        margin-top: var(--spacing-sm) !important;
        line-height: 1.5;
        width: 100%;
    }
    
    .hero-actions {
        margin-top: var(--spacing-md) !important;
        gap: var(--spacing-sm);
        padding: 0 var(--spacing-sm);
        width: 100%;
    }
    
    .shape-button {
        max-width: 260px;
        width: 100%;
    }
    
    .shape-button .label-shape {
        height: 60px;
        width: 100%;
    }
    
    .shape-button span {
        font-size: clamp(9px, 5vw, 11px);
        letter-spacing: 0.6px;
    }
    
    /* Navigation Small Mobile - Enhanced */
    .nav-menu {
        width: 90%;
        max-width: 280px;
    }
    
    .nav-link {
        font-size: 0.95rem;
        padding: var(--spacing-sm) var(--spacing-md);
    }
    
    /* Small Mobile Dropdown Fix */
    .dropdown {
        position: static;
        width: 100%;
    }
    
    .dropdown-menu {
        position: static !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        box-shadow: none !important;
        background: rgba(255, 255, 255, 0.1) !important;
        margin: 0 !important;
        padding: 0 !important;
        border: 1px solid rgba(255, 255, 255, 0.2) !important;
        border-radius: 8px !important;
        margin-top: var(--spacing-xs) !important;
        backdrop-filter: blur(10px) !important;
        min-width: 100% !important;
        width: 100% !important;
        left: 0 !important;
        top: auto !important;
    }
    
    .dropdown-menu a {
        padding: var(--spacing-sm) var(--spacing-md) !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
        font-size: 0.85rem !important;
    }
    
    .dropdown-menu a:last-child {
        border-bottom: none !important;
    }
    
    .dropdown-menu a:hover {
        background: rgba(201, 169, 110, 0.15) !important;
        padding-left: var(--spacing-lg) !important;
    }
    
    /* Package Cards Small Mobile - Enhanced */
    .packages-grid {
        gap: var(--spacing-md);
        padding: 0 var(--spacing-xs);
        width: 100%;
    }
    
    .package-card {
        padding: var(--spacing-md);
        margin: 0;
        border-radius: 15px;
        width: 100%;
        box-sizing: border-box;
    }
    
    .package-title {
        font-size: clamp(1.2rem, 6vw, 1.4rem);
        line-height: 1.3;
        width: 100%;
    }
    
    .package-description {
        font-size: 0.85rem;
        margin-bottom: var(--spacing-md);
        line-height: 1.5;
        width: 100%;
    }
    
    .package-features li {
        font-size: 0.8rem;
        margin-bottom: var(--spacing-xs);
        padding-left: var(--spacing-md);
        line-height: 1.4;
    }
    
    .package-svg-btn {
        max-width: 240px;
        width: 100%;
    }
    
    .package-svg-btn .package-shape {
        height: 55px;
        width: 100%;
    }
    
    .package-svg-btn span {
        font-size: clamp(8px, 5vw, 10px);
    }
    
    /* Trust Indicators Small Mobile - Enhanced */
    .trust-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
        padding: 0 var(--spacing-xs);
        width: 100%;
    }
    
    .trust-item {
        padding: var(--spacing-md);
        border-radius: 12px;
        width: 100%;
        box-sizing: border-box;
    }
    
    .trust-item h3 {
        font-size: clamp(1.2rem, 6vw, 1.4rem);
    }
    
    .trust-item p {
        font-size: 0.8rem;
        line-height: 1.3;
    }
    
    /* Contact Form Small Mobile - Enhanced */
    .contact-form {
        padding: var(--spacing-md);
        border-radius: 15px;
        width: 100%;
        box-sizing: border-box;
    }
    
    .contact-form h2 {
        font-size: clamp(1.2rem, 6vw, 1.4rem);
        margin-bottom: var(--spacing-md);
    }
    
    .contact-form input,
    .contact-form select,
    .contact-form textarea {
        padding: var(--spacing-sm) var(--spacing-md);
        margin-bottom: var(--spacing-sm);
        font-size: 16px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .contact-form button {
        padding: var(--spacing-sm) var(--spacing-md);
        font-size: 0.95rem;
        width: 100%;
    }
    
    /* Section Headers Small Mobile */
    .section-header {
        padding: 0 var(--spacing-xs);
        margin-bottom: var(--spacing-lg);
        width: 100%;
    }
    
    .section-title {
        font-size: clamp(1.3rem, 6vw, 1.5rem);
        margin-bottom: var(--spacing-sm);
    }
    
    .section-subtitle {
        font-size: clamp(0.85rem, 4vw, 0.95rem);
        line-height: 1.5;
    }
    
    section {
        padding: var(--spacing-xl) 0;
        width: 100%;
    }
}

/* Ultra Small Mobile Devices - Enhanced */
@media (max-width: 360px) {
    html, body {
        overflow-x: hidden;
        width: 100%;
        -webkit-text-size-adjust: 100%;
        -ms-text-size-adjust: 100%;
        text-size-adjust: 100%;
    }
    
    html {
        font-size: 12px;
    }
    
    .container {
        padding: 0 8px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    /* Hero Ultra Small Mobile - Enhanced */
    .hero {
        padding: 70px 0 20px;
        width: 100%;
        background: url('../assets/svg/Images/peacockbgi.png') center/130% no-repeat scroll !important;
        background-size: cover !important;
        background-position: center !important;
    }
    
    .hero-content {
        padding: 0 8px;
        width: 100%;
        box-sizing: border-box;
    }
    
    .hero-text {
        background: rgba(0, 0, 0, 0.8);
        padding: var(--spacing-sm);
        border-radius: 10px;
        width: 100%;
        box-sizing: border-box;
    }
    
    .hero-title {
        font-size: clamp(1.1rem, 8vw, 1.4rem);
        line-height: 1.3;
        width: 100%;
    }
    
    .hero-description {
        font-size: clamp(0.75rem, 4.5vw, 0.9rem);
        line-height: 1.4;
        width: 100%;
    }
    
    .hero-actions {
        margin-top: var(--spacing-sm) !important;
        gap: 8px;
        padding: 0 8px;
        width: 100%;
    }
    
    .shape-button .label-shape {
        height: 55px;
        max-width: 220px;
        width: 100%;
    }
    
    .shape-button span {
        font-size: clamp(8px, 6vw, 10px);
        letter-spacing: 0.5px;
    }
    
    /* Navigation Ultra Small Mobile */
    .nav-menu {
        width: 95%;
        max-width: 260px;
    }
    
    .nav-link {
        font-size: 0.9rem;
        padding: 10px 12px;
    }
    
    .nav-logo .logo span {
        font-size: 0.9rem;
    }
    
    /* Ultra Small Mobile Dropdown Fix */
    .dropdown {
        position: static;
        width: 100%;
    }
    
    .dropdown-menu {
        position: static !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        box-shadow: none !important;
        background: rgba(255, 255, 255, 0.1) !important;
        margin: 0 !important;
        padding: 0 !important;
        border: 1px solid rgba(255, 255, 255, 0.2) !important;
        border-radius: 8px !important;
        margin-top: var(--spacing-xs) !important;
        backdrop-filter: blur(10px) !important;
        min-width: 100% !important;
        width: 100% !important;
        left: 0 !important;
        top: auto !important;
    }
    
    .dropdown-menu a {
        padding: 8px 12px !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
        font-size: 0.8rem !important;
    }
    
    .dropdown-menu a:last-child {
        border-bottom: none !important;
    }
    
    .dropdown-menu a:hover {
        background: rgba(201, 169, 110, 0.15) !important;
        padding-left: 16px !important;
    }
    
    /* Package Cards Ultra Small Mobile */
    .package-card {
        padding: var(--spacing-sm);
        border-radius: 12px;
        width: 100%;
        box-sizing: border-box;
    }
    
    .package-title {
        font-size: clamp(1.1rem, 7vw, 1.3rem);
        width: 100%;
    }
    
    .package-description {
        font-size: 0.8rem;
        line-height: 1.4;
        width: 100%;
    }
    
    .package-features li {
        font-size: 0.75rem;
        padding-left: var(--spacing-sm);
    }
    
    .package-svg-btn {
        max-width: 220px;
        width: 100%;
    }
    
    .package-svg-btn .package-shape {
        height: 50px;
        width: 100%;
    }
    
    .package-svg-btn span {
        font-size: clamp(7px, 6vw, 9px);
    }
    
    /* Trust Indicators Ultra Small Mobile */
    .trust-item {
        padding: var(--spacing-sm);
        width: 100%;
        box-sizing: border-box;
    }
    
    .trust-item h3 {
        font-size: clamp(1.1rem, 7vw, 1.3rem);
    }
    
    .trust-item p {
        font-size: 0.75rem;
    }
    
    /* Contact Form Ultra Small Mobile */
    .contact-form {
        padding: var(--spacing-sm);
        border-radius: 12px;
        width: 100%;
        box-sizing: border-box;
    }
    
    .contact-form h2 {
        font-size: clamp(1.1rem, 7vw, 1.3rem);
    }
    
    .contact-form input,
    .contact-form select,
    .contact-form textarea {
        padding: 10px 12px;
        font-size: 16px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .section-title {
        font-size: clamp(1.2rem, 7vw, 1.4rem);
    }
    
    .section-subtitle {
        font-size: clamp(0.8rem, 4.5vw, 0.9rem);
    }
}

/* Extra Small Mobile - Enhanced */
@media (max-width: 320px) {
    html {
        font-size: 11px;
    }
    
    .container {
        padding: 0 6px;
    }
    
    .hero {
        padding: 60px 0 15px;
        background: url('../assets/svg/Images/peacockbgi.png') center/140% no-repeat scroll !important;
    }
    
    .hero-text {
        background: rgba(0, 0, 0, 0.85);
        padding: 12px;
        border-radius: 8px;
    }
    
    .hero-title {
        font-size: 1rem;
        line-height: 1.2;
    }
    
    .hero-description {
        font-size: 0.75rem;
        line-height: 1.3;
    }
    
    .shape-button .label-shape {
        width: 180px;
        height: 50px;
    }
    
    .shape-button span {
        font-size: 8px;
        letter-spacing: 0.4px;
    }
    
    .nav-link {
        font-size: 0.85rem;
        padding: 8px 10px;
    }
    
    .package-title {
        font-size: 1rem;
    }
    
    .package-description {
        font-size: 0.75rem;
    }
    
    .package-features li {
        font-size: 0.7rem;
    }
    
    .package-svg-btn .package-shape {
        height: 45px;
    }
    
    .package-svg-btn span {
        font-size: 8px;
    }
    
    .trust-item h3 {
        font-size: 1rem;
    }
    
    .trust-item p {
        font-size: 0.7rem;
    }
    
    .contact-form {
        padding: 12px;
    }
    
    .contact-form h2 {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.1rem;
    }
    
    .section-subtitle {
        font-size: 0.75rem;
    }
}

/* Mobile Performance & UX Enhancements */
@media (max-width: 768px) {
    /* Reduce motion for better performance */
    @media (prefers-reduced-motion: reduce) {
        * {
            animation-duration: 0.01ms !important;
            animation-iteration-count: 1 !important;
            transition-duration: 0.01ms !important;
        }
    }
    
    /* Loading states for mobile */
    .shape-button.loading .label-shape,
    .package-svg-btn.loading .package-shape {
        opacity: 0.7;
        pointer-events: none;
    }
    
    .shape-button.loading .label-shape::after,
    .package-svg-btn.loading .package-shape::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 20px;
        height: 20px;
        margin: -10px 0 0 -10px;
        border: 2px solid transparent;
        border-top: 2px solid #ffffff;
        border-radius: 50%;
        animation: spin 1s linear infinite;
    }
    
    @keyframes spin {
        0% { transform: rotate(0deg); }
        100% { transform: rotate(360deg); }
    }
    
    /* Mobile-specific scroll indicators */
    .scroll-indicator {
        display: block;
        position: fixed;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        width: 30px;
        height: 50px;
        border: 2px solid rgba(201, 169, 110, 0.5);
        border-radius: 25px;
        opacity: 0.7;
        animation: bounce 2s infinite;
        z-index: 100;
    }
    
    .scroll-indicator::before {
        content: '';
        position: absolute;
        top: 8px;
        left: 50%;
        width: 6px;
        height: 6px;
        margin-left: -3px;
        background: var(--accent-color);
        border-radius: 50%;
        animation: scroll-wheel 2s infinite;
    }
    
    @keyframes bounce {
        0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
        40% { transform: translateX(-50%) translateY(-10px); }
        60% { transform: translateX(-50%) translateY(-5px); }
    }
    
    @keyframes scroll-wheel {
        0% { opacity: 1; transform: translateY(0); }
        100% { opacity: 0; transform: translateY(20px); }
    }
    
    /* Mobile swipe gestures hint */
    .swipe-hint {
        position: fixed;
        bottom: 80px;
        left: 50%;
        transform: translateX(-50%);
        color: rgba(255, 255, 255, 0.6);
        font-size: 0.8rem;
        animation: fadeOut 3s forwards;
        pointer-events: none;
        z-index: 100;
    }
    
    @keyframes fadeOut {
        0% { opacity: 0; }
        20% { opacity: 1; }
        80% { opacity: 1; }
        100% { opacity: 0; }
    }
    
    /* Mobile safe area handling */
    @supports (padding: max(0px)) {
        .hero {
            padding-left: max(var(--spacing-md), env(safe-area-inset-left));
            padding-right: max(var(--spacing-md), env(safe-area-inset-right));
            padding-top: max(120px, env(safe-area-inset-top));
        }
        
        .header {
            padding-left: max(var(--spacing-md), env(safe-area-inset-left));
            padding-right: max(var(--spacing-md), env(safe-area-inset-right));
        }
        
        .nav-menu {
            padding-left: max(var(--spacing-xl), env(safe-area-inset-left));
            padding-right: max(var(--spacing-xl), env(safe-area-inset-right));
        }
    }
    
    /* Mobile focus states */
    .shape-button:focus,
    .package-svg-btn:focus,
    .nav-link:focus,
    .contact-form input:focus,
    .contact-form textarea:focus {
        outline: 2px solid var(--accent-color);
        outline-offset: 2px;
    }
    
    /* Mobile print styles */
    @media print {
        .header,
        .nav-toggle,
        .floating-elements,
        .scroll-indicator,
        .swipe-hint {
            display: none !important;
        }
        
        .hero {
            min-height: auto;
            padding: 40px 0;
        }
        
        .shape-button,
        .package-svg-btn {
            background: #c9a96e !important;
            color: #000000 !important;
        }
    }
}

/* Tablet Optimizations */
@media (min-width: 769px) and (max-width: 1024px) {
    .hero-title {
        font-size: clamp(2rem, 4vw, 2.8rem);
    }
    
    .hero-description {
        font-size: clamp(1rem, 2.5vw, 1.2rem);
    }
    
    .packages-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-xl);
    }
    
    .trust-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .shape-button .label-shape {
        width: 320px;
        height: 85px;
    }
    
    .package-svg-btn .package-shape {
        height: 70px;
    }
}

/* Large Mobile/Tablet Landscape */
@media (min-width: 481px) and (max-width: 768px) and (orientation: landscape) {
    .hero {
        padding: 80px 0 40px;
    }
    
    .hero-title {
        font-size: clamp(1.8rem, 3.5vw, 2.2rem);
    }
    
    .hero-description {
        font-size: clamp(0.9rem, 2vw, 1rem);
        margin-top: var(--spacing-md) !important;
    }
    
    .hero-actions {
        margin-top: var(--spacing-md) !important;
    }
    
    .shape-button .label-shape {
        height: 60px;
        width: 250px;
    }
    
    .packages-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-lg);
    }
}

/* Landscape Mobile Optimizations */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        min-height: 100vh;
        padding: 60px 0 40px;
    }
    
    .hero-title {
        font-size: clamp(1.4rem, 4vw, 2rem);
        margin-bottom: var(--spacing-md);
    }
    
    .hero-description {
        font-size: clamp(0.8rem, 2.5vw, 1rem);
        margin-top: var(--spacing-md) !important;
    }
    
    .hero-actions {
        margin-top: var(--spacing-md) !important;
    }
    
    .shape-button .label-shape {
        width: 220px;
        height: 60px;
    }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .shape-button .label-shape,
    .package-svg-btn .package-shape,
    .navbar-shape-button .navbar-label-shape {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
}


/* Perfect Navbar Ornamental Button */
.navbar-shape-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar-shape-button .navbar-label-shape {
    width: 120px;
    height: 45px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 2px 6px rgba(201, 169, 110, 0.3));
}

.navbar-shape-button .navbar-label-shape path {
    fill: #c9a96e;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar-shape-button span {
    position: absolute;
    color: #ffffff;
    font-weight: 600;
    font-size: 11px;
    text-align: center;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}

/* Hover Effects */
.navbar-shape-button:hover .navbar-label-shape {
    filter: drop-shadow(0 4px 12px rgba(201, 169, 110, 0.4));
    transform: translateY(-1px);
}

.navbar-shape-button:hover .navbar-label-shape path {
    fill: #d4af37;
}

.navbar-shape-button:hover span {
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Active State */
.navbar-shape-button:active .navbar-label-shape {
    transform: translateY(0) scale(0.98);
    filter: drop-shadow(0 1px 4px rgba(201, 169, 110, 0.5));
}

/* Mobile Responsive for Navbar */
@media (max-width: 768px) {
    .navbar-shape-button .navbar-label-shape {
        width: 100px;
        height: 38px;
    }
    
    .navbar-shape-button span {
        font-size: 9px;
        letter-spacing: 0.8px;
    }
}

@media (max-width: 480px) {
    .navbar-shape-button .navbar-label-shape {
        width: 85px;
        height: 32px;
    }
    
    .navbar-shape-button span {
        font-size: 8px;
        letter-spacing: 0.6px;
    }
}

/* Package SVG Buttons */
.package-svg-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    overflow: visible;
}

.package-svg-btn .package-shape {
    width: 100%;
    height: 60px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 4px 12px rgba(201, 169, 110, 0.3));
    overflow: visible;
}

.package-svg-btn .package-shape path {
    fill: #c9a96e;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.package-svg-btn .package-shape path:nth-child(2) {
    fill: #ffffff;
}

.package-svg-btn span {
    position: absolute;
    color: #000000;
    font-weight: 600;
    font-size: 11px;
    text-align: center;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.3);
    z-index: 2;
}

/* Hover Effects */
.package-svg-btn:hover .package-shape {
    filter: drop-shadow(0 8px 20px rgba(201, 169, 110, 0.4));
    transform: translateY(-2px);
}

.package-svg-btn:hover .package-shape path:nth-child(1) {
    fill: #d4af37;
}

.package-svg-btn:hover span {
    color: #000000;
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.4);
}

/* Active State */
.package-svg-btn:active .package-shape {
    transform: translateY(0) scale(0.98);
    filter: drop-shadow(0 2px 8px rgba(201, 169, 110, 0.5));
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .package-svg-btn .package-shape {
        height: 55px;
    }
    
    .package-svg-btn span {
        font-size: 10px;
        letter-spacing: 0.8px;
    }
}

@media (max-width: 480px) {
    .package-svg-btn .package-shape {
        height: 50px;
    }
    
    .package-svg-btn span {
        font-size: 9px;
        letter-spacing: 0.6px;
    }
}