/* CSS Variables - Complementary Color Scheme */
:root {
    /* Primary Colors */
    --primary-color: #FF6B35;
    --primary-light: #FF8A61;
    --primary-dark: #E55529;
    
    /* Secondary Colors (Complementary) */
    --secondary-color: #35BAFF;
    --secondary-light: #61C9FF;
    --secondary-dark: #29A3E5;
    
    /* Accent Colors */
    --accent-color: #FFD23F;
    --accent-light: #FFDC66;
    --accent-dark: #E5BD32;
    
    /* Neutral Colors */
    --white: #FFFFFF;
    --light-gray: #F8F9FA;
    --medium-gray: #6C757D;
    --dark-gray: #343A40;
    --black: #000000;
    
    /* Neumorphism Colors */
    --neu-bg: #E8EDF4;
    --neu-shadow-light: #FFFFFF;
    --neu-shadow-dark: #C8D0D8;
    
    /* Typography */
    --font-heading: 'Manrope', sans-serif;
    --font-body: 'Rubik', sans-serif;
    
    /* Spacing */
    --section-padding: 100px;
    --container-max-width: 1200px;
    
    /* Shadows */
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 15px 60px rgba(0, 0, 0, 0.15);
    --neu-shadow: 8px 8px 16px var(--neu-shadow-dark), -8px -8px 16px var(--neu-shadow-light);
    --neu-shadow-inset: inset 8px 8px 16px var(--neu-shadow-dark), inset -8px -8px 16px var(--neu-shadow-light);
    
    /* Border Radius */
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    --border-radius-xl: 32px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--white);
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 0.5em;
    color: var(--dark-gray);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 600;
}

h4 {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition-fast);
}

a:hover {
    color: var(--primary-dark);
    text-decoration: none;
}

/* Global Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    border: none;
    border-radius: var(--border-radius-md);
    cursor: pointer;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
    background: var(--neu-bg);
    box-shadow: var(--neu-shadow);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: var(--transition-normal);
}

.btn:hover:before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-dark));
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, var(--secondary-dark), var(--secondary-color));
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline-light {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    box-shadow: none;
}

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

.btn-lg {
    padding: 18px 42px;
    font-size: 1.1rem;
}

/* Header */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1rem 0;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-sm);
}

.navbar-brand {
    display: flex;
    align-items: center;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--primary-color);
}

.navbar-brand img {
    margin-right: 12px;
    border-radius: 50%;
    transition: var(--transition-fast);
}

.navbar-brand:hover img {
    transform: scale(1.1) rotate(5deg);
}

.nav-link {
    font-family: var(--font-heading);
    font-weight: 500;
    color: var(--dark-gray);
    margin: 0 8px;
    padding: 8px 16px;
    border-radius: var(--border-radius-sm);
    transition: var(--transition-fast);
}

.nav-link:hover {
    color: var(--primary-color);
    background: rgba(255, 107, 53, 0.1);
    transform: translateY(-1px);
}

/* Utility Classes */
.section-padding {
    padding: var(--section-padding) 0;
}

.section-title {
    text-align: center;
    color: var(--dark-gray);
    margin-bottom: 1rem;
    position: relative;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    color: var(--medium-gray);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 3rem;
}

/* Card Components */
.card {
    background: var(--white);
    border: none;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--neu-shadow);
    transition: var(--transition-normal);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.card-image {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
    margin: 0 auto;
}

.card:hover .card-image img {
    transform: scale(1.1);
}

.card-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.card-content h4 {
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.card-content p {
    color: var(--medium-gray);
    flex-grow: 1;
}

/* Hero Section */
.hero-section {
    position: relative;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 0;
}

.hero-title {
    color: var(--white) !important;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    color: var(--white) !important;
    font-size: 1.5rem;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.7);
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-description {
    color: var(--white) !important;
    font-size: 1.2rem;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.7);
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-buttons {
    animation: fadeInUp 1s ease-out 0.9s both;
}

/* Portfolio/Attractions Section */
#portfolio {
    background: linear-gradient(135deg, var(--light-gray), var(--white));
}

.attraction-card {
    background: var(--white);
    border-radius: var(--border-radius-xl);
    overflow: hidden;
    transition: var(--transition-normal);
    position: relative;
}

.attraction-card:hover {
    transform: translateY(-15px) rotateY(5deg);
    box-shadow: var(--shadow-lg);
}

.attraction-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

/* Success Stories Section */
.success-story-card {
    background: linear-gradient(135deg, var(--white), var(--light-gray));
    border: 1px solid rgba(255, 107, 53, 0.1);
    position: relative;
    align-items: center;
}

.success-story-card:before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: var(--border-radius-lg);
    z-index: -1;
    opacity: 0;
    transition: var(--transition-normal);
}

.success-story-card:hover:before {
    opacity: 1;
}

.story-stats {
    margin-bottom: 1.5rem;
    text-align: center;
}

.stat-item h3 {
    font-size: 3rem;
    color: var(--primary-color);
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: var(--medium-gray);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.story-author {
    margin-top: 2rem;
    text-align: center;
}

.story-author strong {
    display: block;
    color: var(--dark-gray);
    font-size: 1.1rem;
}

.story-author span {
    color: var(--medium-gray);
    font-size: 0.9rem;
}

/* Research Section */
#research {
    background: var(--neu-bg);
}

.research-content h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.research-stats {
    margin-top: 2rem;
}

.stat-widget {
    text-align: center;
    padding: 1.5rem;
    background: var(--white);
    border-radius: var(--border-radius-md);
    box-shadow: var(--neu-shadow);
    transition: var(--transition-fast);
}

.stat-widget:hover {
    transform: translateY(-5px);
}

.stat-widget h4 {
    color: var(--secondary-color);
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

/* Resources Section */
.resource-card {
    background: var(--white);
    border-left: 5px solid var(--accent-color);
    transition: var(--transition-normal);
}

.resource-card:hover {
    border-left-color: var(--primary-color);
    transform: translateX(10px);
}

/* Press Section */
.press-card {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.press-card:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: translate(50%, -50%);
}

.press-date {
    color: var(--accent-light);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.press-card h4 {
    color: var(--white);
    margin-bottom: 1rem;
}

.press-card p {
    color: rgba(255, 255, 255, 0.9);
}

/* Customer Stories Section */
.customer-story-card {
    background: var(--white);
    border-radius: var(--border-radius-xl);
    position: relative;
    padding: 0;
    align-items: stretch;
}

.customer-info {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    text-align: left;
}

.image-container {
    margin-right: 1rem;
    flex-shrink: 0;
}

.image-container img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--primary-color);
}

.customer-details h5 {
    color: var(--dark-gray);
    margin-bottom: 0.25rem;
}

.customer-details span {
    color: var(--medium-gray);
    font-size: 0.9rem;
}

.rating {
    margin-top: 1rem;
    color: var(--accent-color);
    font-weight: 600;
    text-align: center;
}

/* Pricing Section */
#pricing {
    background: linear-gradient(135deg, var(--light-gray), rgba(255, 107, 53, 0.05));
}

.pricing-card {
    background: var(--white);
    border-radius: var(--border-radius-xl);
    position: relative;
    transition: var(--transition-normal);
    text-align: center;
    align-items: center;
}

.pricing-card.featured {
    transform: scale(1.05);
    border: 3px solid var(--primary-color);
}

.pricing-card:hover {
    transform: translateY(-10px) scale(1.02);
}

.pricing-card.featured:hover {
    transform: translateY(-10px) scale(1.07);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--accent-color), var(--accent-dark));
    color: var(--dark-gray);
    padding: 8px 24px;
    border-radius: var(--border-radius-lg);
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: var(--shadow-md);
}

.price {
    text-align: center;
    margin: 2rem 0;
}

.currency {
    font-size: 1.5rem;
    vertical-align: top;
    color: var(--primary-color);
}

.amount {
    font-size: 4rem;
    font-weight: 800;
    color: var(--primary-color);
}

.period {
    display: block;
    color: var(--medium-gray);
    font-size: 1rem;
    margin-top: 0.5rem;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.pricing-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--light-gray);
    position: relative;
    padding-left: 2rem;
}

.pricing-features li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.pricing-features li:last-child {
    border-bottom: none;
}

/* Instructors Section */
.instructor-card {
    background: var(--white);
    border-radius: var(--border-radius-xl);
    overflow: hidden;
    position: relative;
    text-align: center;
    align-items: center;
}

.instructor-card .card-image {
    height: 300px;
    position: relative;
}

.instructor-card .card-image img {
    border-radius: 50%;
    width: 200px;
    height: 200px;
    object-fit: cover;
    margin: 2rem auto;
    border: 5px solid var(--white);
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

.instructor-card:hover .card-image img {
    transform: scale(1.1);
    box-shadow: var(--shadow-lg);
}

.instructor-title {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

/* Process Section */
#our-process {
    background: var(--neu-bg);
}

.process-step {
    text-align: center;
    padding: 2rem;
    position: relative;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    border-radius: 50%;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition-fast);
}

.process-step:hover .step-number {
    transform: scale(1.1) rotate(10deg);
}

.process-step h4 {
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.process-step p {
    color: var(--medium-gray);
}

/* Contact Section */
#contact {
    background: linear-gradient(135deg, var(--light-gray), var(--white));
}

.contact-form-container {
    background: var(--white);
    padding: 3rem;
    border-radius: var(--border-radius-xl);
    box-shadow: var(--neu-shadow);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--dark-gray);
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--light-gray);
    border-radius: var(--border-radius-md);
    font-size: 1rem;
    transition: var(--transition-fast);
    background: var(--white);
    box-shadow: inset 2px 2px 4px rgba(0,0,0,0.05);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--dark-gray), #2c3e50);
    color: var(--white);
    padding: 4rem 0 2rem;
    position: relative;
}

.footer:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--accent-color));
}

.footer-section h5 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.footer-section h6 {
    color: var(--accent-light);
    margin-bottom: 1rem;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.footer-contact p {
    margin-bottom: 0.5rem;
}

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

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition-fast);
    position: relative;
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 10px;
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-radius: 50%;
    text-decoration: none;
    transition: var(--transition-normal);
    font-weight: 600;
    font-size: 0.9rem;
    backdrop-filter: blur(10px);
}

.social-links a:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px) scale(1.1);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 3rem;
    padding-top: 2rem;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* Success Page */
.success-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    text-align: center;
}

.success-content h1 {
    color: var(--white);
    margin-bottom: 2rem;
}

.success-content p {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    max-width: 600px;
}

/* Privacy and Terms Pages */
.privacy-page,
.terms-page {
    padding-top: 120px;
    padding-bottom: 4rem;
}

.privacy-content,
.terms-content {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 3rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Scroll Animations */
.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

.slide-in-left {
    animation: slideInLeft 0.8s ease-out;
}

.slide-in-right {
    animation: slideInRight 0.8s ease-out;
}

/* Responsive Design */
@media (max-width: 1200px) {
    :root {
        --section-padding: 80px;
    }
}

@media (max-width: 992px) {
    :root {
        --section-padding: 60px;
    }
    
    .hero-buttons .btn {
        margin: 0.5rem;
        display: block;
        width: 100%;
    }
    
    .customer-info {
        flex-direction: column;
        text-align: center;
    }
    
    .image-container {
        margin-right: 0;
        margin-bottom: 1rem;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 40px;
    }
    
    .contact-form-container {
        padding: 2rem;
    }
    
    .pricing-card.featured {
        transform: none;
        margin-bottom: 2rem;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .instructor-card .card-image img {
        width: 150px;
        height: 150px;
    }
}

@media (max-width: 576px) {
    .navbar-brand {
        font-size: 1.2rem;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
    
    .btn-lg {
        padding: 14px 28px;
        font-size: 1rem;
    }
    
    .hero-buttons .btn {
        margin: 0.25rem 0;
    }
    
    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

/* Performance Optimizations */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

.parallax {
    will-change: transform;
}

/* High DPI Display Optimizations */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .card-image,
    .hero-section {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Focus States for Accessibility */
.btn:focus,
.form-control:focus,
.nav-link:focus {
    outline: 3px solid var(--accent-color);
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .navbar,
    .footer,
    .btn {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    .section-padding {
        padding: 20px 0;
    }
}