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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: linear-gradient(135deg, #1a1a2e, #16213e, #0f3460);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    font-weight: 800;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.8rem;
}

p {
    margin-bottom: 1rem;
    color: #e8e8e8;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

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

.nav-logo .logo-text {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffd700;
    text-decoration: none;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #ffd700;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ffd700;
    transition: width 0.3s ease;
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section - Enhanced Responsive */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    max-height: 1000px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(26, 26, 46, 0.8) 0%,
        rgba(22, 33, 62, 0.7) 50%,
        rgba(15, 52, 96, 0.6) 100%
    );
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 2rem;
    width: 100%;
}

.hero-text {
    margin-bottom: 3rem;
}

.hero-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.1;
    letter-spacing: 0.02em;
}

.hero-title .highlight {
    color: #ffd700;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.hero-subtitle {
    font-size: clamp(1.3rem, 4vw, 1.8rem);
    color: #ffd700;
    margin-bottom: 2rem;
    font-weight: 600;
    line-height: 1.3;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-description {
    font-size: clamp(1.1rem, 3vw, 1.3rem);
    line-height: 1.8;
    margin-bottom: 3.5rem;
    color: #e8e8e8;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 2rem;
}

/* Responsive Hero Adjustments */
@media (max-width: 1200px) {
    .hero-content {
        max-width: 800px;
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 600px;
        height: 100vh;
    }
    
    .hero-content {
        padding: 2rem 1rem;
        margin-top: 2rem;
        max-width: 100%;
        z-index: 3;
    }
    
    .hero-text {
        margin-bottom: 2.5rem;
    }
    
    .hero-title {
        font-size: clamp(2.2rem, 7vw, 3rem);
        margin-bottom: 1.5rem;
        line-height: 1.1;
    }
    
    .hero-subtitle {
        font-size: clamp(1.1rem, 4vw, 1.4rem);
        margin-bottom: 1.8rem;
    }
    
    .hero-description {
        font-size: clamp(1rem, 3vw, 1.2rem);
        margin-bottom: 3rem;
        line-height: 1.7;
    }
    
    .hero-buttons {
        gap: 1.5rem;
        margin-top: 2rem;
    }
}
        font-size: clamp(1.1rem, 4vw, 1.3rem);
        margin-bottom: 1.2rem;
    }
    
    .hero-description {
        font-size: clamp(0.95rem, 3.5vw, 1.1rem);
        line-height: 1.6;
        margin-bottom: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        width: 100%;
    }
    
    .hero-bg-image {
        object-position: center top;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 450px;
    }
    
    .hero-content {
        padding: 0.8rem;
    }
    
    .hero-title {
        font-size: clamp(1.8rem, 7vw, 2.2rem);
        margin-bottom: 0.8rem;
    }
    
    .hero-subtitle {
        font-size: clamp(1rem, 4.5vw, 1.2rem);
        margin-bottom: 1rem;
    }
    
    .hero-description {
        font-size: clamp(0.9rem, 4vw, 1rem);
        line-height: 1.5;
        margin-bottom: 1.5rem;
    }
    
    .hero-buttons {
        gap: 0.8rem;
    }
}

/* Landscape mobile optimization */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        min-height: 400px;
        height: 100vh;
    }
    
    .hero-content {
        padding: 0.5rem;
    }
    
    .hero-title {
        font-size: clamp(1.5rem, 5vw, 2rem);
        margin-bottom: 0.5rem;
    }
    
    .hero-subtitle {
        font-size: clamp(0.9rem, 3vw, 1.1rem);
        margin-bottom: 0.8rem;
    }
    
    .hero-description {
        font-size: clamp(0.8rem, 2.5vw, 0.95rem);
        line-height: 1.4;
        margin-bottom: 1rem;
    }
    
    .hero-buttons {
        gap: 0.5rem;
    }
}

/* Genie Animation - Responsive */
.genie-container {
    /* Default positioning for tablets and smaller - mobile-style */
    position: static;
    z-index: 2;
    pointer-events: none;
    width: 208px; /* 30% bigger than 160px */
    height: 208px; /* 30% bigger than 160px */
    opacity: 0.9;
    margin: 0.3rem auto;
    display: block;
    transform: none;
}

/* Desktop positioning for 11-inch laptops and above (1366px+) */
@media (min-width: 1366px) {
    .genie-container {
        position: absolute;
        /* Desktop positioning - dramatic effect for large screens only */
        left: auto;
        right: -35%; /* Far to the right */
        top: 55%; /* Closer to center */
        transform: translateY(-50%);
        width: min(450px, 30vw);
        height: min(450px, 30vw);
        max-width: 450px;
        max-height: 450px;
        min-width: 300px;
        min-height: 300px;
        margin: 0;
        display: block;
        opacity: 1;
    }
}

#genie-animation {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.3));
    animation: gentleFloat 6s ease-in-out infinite;
}

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

/* Tablet responsive gen/* Mobile positioning - each element on separate line */
@media (max-width: 768px) {
    .hero {
        min-height: 120vh;
        display: flex;
        align-items: flex-start;
        justify-content: center;
        padding-top: 20px;
    }
    
    .hero-content {
        position: relative;
        z-index: 3;
        padding: 1.5rem 1rem 4rem 1rem;
        margin-top: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        width: 100%;
        max-width: 100%;
        min-height: 100vh;
        justify-content: flex-start;
    }
    
    .hero-text {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 1rem;
    }
    
    .hero-title {
        order: 1;
        margin-bottom: 0.8rem;
        font-size: clamp(1.8rem, 6vw, 2.5rem);
        line-height: 1.2;
        text-align: center;
        width: 100%;
        margin-top: 0;
    }
    
    .genie-container {
        /* Default mobile-style positioning already applied, no overrides needed */
        order: 2;
        flex-shrink: 0;
    }
    
    .hero-subtitle {
        order: 3;
        margin-top: 0.3rem;
        margin-bottom: 1.2rem;
        font-size: clamp(1rem, 4vw, 1.3rem);
        text-align: center;
        width: 100%;
    }
    
    .hero-description {
        order: 4;
        margin-bottom: 1.5rem;
        font-size: clamp(0.9rem, 3.5vw, 1.1rem);
        text-align: center;
        line-height: 1.6;
    }
    
    .hero-buttons {
        order: 5;
        margin-top: 1.5rem;
        display: flex;
        flex-direction: column;
        gap: 0.8rem;
        width: 100%;
        align-items: center;
        padding-bottom: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 130vh;
        padding-top: 15px;
    }
    
    .genie-container {
        /* Uses default 160px size - no override needed */
        order: 2;
        flex-shrink: 0;
    }
    
    .hero-content {
        padding: 1.2rem 1rem 2.5rem 1rem;
    }
    
    .hero-title {
        font-size: clamp(1.6rem, 7vw, 2rem);
        margin-bottom: 0.5rem;
        margin-top: 0;
    }
    
    .hero-subtitle {
        font-size: clamp(0.9rem, 4vw, 1.1rem);
        margin-top: 0.2rem;
        margin-bottom: 1rem;
    }
    
    .hero-description {
        margin-bottom: 1.2rem;
        font-size: clamp(0.85rem, 3.2vw, 1rem);
    }
    
    .hero-buttons {
        margin-top: 1.2rem;
        gap: 0.6rem;
        padding-bottom: 1.2rem;
    }
}

/* Extra small screens */
@media (max-width: 360px) {
    .genie-container {
        width: 182px; /* 30% bigger than previous 140px */
        height: 182px;
        margin: 0.8rem auto;
        opacity: 0.7;
    }
}

/* Tablet responsive */tion {
        opacity: 0.8; /* Slightly transparent on mobile */
    }
}

/* Extra small screens - genie animation opacity only */
@media (max-width: 480px) {
    #genie-animation {
        opacity: 0.7;
    }
}

/* Extra large screens */
@media (min-width: 1400px) {
    .genie-container {
        right: -30%; /* Slightly less dramatic for very large screens */
        left: auto;
        width: 400px;
        height: 400px;
    }
}

/* Buttons - Touch-Friendly Enhanced */
.btn {
    display: inline-block;
    padding: clamp(0.8rem, 2vw, 1rem) clamp(1.5rem, 3vw, 2rem);
    border: none;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: clamp(1rem, 2vw, 1.1rem);
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 44px; /* Minimum touch target size */
    min-width: 120px;
    line-height: 1.4;
    touch-action: manipulation; /* Prevents double-tap zoom */
}

/* Enhanced touch targets for mobile */
@media (max-width: 768px) {
    .btn {
        min-height: 48px;
        min-width: 140px;
        padding: 1rem 2rem;
        font-size: 1rem;
        margin: 0.5rem 0;
    }
}

@media (max-width: 480px) {
    .btn {
        min-height: 50px;
        min-width: 160px;
        padding: 1.1rem 2.2rem;
        font-size: 1.05rem;
    }
}

.btn-primary {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #1a1a2e;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.btn-primary:hover,
.btn-primary:focus {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
    outline: none;
}

/* Touch-friendly active states */
.btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #ffd700;
    border: 2px solid #ffd700;
}

.btn-secondary:hover,
.btn-secondary:focus {
    background: #ffd700;
    color: #1a1a2e;
    transform: translateY(-2px);
    outline: none;
}

.btn-secondary:active {
    transform: translateY(0);
    background: rgba(255, 215, 0, 0.9);
}

/* Large button variant for important CTAs */
.btn-large {
    padding: clamp(1.2rem, 3vw, 1.5rem) clamp(2rem, 4vw, 3rem);
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    min-height: 56px;
    min-width: 180px;
}

@media (max-width: 768px) {
    .btn-large {
        min-height: 60px;
        min-width: 200px;
        padding: 1.3rem 2.5rem;
    }
}

/* Sections - Enhanced Responsive */
.section {
    padding: clamp(4rem, 8vw, 10rem) 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: clamp(3rem, 6vw, 5rem);
}

.section-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(2rem, 5vw, 3rem);
    color: #ffd700;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
    line-height: 1.2;
}

.section-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    color: #e8e8e8;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* About Section - Enhanced */
.about-section {
    background: rgba(26, 26, 46, 0.3);
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
}

.story-text h3 {
    color: #ffd700;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: clamp(1.3rem, 3vw, 1.8rem);
}

.story-text p {
    font-size: clamp(1rem, 2vw, 1.1rem);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.vision-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: clamp(1.5rem, 3vw, 2rem);
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .vision-points {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .vision-points {
        grid-template-columns: repeat(3, 1fr);
    }
}

.vision-point {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: clamp(1rem, 2.5vw, 1.5rem);
    background: rgba(255, 215, 0, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vision-point:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.15);
}

.point-icon {
    font-size: clamp(1.8rem, 3vw, 2rem);
    flex-shrink: 0;
}

.point-content h4 {
    color: #ffd700;
    margin-bottom: 0.5rem;
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    line-height: 1.3;
}

.point-content p {
    font-size: clamp(0.9rem, 1.8vw, 1rem);
    line-height: 1.6;
}

/* Services Section - Enhanced */
.services-section {
    background: rgba(15, 52, 96, 0.2);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: clamp(1.5rem, 3vw, 2rem);
    margin-top: 3rem;
}

@media (min-width: 640px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.service-card {
    background: rgba(26, 26, 46, 0.6);
    padding: clamp(1.5rem, 3vw, 2rem);
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 280px;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 215, 0, 0.5);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.1);
}

.service-icon {
    font-size: clamp(2.5rem, 4vw, 3rem);
    margin-bottom: 1rem;
    line-height: 1;
}

.service-card h3 {
    color: #ffd700;
    margin-bottom: 1rem;
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    line-height: 1.3;
    min-height: 2.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card p {
    font-size: clamp(0.9rem, 1.8vw, 1rem);
    line-height: 1.6;
    flex-grow: 1;
    display: flex;
    align-items: center;
}

/* Studios Section - Enhanced */
.studios-section {
    background: rgba(26, 26, 46, 0.3);
}

.studio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .studio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1200px) {
    .studio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.studio-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: clamp(250px, 30vw, 300px);
    transition: transform 0.3s ease;
}

.studio-card:hover {
    transform: scale(1.02);
}

.studio-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.studio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: clamp(1rem, 2.5vw, 1.5rem);
    color: white;
}

.studio-overlay h4 {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    margin-bottom: 0.5rem;
    color: #ffd700;
}

.studio-overlay p {
    font-size: clamp(0.9rem, 1.8vw, 1rem);
    line-height: 1.5;
}

.upcoming-studios {
    margin-top: 4rem;
}

.upcoming-studios h3 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: #ffd700;
    text-align: center;
    margin-bottom: 2rem;
}

.upcoming-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: clamp(1.5rem, 3vw, 2rem);
}

.upcoming-studio {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: clamp(1.5rem, 3vw, 2rem);
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

.upcoming-studio:hover {
    transform: translateY(-5px);
}

.upcoming-icon {
    font-size: clamp(2.5rem, 4vw, 3rem);
    margin-bottom: 1rem;
    display: block;
}

.upcoming-studio h4 {
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 1rem;
}

.upcoming-studio p {
    font-size: clamp(1rem, 2vw, 1.1rem);
    color: #e0e0e0;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.status-badge {
    background: #ffd700;
    color: #1a1a2e;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: clamp(0.8rem, 1.5vw, 0.9rem);
    display: inline-block;
}

.status-badge {
    }

/* Pricing Section - Enhanced */
.pricing-section {
    background: rgba(15, 52, 96, 0.2);
}

.beta-announcement {
    text-align: center;
    background: linear-gradient(45deg, rgba(255, 215, 0, 0.2), rgba(255, 237, 78, 0.1));
    margin-bottom: 4rem;
    padding: clamp(1.5rem, 3vw, 2rem);
    border-radius: 15px;
}

.beta-badge {
    display: inline-block;
    background: #ffd700;
    color: #1a1a2e;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: clamp(0.9rem, 1.5vw, 1rem);
}

.beta-announcement h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 1rem;
}

.beta-announcement p {
    font-size: clamp(1rem, 2vw, 1.2rem);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: clamp(1.5rem, 3vw, 2rem);
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 800px;
        margin: 2rem auto 0;
    }
}

.pricing-card {
    background: rgba(26, 26, 46, 0.6);
    border-radius: 20px;
    padding: clamp(1.5rem, 3vw, 2rem);
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
}

.pricing-card.featured {
    border-color: #ffd700;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
}

@media (min-width: 768px) {
    .pricing-card.featured {
        transform: scale(1.05);
    }
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 215, 0, 0.5);
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-header h3 {
    color: #ffd700;
    margin-bottom: 1rem;
    font-size: clamp(1.3rem, 2.5vw, 1.5rem);
}

.price {
    font-size: clamp(2.5rem, 5vw, 3rem);
    font-weight: 700;
    color: #ffd700;
    line-height: 1;
}

.price-period {
    color: #e8e8e8;
    margin-top: 0.5rem;
    font-size: clamp(0.9rem, 1.5vw, 1rem);
}

.pricing-features {
    margin-bottom: 2rem;
    flex-grow: 1;
}

.feature {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
    font-size: clamp(0.9rem, 1.8vw, 1rem);
    line-height: 1.5;
}}

/* Contact Section - Enhanced */
.contact-section {
    background: rgba(26, 26, 46, 0.3);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(2rem, 4vw, 4rem);
    max-width: 1000px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr 1fr;
    }
}

.contact-info h3 {
    color: #ffd700;
    margin-bottom: 2rem;
    font-size: clamp(1.5rem, 3vw, 2rem);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    font-size: clamp(1rem, 2vw, 1.1rem);
}

.contact-item i {
    color: #ffd700;
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    width: 2rem;
    text-align: center;
}

.contact-form {
    background: rgba(255, 255, 255, 0.05);
    padding: clamp(1.5rem, 3vw, 2rem);
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: clamp(0.8rem, 2vw, 1rem);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: clamp(0.9rem, 1.8vw, 1rem);
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ffd700;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Language Switcher */
}

.contact-item i {
    color: #ffd700;
    width: 20px;
}

.contact-form {
    background: rgba(26, 26, 46, 0.6);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 10px;
    background: rgba(26, 26, 46, 0.8);
    color: #ffffff;
    font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ffd700;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

/* Footer - Enhanced Layout */
.footer {
    background: rgba(26, 26, 46, 0.95);
    padding: 4rem 0 2rem;
    border-top: 2px solid rgba(255, 215, 0, 0.3);
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
}

.footer-logo span {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffd700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.footer-links {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a {
    color: #e8e8e8;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
}

.footer-links a:hover {
    color: #ffd700;
    transform: translateY(-2px);
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #ffd700;
    transition: width 0.3s ease;
}

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

.footer-social {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.footer-social a {
    color: #e8e8e8;
    font-size: 1.8rem;
    transition: all 0.3s ease;
    padding: 0.8rem;
    border-radius: 50%;
    background: rgba(255, 215, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
}

.footer-social a:hover {
    color: #ffd700;
    background: rgba(255, 215, 0, 0.2);
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.footer-bottom {
    text-align: center;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
    color: #e8e8e8;
    font-size: 1rem;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 2rem;
    padding-right: 2rem;
}

/* Footer Mobile Responsiveness */
@media (max-width: 768px) {
    .footer {
        padding: 3rem 0 1.5rem;
        margin-top: 3rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .footer-logo span {
        font-size: 1.6rem;
    }
    
    .footer-links {
        gap: 1.5rem;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .footer-links a {
        font-size: 0.95rem;
        min-height: 44px;
        display: flex;
        align-items: center;
    }
    
    .footer-social {
        gap: 1rem;
        justify-content: center;
    }
    
    .footer-social a {
        width: 45px;
        height: 45px;
        font-size: 1.6rem;
    }
    
    .footer-bottom {
        padding-top: 2rem;
        font-size: 0.9rem;
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

/* Language Switcher - Enhanced Visibility */
.language-switcher {
    position: relative;
    z-index: 1000; /* Ensure it's above other elements */
}

.language-dropdown {
    position: relative;
}

.language-btn {
    background: rgba(255, 215, 0, 0.2);
    border: 2px solid rgba(255, 215, 0, 0.5);
    color: #ffd700;
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    min-height: 44px; /* Touch-friendly */
    min-width: 60px;
}

.language-btn:hover,
.language-btn:focus {
    background: rgba(255, 215, 0, 0.3);
    border-color: #ffd700;
    transform: translateY(-2px);
    outline: none;
}

.language-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: rgba(26, 26, 46, 0.98);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 10px;
    padding: 0.5rem 0;
    min-width: 150px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
}

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

.language-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    color: #ffffff;
    text-decoration: none;
    transition: background 0.3s ease;
}

.language-option:hover,
.language-option.active {
    background: rgba(255, 215, 0, 0.1);
    color: #ffd700;
}

.language-option .flag {
    font-size: 1.2rem;
}

/* Enhanced Mobile Navigation */
@media (max-width: 768px) {
    .navbar {
        padding: 0.8rem 0;
    }
    
    .nav-container {
        position: relative;
        padding: 0 15px;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(26, 26, 46, 0.98);
        backdrop-filter: blur(15px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding: 2rem 0;
        gap: 1.5rem;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 999;
    }
    
    .nav-menu.active {
        transform: translateX(0);
    }
    
    .nav-link {
        font-size: 1.2rem;
        padding: 1.2rem 2rem;
        width: 80%;
        text-align: center;
        border-radius: 10px;
        transition: all 0.3s ease;
        min-height: 48px; /* Touch-friendly height */
        display: flex;
        align-items: center;
        justify-content: center;
        touch-action: manipulation;
    }
    
    .nav-link:hover,
    .nav-link:focus {
        background: rgba(255, 215, 0, 0.1);
        transform: translateY(-2px);
        outline: none;
    }
    
    .nav-link:active {
        transform: translateY(0);
        background: rgba(255, 215, 0, 0.15);
    }
    
    .nav-toggle {
        display: flex;
        z-index: 1001;
        position: relative;
        padding: 0.5rem;
        min-width: 44px;
        min-height: 44px;
        justify-content: center;
        align-items: center;
        touch-action: manipulation;
    }
    
    .nav-toggle:hover,
    .nav-toggle:focus {
        background: rgba(255, 215, 0, 0.1);
        border-radius: 8px;
        outline: none;
    }
    
    .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);
    }
    
    .nav-container {
        position: relative;
        padding: 0 15px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .nav-logo {
        flex: 1;
    }
    
    .language-switcher {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        order: 2;
        margin-right: 1rem;
    }
    
    .nav-toggle {
        order: 3;
    }
    
    .language-btn {
        min-height: 44px;
        min-width: 60px;
        padding: 0.6rem 1rem;
        touch-action: manipulation;
        font-size: 0.9rem;
    }
    
    .language-menu {
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        right: auto;
        min-width: 200px;
    }
    
    .language-option {
        padding: 1rem 1.5rem;
        min-height: 48px;
        display: flex;
        align-items: center;
        touch-action: manipulation;
    }
    
    .hero-title {
        font-size: 2.5rem;
        text-align: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
        min-height: 50px;
        font-size: 1rem;
    }
    
    .hero-content {
        padding: 1rem;
        margin-top: 2rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
        line-height: 1.6;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    /* Genie uses default 160px size - no override needed */
    
    .section {
        padding: 3rem 0;
    }
    
    .container {
        padding: 0 15px;
    }
}



/* Partnership Page Styles */
.partnership-hero {
    height: 60vh;
}

.partnership-details {
    background: rgba(26, 26, 46, 0.3);
}

.partnership-content {
    max-width: 1200px;
    margin: 0 auto;
}

.partnership-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem auto;
    max-width: 1200px;
}

.partnership-card {
    background: rgba(26, 26, 46, 0.6);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.partnership-card.featured {
    border-color: #ffd700;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
    transform: scale(1.02);
}

.partnership-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 215, 0, 0.5);
}

.card-header {
    text-align: center;
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
    padding-bottom: 1rem;
}

.card-header h3 {
    color: #ffd700;
    margin-bottom: 0.5rem;
}

.highlight-text {
    color: #e8e8e8;
    font-style: italic;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.benefits-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
    color: #e8e8e8;
}

.process-steps {
    margin: 2rem 0;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 10px;
}

.step-number {
    background: #ffd700;
    color: #1a1a2e;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h5 {
    color: #ffd700;
    margin-bottom: 0.5rem;
}

.deposit-info, .rental-benefits {
    background: rgba(255, 215, 0, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 1rem;
    border-left: 4px solid #ffd700;
}

.deposit-info h5, .rental-benefits h5 {
    color: #ffd700;
    margin-bottom: 0.5rem;
}

.partnership-cta {
    text-align: center;
    background: linear-gradient(45deg, rgba(255, 215, 0, 0.2), rgba(255, 237, 78, 0.1));
    padding: 3rem;
    border-radius: 20px;
    margin-top: 3rem;
    border: 2px solid rgba(255, 215, 0, 0.3);
}

.partnership-cta h3 {
    color: #ffd700;
    margin-bottom: 1rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* Partnership Form Styles */
.partnership-form-container {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(26, 26, 46, 0.6);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    backdrop-filter: blur(10px);
}

.partnership-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

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

.form-group label {
    color: #ffd700;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 10px;
    background: rgba(26, 26, 46, 0.8);
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ffd700;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.checkbox-group {
    flex-direction: row;
    align-items: flex-start;
    text-align: right;
    word-wrap: break-word;
    max-width: 100%;
    gap: 1rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    text-align: right;
    word-wrap: break-word;
    max-width: 100%;
    gap: 0.5rem;
    cursor: pointer;
    color: #e8e8e8;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.btn-large {
    padding: 1.5rem 3rem;
    font-size: 1.2rem;
    margin-top: 1rem;
}

/* Hero Overlay Fix */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(26, 26, 46, 0.8) 0%,
        rgba(22, 33, 62, 0.7) 50%,
        rgba(15, 52, 96, 0.6) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

/* Responsive Design for Partnership Page */
@media (max-width: 768px) {
    .partnership-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .partnership-form-container {
        padding: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
    }
}


/* White Label Section */
.white-label-section {
    background: linear-gradient(45deg, rgba(255, 215, 0, 0.1), rgba(255, 237, 78, 0.05));
    padding: 2rem;
    border-radius: 20px;
    margin: 2rem 0;
    border: 1px solid rgba(255, 215, 0, 0.3);
    text-align: center;
}

.white-label-section h3 {
    color: #ffd700;
    margin-bottom: 1rem;
}

.white-label-section p {
    color: #e8e8e8;
    line-height: 1.8;
    font-size: 1.1rem;
}


/* Deposit Section */
.deposit-section {
    background: linear-gradient(45deg, rgba(255, 215, 0, 0.15), rgba(255, 237, 78, 0.08));
    padding: 2rem;
    border-radius: 20px;
    margin: 2rem 0;
    border: 1px solid rgba(255, 215, 0, 0.4);
    text-align: center;
}

.deposit-section h3 {
    color: #ffd700;
    margin-bottom: 1rem;
}

.deposit-section p {
    color: #e8e8e8;
    line-height: 1.8;
    font-size: 1.1rem;
}


/* Franchise Page Styles */
.franchise-hero {
    height: 100vh;
    position: relative;
}

.franchise-why {
    background: rgba(15, 52, 96, 0.2);
}

.franchise-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-card {
    background: rgba(26, 26, 46, 0.6);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.benefit-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 215, 0, 0.5);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.benefit-card h3 {
    color: #ffd700;
    margin-bottom: 1rem;
}

.benefit-card p {
    color: #e8e8e8;
    line-height: 1.6;
}

/* Equipment Section */
.franchise-equipment {
    background: rgba(26, 26, 46, 0.3);
}

.equipment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .equipment-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .equipment-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.equipment-category {
    background: rgba(26, 26, 46, 0.6);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(255, 215, 0, 0.2);
    backdrop-filter: blur(10px);
}

.equipment-category h3 {
    color: #ffd700;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
}

.equipment-list {
    list-style: none;
    padding: 0;
}

.equipment-list li {
    padding: 0.5rem 0;
    color: #e8e8e8;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
    position: relative;
    padding-left: 1.5rem;
}

.equipment-list li:before {
    content: "✨";
    position: absolute;
    left: 0;
    color: #ffd700;
}

.equipment-list li:last-child {
    border-bottom: none;
}

/* Revenue Section */
.franchise-revenue {
    background: rgba(15, 52, 96, 0.2);
}

.revenue-overview {
    margin-top: 3rem;
}

.revenue-intro {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.revenue-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #e8e8e8;
}

.revenue-streams {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.revenue-stream {
    background: rgba(26, 26, 46, 0.6);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
}

.revenue-stream:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 215, 0, 0.4);
}

.stream-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.revenue-stream h4 {
    color: #ffd700;
    margin-bottom: 1rem;
}

.revenue-stream p {
    color: #e8e8e8;
    line-height: 1.6;
}

.revenue-cta {
    background: linear-gradient(45deg, rgba(255, 215, 0, 0.2), rgba(255, 237, 78, 0.1));
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    border: 2px solid rgba(255, 215, 0, 0.3);
    margin-top: 3rem;
}

.revenue-cta h3 {
    color: #ffd700;
    margin-bottom: 1rem;
}

.revenue-cta p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* Packages Section */
.franchise-packages {
    background: rgba(26, 26, 46, 0.3);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.package-card {
    background: rgba(26, 26, 46, 0.6);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    text-align: center;
}

.package-card.featured {
    border-color: #ffd700;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
    transform: scale(1.05);
}

.package-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 215, 0, 0.5);
}

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

.package-header {
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
    padding-bottom: 1rem;
}

.package-header h3 {
    color: #ffd700;
    margin-bottom: 0.5rem;
    font-size: 1.8rem;
}

.package-subtitle {
    color: #e8e8e8;
    font-style: italic;
}

.package-features ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.package-features li {
    padding: 0.75rem 0;
    color: #e8e8e8;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
    position: relative;
    padding-left: 2rem;
}

.package-features li:before {
    content: "🌟";
    position: absolute;
    left: 0;
}

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

.package-cta {
    margin-top: 2rem;
}

/* Application Section */
.franchise-application {
    background: rgba(15, 52, 96, 0.2);
}

.application-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
    align-items: start;
}

.application-info h3 {
    color: #ffd700;
    margin-bottom: 2rem;
}

.process-steps {
    margin-top: 2rem;
}

.step {
    display: flex;
    align-items: flex-start;
    text-align: right;
    word-wrap: break-word;
    max-width: 100%;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(26, 26, 46, 0.6);
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.step-number {
    background: #ffd700;
    color: #1a1a2e;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.step-content h4 {
    color: #ffd700;
    margin-bottom: 0.5rem;
}

.step-content p {
    color: #e8e8e8;
    margin: 0;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.application-form {
    background: rgba(26, 26, 46, 0.6);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    backdrop-filter: blur(10px);
}

.franchise-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

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

.form-group label {
    color: #ffd700;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 10px;
    background: rgba(26, 26, 46, 0.8);
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ffd700;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.checkbox-group {
    flex-direction: row;
    align-items: flex-start;
    text-align: right;
    word-wrap: break-word;
    max-width: 100%;
    gap: 1rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    text-align: right;
    word-wrap: break-word;
    max-width: 100%;
    gap: 0.5rem;
    cursor: pointer;
    color: #e8e8e8;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.btn-large {
    padding: 1.5rem 3rem;
    font-size: 1.2rem;
    margin-top: 1rem;
}

/* Responsive Design for Franchise Page */
@media (max-width: 768px) {
    .franchise-benefits {
        grid-template-columns: 1fr;
    }
    
    .equipment-grid {
        grid-template-columns: 1fr;
    }
    
    .revenue-streams {
        grid-template-columns: 1fr;
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
    }
    
    .package-card.featured {
        transform: none;
    }
    
    .package-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .application-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .application-form {
        padding: 2rem;
    }
    
    .revenue-cta {
        padding: 2rem;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .benefit-card,
    .equipment-category,
    .revenue-stream,
    .package-card {
        padding: 1.5rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}



/* Language Switcher */
.language-switcher {
    position: relative;
    margin-left: 1rem;
}

.language-dropdown {
    position: relative;
}

.language-btn {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.language-btn:hover {
    background: rgba(255, 215, 0, 0.2);
    border-color: rgba(255, 215, 0, 0.5);
    transform: translateY(-1px);
}

.language-btn .fas {
    font-size: 0.8rem;
}

.current-lang {
    font-weight: 600;
    min-width: 20px;
    text-align: center;
}

.language-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 15px;
    padding: 0.5rem 0;
    min-width: 150px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

.language-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.language-option:hover {
    background: rgba(255, 215, 0, 0.1);
    color: #ffd700;
}

.language-option.active {
    background: rgba(255, 215, 0, 0.15);
    color: #ffd700;
}

.language-option .flag {
    font-size: 1.2rem;
}

/* RTL Support */
[dir="rtl"] {
    direction: rtl;
    text-align: right;
}

[dir="rtl"] .nav-container {
    flex-direction: row-reverse;
}

[dir="rtl"] .nav-menu {
    flex-direction: row-reverse;
}

[dir="rtl"] .language-switcher {
    margin-left: 0;
    margin-right: 1rem;
}

[dir="rtl"] .language-menu {
    right: auto;
    left: 0;
}

[dir="rtl"] .hero-text {
    text-align: right;
}

[dir="rtl"] .about-story {
    text-align: right;
}

[dir="rtl"] .vision-point {
    flex-direction: row-reverse;
    text-align: right;
}

[dir="rtl"] .point-content {
    text-align: right;
}

[dir="rtl"] .services-grid {
    direction: rtl;
}

[dir="rtl"] .service-card {
    text-align: right;
}

[dir="rtl"] .contact-content {
    flex-direction: row-reverse;
}

[dir="rtl"] .contact-info {
    text-align: right;
}

[dir="rtl"] .footer-content {
    flex-direction: row-reverse;
}

[dir="rtl"] .footer-links {
    flex-direction: row-reverse;
}

/* Mobile Responsive for Language Switcher */
@media (max-width: 768px) {
    .language-switcher {
        margin-left: 0;
        margin-right: 1rem;
    }
    
    .language-btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
    
    .language-menu {
        min-width: 130px;
    }
    
    [dir="rtl"] .language-switcher {
        margin-right: 0;
        margin-left: 1rem;
    }
}



/* Checkbox styling fix for long text - Override */
.checkbox-group {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 1rem !important;
    margin-bottom: 1rem !important;
}

.checkbox-label {
    display: flex !important;
    align-items: flex-start !important;
    gap: 0.75rem !important;
    cursor: pointer !important;
    color: #e8e8e8 !important;
    line-height: 1.6 !important;
    width: 100% !important;
    white-space: normal !important;
    max-width: none !important;
}

.checkbox-label input[type="checkbox"] {
    width: 18px !important;
    height: 18px !important;
    margin: 0 !important;
    margin-top: 0.1rem !important;
    flex-shrink: 0 !important;
    accent-color: #ffd700 !important;
}

.checkbox-label span:not(.checkmark) {
    flex: 1 !important;
    word-wrap: break-word !important;
    white-space: normal !important;
    overflow-wrap: break-word !important;
}



/* Touch-Friendly Interactive Elements */

/* Enhanced footer links for touch */
.footer-links a {
    padding: 0.5rem 0.8rem;
    border-radius: 8px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    touch-action: manipulation;
}

.footer-links a:hover,
.footer-links a:focus {
    background: rgba(255, 215, 0, 0.1);
    outline: none;
}

.footer-links a:active {
    background: rgba(255, 215, 0, 0.15);
}

/* Enhanced social media icons for touch */
.footer-social a {
    padding: 0.6rem;
    border-radius: 50%;
    min-width: 44px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    touch-action: manipulation;
}

.footer-social a:hover,
.footer-social a:focus {
    background: rgba(255, 215, 0, 0.1);
    transform: scale(1.1);
    outline: none;
}

.footer-social a:active {
    transform: scale(1.05);
    background: rgba(255, 215, 0, 0.15);
}

/* Enhanced mobile interactions */
@media (max-width: 768px) {
    /* Service cards */
    .service-card {
        min-height: 300px;
        padding: 2rem 1.5rem;
        touch-action: manipulation;
    }
    
    .service-card:active {
        transform: translateY(-2px);
    }
    
    /* Vision points */
    .vision-point {
        padding: 1.5rem;
        touch-action: manipulation;
    }
    
    .vision-point:active {
        transform: translateY(-1px);
    }
    
    /* Studio cards */
    .studio-card {
        touch-action: manipulation;
    }
    
    .studio-card:active {
        transform: scale(1.005);
    }
    
    /* Pricing cards */
    .pricing-card {
        touch-action: manipulation;
    }
    
    .pricing-card:active {
        transform: translateY(-2px);
    }
    
    /* Form inputs */
    .form-group input,
    .form-group textarea {
        min-height: 48px;
        padding: 1rem;
        font-size: 1rem;
        touch-action: manipulation;
    }
    
    .form-group textarea {
        min-height: 120px;
    }
    
    /* Contact items */
    .contact-item {
        padding: 0.8rem;
        border-radius: 8px;
        transition: background 0.3s ease;
        touch-action: manipulation;
    }
    
    .contact-item:hover {
        background: rgba(255, 215, 0, 0.05);
    }
    
    /* Improved spacing for finger navigation */
    .hero-buttons {
        gap: 1.5rem;
    }
    
    .services-grid {
        gap: 2rem;
    }
    
    .vision-points {
        gap: 2rem;
    }
    
    .studio-grid {
        gap: 2rem;
    }
    
    .pricing-grid {
        gap: 2rem;
    }
    
    .upcoming-grid {
        gap: 2rem;
    }
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .btn-primary {
        border: 2px solid #000;
    }
    
    .btn-secondary {
        border-width: 3px;
    }
    
    .nav-link:focus,
    .btn:focus {
        outline: 3px solid #ffd700;
        outline-offset: 2px;
    }
}

