/* Modern CSS Reset and Variables - Improved for Readability */
:root {
    --primary: #1e40af;
    --primary-dark: #1e3a8a;
    --primary-light: #3b82f6;
    --secondary: #059669;
    --secondary-light: #10b981;
    --accent: #dc2626;
    --accent-light: #ef4444;
    --gold: #f59e0b;
    --gold-dark: #d97706;
    --dark: #111827;
    --dark-light: #374151;
    --light: #ffffff;
    --light-gray: #f9fafb;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --gradient-primary: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    --gradient-secondary: linear-gradient(135deg, #059669 0%, #10b981 100%);
    --gradient-dark: linear-gradient(135deg, #111827 0%, #1f2937 100%);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.08);
    --shadow-premium: 0 25px 50px rgba(0, 0, 0, 0.15);
    --border-radius: 12px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-premium: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
    --transition-bounce: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background: #0e6492;
    min-height: 100%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--gray-900);
    background: transparent;
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
    min-height: 100vh;
    letter-spacing: 0.01em; /* Slight positive tracking for Inter */
}

/* Very light overlay over entire page for text readability */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.05);
    z-index: -1;
    pointer-events: none;
}

/* Hero Section */
.hero {
    position: relative;
}

/* Removed hero overlay since we now have solid background */

/* Premium Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.3;
    color: var(--dark);
    letter-spacing: -0.02em; /* Tighter tracking for elegance */
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1 { 
    font-size: clamp(2.2rem, 4.5vw, 4rem);
    margin-bottom: 1.5rem;
    font-weight: 800;
}

h2 { 
    font-size: clamp(1.8rem, 3.5vw, 3rem);
    margin-bottom: 1.25rem;
}

h3 { 
    font-size: clamp(1.4rem, 2.5vw, 2.2rem);
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--gray-800);
    font-weight: 400;
    letter-spacing: 0.01em;
    text-rendering: optimizeLegibility;
}

.hero p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--gray-700);
    font-weight: 400;
}

.hero .subtitle {
    font-size: 1.4rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 1.25rem;
}

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

/* Container with increased padding for premium spacing */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2.5rem; /* Increased by 25% for premium spacing */
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--gray-200);
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-lg);
    border-bottom-color: var(--gray-300);
}

nav {
    display: grid;
    grid-template-columns: auto 1fr auto auto auto;
    align-items: center;
    padding: 1.25rem 0;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    padding-left: 2rem;
    padding-right: 2rem;
}

.logo {
    display: flex;
    align-items: center;
    transition: var(--transition);
}

.logo:hover {
    transform: scale(1.02);
}

.logo img {
    height: 55px;
    width: auto;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    list-style: none;
    justify-self: center;
}

.nav-links a {
    color: var(--gray-900);
    font-weight: 600;
    font-size: 1rem;
    position: relative;
    padding: 0.75rem 0;
    transition: var(--transition);
    letter-spacing: 0.3px;
}

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

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

/* Header Contact Information */
.header-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-end;
    min-width: 200px;
}

.header-phones {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: flex-end;
}

.header-phone {
    display: block;
    text-decoration: none;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.8);
    border-radius: 8px;
    padding: 0.5rem 0.75rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    min-width: 180px;
}

.header-phone:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.phone-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    align-items: flex-end;
}

.phone-name {
    font-size: 0.875rem;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.phone-number-line {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: flex-end;
}

.phone-icon {
    font-size: 1rem;
    color: #ffffff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.phone-number {
    font-size: 1.125rem;
    font-weight: 800;
    color: #ffffff;
    font-family: 'Monaco', 'Menlo', monospace;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.phone-status {
    font-size: 0.65rem;
    padding: 2px 6px;
    border-radius: 12px;
    background: var(--secondary);
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    min-width: 35px;
    text-align: center;
}

.header-email {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-900);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.8);
    border-radius: 8px;
    padding: 0.5rem 0.75rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
}

.header-email:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
    color: var(--primary);
}

.email-icon {
    font-size: 0.9rem;
    opacity: 0.8;
}

.email-text {
    font-family: 'Monaco', 'Menlo', monospace;
    font-size: 0.85rem;
}

/* Mobile and Tablet Responsive Styles */
@media (max-width: 1200px) {
    nav {
        grid-template-columns: auto 1fr auto auto;
        gap: 1.5rem;
    }
    
    .nav-links {
        gap: 2rem;
    }
    
    .header-contact {
        min-width: 160px;
    }
    
    .header-phone {
        min-width: 150px;
    }
}

@media (max-width: 992px) {
    nav {
        grid-template-columns: auto 1fr auto;
        gap: 1rem;
    }
    
    .nav-links {
        gap: 1.5rem;
    }
    
    .nav-links a {
        font-size: 0.95rem;
    }
    
    .nav-cta {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .header-contact {
        gap: 0.75rem;
    }
    
    .header-phones {
        gap: 0.5rem;
    }
}

@media (max-width: 768px) {
    header {
        background: rgba(255, 255, 255, 0.98);
    }
    
    nav {
        display: flex;
        justify-content: space-between;
        padding: 1rem 0;
        gap: 1rem;
    }
    
    .nav-links {
        display: none;
    }
    
    .header-contact {
        display: none;
    }
    
    .mobile-menu {
        display: block;
    }
    
    .logo img {
        height: 45px;
    }
    
    .nav-cta {
        padding: 0.625rem 1.25rem;
        font-size: 0.85rem;
    }
}

.nav-cta {
    background: var(--gradient-primary);
    color: var(--light);
    padding: 0.875rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    text-decoration: none;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    border: 2px solid transparent;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: var(--gradient-secondary);
    border-color: rgba(255, 255, 255, 0.2);
}

.mobile-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--dark);
    margin: 5px 0;
    transition: var(--transition);
}

/* Language Flags */
.language-flags {
    display: flex;
    flex-direction: row;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.flag-row {
    display: flex;
    gap: 0.5rem;
}

.flag-btn {
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid var(--gray-200);
    border-radius: 8px;
    padding: 0.5rem;
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    text-decoration: none;
    color: inherit;
    box-shadow: var(--shadow-sm);
}

.flag-btn:hover {
    background: rgba(255, 255, 255, 1);
    border-color: var(--gray-300);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.flag-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
    color: var(--light);
}

.flag-btn.active:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 8rem 0 4rem;
}

.hero-bg {
    display: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: start;
    position: relative;
    z-index: 2;
}

.hero-right-column {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.hero-text {
    color: var(--gray-900);
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border-radius: var(--border-radius);
    padding: 3.5rem; /* Increased by 16% for premium spacing */
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: var(--shadow-premium);
    transition: var(--transition-premium);
}

.hero-text h1 {
    color: var(--gray-900);
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease-out;
}

.hero-text .subtitle {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 2rem;
    color: var(--primary);
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-text p {
    font-size: 1.125rem;
    color: var(--gray-700);
    margin-bottom: 2.5rem;
    line-height: 1.8;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.2rem 3rem;
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--light);
    box-shadow: 0 4px 20px rgba(0, 102, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 40px rgba(0, 102, 255, 0.4);
    transition: var(--transition-premium);
}

.btn-secondary {
    background: var(--light);
    color: var(--gray-900);
    border: 2px solid var(--gray-300);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: var(--gray-50);
    border-color: var(--gray-400);
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--shadow-premium);
    transition: var(--transition-premium);
}

/* Quick Booking Form */
.hero-form {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow-xl);
    animation: fadeInUp 0.8s ease-out 0.6s both;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

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

.form-header h3 {
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.form-header p {
    color: var(--gray-600);
    font-size: 0.95rem;
    margin: 0;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.75rem;
    font-weight: 600;
    color: var(--gray-900);
    font-size: 1rem;
    line-height: 1.4;
}

.form-control {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid var(--gray-300);
    border-radius: var(--border-radius);
    font-size: 1rem;
    line-height: 1.5;
    transition: var(--transition);
    background: var(--light);
    font-family: inherit;
    color: var(--gray-900);
    font-weight: 400;
}

.form-control::placeholder {
    color: var(--gray-500);
    opacity: 1;
    font-weight: 400;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.1);
    background: var(--light);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
    font-family: inherit;
}

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

.form-submit {
    width: 100%;
    padding: 1.25rem 2rem;
    background: var(--gradient-primary);
    color: var(--light);
    border: none;
    border-radius: 12px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(0, 102, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1rem;
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 102, 255, 0.4);
}

.form-submit:active {
    transform: translateY(0);
}

.submit-icon {
    font-size: 1.3rem;
}

/* Form sections */
.form-section {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.form-section-title {
    color: var(--gray-900);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-family: 'Inter', sans-serif;
}

/* Radio button styling */
.form-radio-group {
    display: flex;
    gap: 1.5rem;
    margin-top: 0.5rem;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    font-weight: 400;
    color: var(--gray-800);
    margin-bottom: 0;
}

.radio-label input[type="radio"] {
    display: none;
}

.radio-custom {
    width: 20px;
    height: 20px;
    border: 2px solid var(--gray-400);
    border-radius: 50%;
    position: relative;
    transition: var(--transition);
}

.radio-label input[type="radio"]:checked + .radio-custom {
    border-color: var(--primary);
}

.radio-label input[type="radio"]:checked + .radio-custom::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 10px;
    background: var(--primary);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.radio-label:hover .radio-custom {
    border-color: var(--primary-light);
}

.hero-form {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    padding: 3rem; /* Increased by 20% for premium spacing */
    box-shadow: var(--shadow-premium);
    animation: fadeInRight 0.8s ease-out 0.4s both;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition-premium);
}

/* Features Section */
.features {
    padding: 6rem 0;
    background: transparent;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    padding: 3.5rem; /* Increased by 16% for premium spacing */
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: var(--shadow-premium);
    transition: var(--transition-premium);
}

.section-header h2 {
    margin-bottom: 1.5rem;
    color: var(--gray-900);
}

.section-header p {
    font-size: 1.25rem;
    color: var(--gray-800);
    font-weight: 400;
    margin: 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem; /* Increased by 25% for premium spacing */
}

.feature-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    padding: 3rem; /* Increased by 20% for premium spacing */
    text-align: center;
    transition: var(--transition-premium);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

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

.feature-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-premium);
    transition: var(--transition-premium);
}

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

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--light);
    box-shadow: var(--shadow-md);
    transition: var(--transition-premium);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--gray-700);
    margin: 0;
    font-weight: 400;
    line-height: 1.7;
}

/* Stats Section */
.stats {
    padding: 4rem 0;
    background: var(--gradient-dark);
    color: var(--light);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    text-align: center;
}

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

.stat-item p {
    font-size: 1.125rem;
    opacity: 0.9;
    margin: 0;
}

/* Services Section */
.services {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.services-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.service-text {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    padding: 3.5rem; /* Increased by 16% for premium spacing */
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: var(--shadow-premium);
    transition: var(--transition-premium);
    color: var(--gray-900);
}

.service-text h2 {
    margin-bottom: 2rem;
    color: var(--gray-900);
}

.service-text h3 {
    color: var(--gray-900);
    margin-bottom: 1.5rem;
}

.service-text p {
    color: var(--gray-700);
    margin-bottom: 2rem;
    font-weight: 400;
    line-height: 1.8;
}

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

.service-list li {
    display: flex;
    align-items: start;
    margin-bottom: 1.5rem;
    gap: 1rem;
    color: var(--gray-800);
}

.service-list li div {
    color: var(--gray-800);
    font-weight: 400;
    line-height: 1.7;
}

.service-list li strong {
    color: var(--gray-900);
    font-weight: 600;
}

.service-list .icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    font-weight: bold;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-premium);
}

.service-image {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-premium);
    transition: var(--transition-premium);
}

.service-image img {
    width: 100%;
    height: auto;
    display: block;
}

.service-badge {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: var(--gradient-primary);
    color: var(--light);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: var(--shadow-lg);
}

/* Pricing Section */
.pricing {
    padding: 6rem 0;
    background: transparent;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem; /* Increased by 25% for premium spacing */
    margin-top: 4rem;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    padding: 3.5rem; /* Increased by 16% for premium spacing */
    text-align: center;
    position: relative;
    transition: var(--transition-premium);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.pricing-card.featured {
    transform: scale(1.05);
    box-shadow: var(--shadow-xl);
    border: 2px solid var(--primary);
}

.pricing-card.featured::before {
    content: 'POPULÄR';
    position: absolute;
    top: -1rem;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: var(--light);
    padding: 0.5rem 2rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
}

.pricing-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-premium);
    transition: var(--transition-premium);
}

.pricing-card.featured:hover {
    transform: scale(1.07) translateY(-8px);
    transition: var(--transition-premium);
}

.pricing-header h3 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.pricing-price {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary);
    margin: 1.5rem 0;
}

.pricing-price small {
    font-size: 1rem;
    font-weight: 400;
    color: var(--gray-600);
}

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

.pricing-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--gray-200);
    color: var(--gray-800);
    font-weight: 400;
    line-height: 1.6;
}

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


/* Contact Section */
.contact {
    padding: 6rem 0;
    background: transparent;
    color: var(--gray-900);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4.5rem; /* Increased by 12.5% for premium spacing */
    align-items: start;
}

.contact-info {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    padding: 3.5rem; /* Increased by 16% for premium spacing */
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: var(--shadow-premium);
    transition: var(--transition-premium);
}

.contact-info h2 {
    color: var(--gray-900);
    margin-bottom: 2rem;
}

.contact-details {
    margin-top: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-item .icon {
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    color: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-premium);
}

.contact-form {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border-radius: var(--border-radius);
    padding: 3.5rem; /* Increased by 16% for premium spacing */
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: var(--shadow-premium);
    transition: var(--transition-premium);
}

.contact-form h3 {
    color: var(--gray-900);
    margin-bottom: 2rem;
}

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

.contact-form .form-control {
    background: var(--light);
    border: 2px solid var(--gray-300);
    color: var(--gray-900);
    font-weight: 400;
}

.contact-form .form-control::placeholder {
    color: var(--gray-500);
    font-weight: 400;
}

.contact-form .form-control:focus {
    background: var(--light);
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.1);
}

/* Footer */
footer {
    background: var(--gradient-dark);
    color: var(--light);
    padding: 3.5rem 0 2rem;
    border-top: 1px solid var(--gray-800);
    transition: var(--transition-premium);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}

.footer-brand {
    max-width: 350px;
}

.footer-brand h3 {
    color: var(--light);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.footer-brand p {
    color: var(--gray-300);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 0.95rem;
}

.footer-contact {
    margin-top: 1.5rem;
}

.footer-contact p {
    color: var(--gray-400);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.footer-contact strong {
    color: var(--gold);
    font-weight: 500;
}

.footer-phone-item {
    margin-left: 1rem;
    margin-bottom: 0.3rem;
}

.footer-phone-item a {
    color: var(--gray-300);
    text-decoration: none;
    transition: var(--transition);
}

.footer-phone-item a:hover {
    color: var(--gold);
}

/* Header phones styling */
.header-phones {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-700);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.9rem;
}

.header-phone:hover {
    color: var(--primary);
}

.phone-status {
    font-size: 0.7rem;
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
    background: var(--secondary);
    color: white;
    margin-left: 0.5rem;
}

.phone-status.closed {
    background: var(--gray-500);
}

.footer-links h4 {
    color: var(--gold);
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

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

.footer-links a {
    color: var(--gray-300);
    transition: var(--transition);
    font-size: 0.9rem;
    text-decoration: none;
}

.footer-links a:hover {
    color: var(--gold);
    text-decoration: none;
}

/* Destinations compact layout */
.destinations-compact {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.destinations-compact span {
    color: var(--gray-300);
    font-size: 0.9rem;
    line-height: 1.5;
    display: block;
}

.destinations-compact span:hover {
    color: var(--gold);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--gray-700);
    text-align: center;
    color: var(--gray-400);
    font-size: 0.9rem;
}

/* Mobile Sticky Action Bar */
.mobile-action-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--gray-200);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    padding: 1rem 1rem calc(1rem + env(safe-area-inset-bottom));
    display: none; /* Hidden by default, shown only on mobile */
    animation: slideInBottom 0.3s ease-out;
}

.mobile-action-buttons {
    display: flex;
    gap: 0.75rem;
    max-width: 500px;
    margin: 0 auto;
}

.mobile-action-btn {
    flex: 1;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
}

.mobile-action-btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.mobile-action-btn:hover:before {
    left: 100%;
}

.mobile-call-btn {
    background: var(--gradient-secondary);
    color: var(--light);
    box-shadow: 0 4px 15px rgba(5, 150, 105, 0.3);
}

.mobile-call-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(5, 150, 105, 0.4);
}

.mobile-book-btn {
    background: var(--gradient-primary);
    color: var(--light);
    box-shadow: 0 4px 15px rgba(30, 64, 175, 0.3);
}

.mobile-book-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 64, 175, 0.4);
}

.mobile-action-icon {
    font-size: 1.1rem;
}

/* Show mobile action bar only on mobile screens */
@media (max-width: 768px) {
    .mobile-action-bar {
        display: block;
    }
    
    /* Add bottom padding to body to prevent content from being hidden behind the action bar */
    body {
        padding-bottom: 80px;
    }
    
    /* Adjust cookie consent banner position when mobile action bar is present */
    .cookie-consent {
        bottom: 80px;
    }
}

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

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

@keyframes slideInBottom {
    from {
        opacity: 0;
        transform: translateY(100%);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Premium Cookie Consent Banner */
.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: var(--shadow-premium);
    z-index: 10000;
    animation: slideInBottom 0.5s var(--transition-premium);
    padding: 1.5rem 0;
}

.cookie-consent-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2rem;
    align-items: center;
}

.cookie-consent-text {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.cookie-consent-text h3 {
    color: var(--gray-900);
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
    font-family: 'Inter', sans-serif;
}

.cookie-consent-text p {
    color: var(--gray-700);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    font-weight: 400;
}

.cookie-consent-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-shrink: 0;
}

.cookie-consent-btn {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition-premium);
    text-transform: uppercase;
    letter-spacing: 0.025em;
    position: relative;
    overflow: hidden;
}

.cookie-consent-btn:hover {
    transform: translateY(-2px);
}

.cookie-consent-btn.accept {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 15px rgba(30, 64, 175, 0.3);
}

.cookie-consent-btn.accept:hover {
    box-shadow: 0 6px 20px rgba(30, 64, 175, 0.4);
}

.cookie-consent-btn.decline {
    background: var(--gray-200);
    color: var(--gray-700);
    border: 1px solid var(--gray-300);
}

.cookie-consent-btn.decline:hover {
    background: var(--gray-300);
    border-color: var(--gray-400);
}

.cookie-consent-btn.settings {
    background: transparent;
    color: var(--primary);
    border: 1px solid var(--primary);
}

.cookie-consent-btn.settings:hover {
    background: var(--primary);
    color: white;
}

/* Hide desktop-only elements on mobile */
@media (max-width: 768px) {
    .desktop-only {
        display: none !important;
    }
}

/* Mobile Action Bar */
.mobile-action-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    display: none;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding: 12px 20px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
}

.mobile-action-bar.show {
    display: flex;
}

.mobile-phone-btn,
.mobile-book-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 16px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin: 0 6px;
    min-height: 44px;
}

.mobile-phone-btn {
    background: var(--primary);
    color: white;
    border: 2px solid var(--primary);
}

.mobile-phone-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.mobile-phone-btn.disabled {
    background: var(--gray-400);
    border-color: var(--gray-400);
    cursor: not-allowed;
    transform: none;
}

.mobile-book-btn {
    background: var(--secondary);
    color: white;
    border: 2px solid var(--secondary);
}

.mobile-book-btn:hover {
    background: var(--secondary-light);
    transform: translateY(-2px);
}

.mobile-phone-btn .btn-icon,
.mobile-book-btn .btn-icon {
    font-size: 18px;
    margin-right: 8px;
}

.mobile-phone-btn .btn-text,
.mobile-book-btn .btn-text {
    font-size: 14px;
    font-weight: 600;
}

@media (max-width: 768px) {
    .mobile-action-bar {
        display: flex;
    }
    
    /* Add bottom padding to body to prevent content from being hidden behind action bar */
    body {
        padding-bottom: 80px;
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-content,
    .services-content,
    .contact-content {
        grid-template-columns: 1fr;
    }

    .hero-right-column {
        order: 2;
    }

    .hero-text {
        order: 1;
    }

    .hero-form {
        max-width: 600px;
        margin: 0 auto;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 4rem auto 0;
    }
}

@media (max-width: 768px) {
    .nav-links,
    .nav-cta {
        display: none;
    }

    .mobile-menu {
        display: block;
    }

    /* Language flags stay visible on mobile */
    .language-flags {
        order: -1;
        margin-right: 1rem;
        gap: 0.25rem;
    }

    .flag-row {
        gap: 0.25rem;
    }

    .flag-btn {
        width: 28px;
        height: 28px;
        font-size: 0.9rem;
        padding: 0.2rem;
    }

    .nav-links a {
        font-size: 1rem;
    }

    .logo img {
        height: 50px;
    }

    .hero {
        padding: 6rem 0 3rem;
    }
    
    /* Fallback for devices that don't support fixed backgrounds well */
    @supports not (background-attachment: fixed) {
        .hero {
            background-attachment: scroll;
        }
    }
    
    /* iOS devices fallback */
    @media screen and (-webkit-min-device-pixel-ratio: 1) and (max-width: 1024px) {
        .hero {
            background-attachment: scroll;
        }
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

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

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

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    /* Cookie consent mobile responsive */
    .cookie-consent-content {
        grid-template-columns: 1fr;
        gap: 1rem;
        text-align: center;
    }
    
    .cookie-consent-buttons {
        justify-content: center;
    }
    
    .cookie-consent-btn {
        flex: 1;
        min-width: 100px;
    }

    /* Show mobile action bar on mobile screens */
    .mobile-action-bar {
        display: flex;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

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

    .footer-brand {
        max-width: 100%;
    }

    .footer-contact {
        margin-top: 1rem;
    }

    .destinations-compact {
        align-items: center;
        gap: 0.3rem;
    }

    .pricing-card.featured {
        transform: none;
    }
}

/* Loading Animation */
.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--light);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s;
}

.loading.hide {
    opacity: 0;
    pointer-events: none;
}

.spinner {
    width: 48px;
    height: 48px;
    border: 3px solid var(--gray-300);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

/* GDPR Cookie Consent Banner */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(10, 14, 39, 0.95);
    backdrop-filter: blur(20px);
    color: var(--light);
    padding: 1.5rem;
    z-index: 10000;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    transform: translateY(100%);
    transition: all 0.3s ease-in-out;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

.cookie-consent.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cookie-text h3 {
    color: var(--light);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    font-family: 'Inter', sans-serif;
}

.cookie-text p {
    opacity: 0.9;
    font-size: 0.95rem;
    line-height: 1.5;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.cookie-buttons button {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.9rem;
}

.cookie-accept {
    background: var(--gradient-primary);
    color: var(--light);
}

.cookie-accept:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.cookie-decline {
    background: rgba(255, 255, 255, 0.1);
    color: var(--light);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cookie-decline:hover {
    background: rgba(255, 255, 255, 0.2);
}

.cookie-settings {
    background: transparent;
    color: var(--light);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cookie-settings:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Cookie Settings Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.cookie-modal.show {
    opacity: 1;
    visibility: visible;
}

.cookie-modal-content {
    background: var(--light);
    border-radius: var(--border-radius);
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: var(--shadow-xl);
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem;
    border-bottom: 1px solid var(--gray-200);
}

.modal-header h3 {
    color: var(--dark);
    font-size: 1.5rem;
    font-family: 'Inter', sans-serif;
}

.modal-close {
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--gray-500);
    padding: 0;
    line-height: 1;
}

.modal-close:hover {
    color: var(--dark);
}

.modal-body {
    padding: 2rem;
}

.cookie-category {
    margin-bottom: 2rem;
}

.category-header {
    margin-bottom: 1rem;
}

.toggle-label {
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
}

.toggle-slider {
    position: relative;
    width: 50px;
    height: 24px;
    background: var(--gray-300);
    border-radius: 12px;
    transition: var(--transition);
}

.toggle-slider::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--light);
    top: 2px;
    left: 2px;
    transition: var(--transition);
}

input[type="checkbox"]:checked + .toggle-slider {
    background: var(--primary);
}

input[type="checkbox"]:checked + .toggle-slider::before {
    transform: translateX(26px);
}

input[type="checkbox"] {
    display: none;
}

.category-title {
    font-weight: 600;
    color: var(--dark);
    font-size: 1.1rem;
}

.category-description {
    color: var(--gray-600);
    font-size: 0.9rem;
    line-height: 1.5;
}

.modal-footer {
    padding: 2rem;
    border-top: 1px solid var(--gray-200);
    text-align: right;
}

.cookie-save {
    background: var(--gradient-primary);
    color: var(--light);
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.cookie-save:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Mobile Responsive for Cookie Banner */
@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

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

    .cookie-buttons button {
        width: 100%;
    }

    .modal-header,
    .modal-body,
    .modal-footer {
        padding: 1.5rem;
    }
}

/* RTL Support for Arabic */
body.rtl {
    direction: rtl;
}

body.rtl .nav-links {
    flex-direction: row-reverse;
}

body.rtl .language-dropdown {
    right: auto;
    left: 0;
}

body.rtl .hero-content,
body.rtl .services-content,
body.rtl .contact-content {
    text-align: right;
}

body.rtl .hero-buttons {
    justify-content: flex-end;
}

body.rtl .features-grid {
    direction: rtl;
}

body.rtl .feature-card {
    text-align: right;
}

body.rtl .form-row {
    direction: rtl;
}

body.rtl .contact-item {
    flex-direction: row-reverse;
}

body.rtl .footer-content {
    direction: rtl;
}

/* Page Content Styles */
.page-content {
    padding-top: 100px;
    min-height: 100vh;
    background: var(--light-gray);
}

.page-header {
    text-align: center;
    padding: 4rem 0 3rem 0;
    background: var(--gradient-primary);
    color: var(--light);
    margin-bottom: 3rem;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* About Us Styles */
.about-content {
    background: var(--light);
    border-radius: var(--border-radius);
    padding: 3rem;
    box-shadow: var(--shadow-lg);
    margin-bottom: 3rem;
}

.about-text h2 {
    color: var(--primary);
    font-size: 2rem;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.about-text h2:first-child {
    margin-top: 0;
}

.about-text p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
    color: var(--gray-700);
}

.about-text ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.about-text li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
    color: var(--gray-700);
}

/* Terms and Privacy Styles */
.terms-content,
.privacy-content {
    background: var(--light);
    border-radius: var(--border-radius);
    padding: 3rem;
    box-shadow: var(--shadow-lg);
    margin-bottom: 3rem;
}

.terms-text h2,
.privacy-text h2 {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    margin-top: 2rem;
    border-bottom: 2px solid var(--gray-200);
    padding-bottom: 0.5rem;
}

.terms-text h2:first-child,
.privacy-text h2:first-child {
    margin-top: 0;
}

.terms-text p,
.privacy-text p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
    color: var(--gray-700);
}

.terms-text ul,
.privacy-text ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.terms-text li,
.privacy-text li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
    color: var(--gray-700);
}

.terms-text em,
.privacy-text em {
    color: var(--gray-500);
    font-style: italic;
}

/* FAQ Styles */
.faq-content {
    background: var(--light);
    border-radius: var(--border-radius);
    padding: 3rem;
    box-shadow: var(--shadow-lg);
    margin-bottom: 3rem;
}

.faq-list {
    display: grid;
    gap: 2rem;
}

.faq-item {
    padding: 2rem;
    background: var(--gray-50);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary);
    transition: var(--transition);
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.faq-item h3 {
    color: var(--primary);
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.faq-item p {
    color: var(--gray-700);
    line-height: 1.6;
}

/* Mobile Responsive Styles for Pages */
@media (max-width: 768px) {
    .page-content {
        padding-top: 80px;
    }
    
    .page-header {
        padding: 2rem 1rem;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .page-header p {
        font-size: 1rem;
    }
    
    .about-content,
    .terms-content,
    .privacy-content,
    .faq-content {
        padding: 2rem 1.5rem;
        margin: 0 1rem 2rem 1rem;
    }
    
    .about-text h2,
    .terms-text h2,
    .privacy-text h2 {
        font-size: 1.25rem;
    }
    
    .faq-item {
        padding: 1.5rem;
    }
    
    .faq-item h3 {
        font-size: 1.1rem;
    }
}

/* Footer Company Info Styles */
.footer-company {
    color: var(--light);
}

.footer-company h4 {
    color: var(--gold);
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.company-info p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    line-height: 1.5;
}

.company-info strong {
    color: var(--gold-dark);
    font-weight: 500;
}