:root {
    --primary-50: #eff6ff;
    --primary-100: #dbeafe;
    --primary-200: #bfdbfe;
    --primary-300: #93c5fd;
    --primary-400: #60a5fa;
    --primary-500: #3b82f6;
    --primary-600: #2563eb;
    --primary-700: #1d4ed8;
    --primary-800: #1e40af;
    --primary-900: #1e3a8a;
    --primary-950: #172554;
    
    --neutral-50: #f8fafc;
    --neutral-100: #f1f5f9;
    --neutral-200: #e2e8f0;
    --neutral-300: #cbd5e1;
    --neutral-400: #94a3b8;
    --neutral-500: #64748b;
    --neutral-600: #475569;
    --neutral-700: #334155;
    --neutral-800: #1e293b;
    --neutral-900: #0f172a;
    --neutral-950: #020617;
    
    --success-50: #f0fdf4;
    --success-100: #dcfce7;
    --success-200: #bbf7d0;
    --success-300: #86efac;
    --success-400: #4ade80;
    --success-500: #22c55e;
    --success-600: #16a34a;
    --success-700: #15803d;
    --success-800: #166534;
    --success-900: #14532d;
    --success-950: #052e16;
    
    --warning-50: #fefce8;
    --warning-100: #fef9c3;
    --warning-200: #fef08a;
    --warning-300: #fde047;
    --warning-400: #facc15;
    --warning-500: #eab308;
    --warning-600: #ca8a04;
    --warning-700: #a16207;
    --warning-800: #854d0e;
    --warning-900: #713f12;
    --warning-950: #422006;
    
    --error-50: #fef2f2;
    --error-100: #fee2e2;
    --error-200: #fecaca;
    --error-300: #fca5a5;
    --error-400: #f87171;
    --error-500: #ef4444;
    --error-600: #dc2626;
    --error-700: #b91c1c;
    --error-800: #991b1b;
    --error-900: #7f1d1d;
    --error-950: #450a0a;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Playfair Display", serif;
    font-feature-settings: normal;
    line-height: 1.6;
    color: var(--neutral-800);
    background: var(--neutral-50);
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* Navigation */
.nav {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--neutral-200);
    position: sticky;
    top: 0;
    z-index: 50;
    transition: all 0.3s ease;
}

/* Header */
.header {
    background: linear-gradient(135deg, var(--primary-600) 0%, var(--secondary-600) 100%);
    background-image: url('../images/back-pquoc-com-trip-by-boat.webp');
    background-size: cover;
    background-position: center;
    padding: 8rem 0;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

/* Override for root index.html */
body.root-page .header {
    background: linear-gradient(135deg, var(--primary-600) 0%, var(--secondary-600) 100%);
    background-image: url('../images/back-pquoc-com-trip-by-boat.webp');
    background-size: cover;
    background-position: center;
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.header .nav {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 2;
}

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

/* Header content styling */
.header .container {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 4rem 0;
    color: white;
}

/* Header text styling */
.header h1 {
    color: white;
    font-family: "Playfair Display", serif;
    font-size: 40px;
    font-weight: 700;
    font-feature-settings: normal;
    font-variation-settings: normal;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 1rem;
}

.header p {
    color: white;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-size: 24px;
    font-weight: 700;
    font-feature-settings: normal;
    font-variation-settings: normal;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 2rem;
    line-height: 1.4;
}

.header .cta-button {
    background: white;
    color: var(--primary-600);
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-block;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    margin-bottom: 2rem;
}

.header .cta-button:hover {
    background: transparent;
    color: white;
    border-color: white;
    transform: translateY(-2px);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    position: relative;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-600);
    text-decoration: none;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
    font-family: "Playfair Display", serif;
    font-feature-settings: normal;
    font-size: 16px;
}

.nav-links a {
    text-decoration: none;
    color: var(--neutral-700);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: var(--primary-600);
}

/* Language Selector */
.language-selector {
    position: relative;
    display: inline-block;
}

.language-btn {
    background: var(--primary-600);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s ease;
}

.language-btn:hover {
    background: var(--primary-700);
    transform: translateY(-1px);
}

.language-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    padding: 10px 0;
    min-width: 200px;
    z-index: 1000;
    display: none;
    border: 1px solid #eee;
}

.language-dropdown a {
    display: block;
    padding: 10px 15px;
    color: var(--neutral-700);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border-bottom: 1px solid #f0f0f0;
}

.language-dropdown a:last-child {
    border-bottom: none;
}

.language-dropdown a:hover {
    background: var(--primary-50);
    color: var(--primary-600);
    transform: translateX(5px);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-600) 0%, var(--primary-800) 100%);
    color: white;
    padding: 6rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Override for root index.html */
body.root-page .hero::before {
    background: url('../images/back-pquoc-com-trip-by-boat.webp') center/cover;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/back-pquoc-com-trip-by-boat.webp') center/cover;
    opacity: 0.2;
    z-index: 1;
}

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    background: white;
    color: var(--primary-600);
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-block;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.hero-cta:hover {
    background: transparent;
    color: white;
    border-color: white;
    transform: translateY(-2px);
}

/* Sections */
.section {
    padding: 5rem 0;
    margin: 0 2rem 3rem 2rem;
}

.section.light {
    background: var(--neutral-50);
    border: 2px solid var(--neutral-200);
    border-radius: 1rem;
    margin: 0 2rem 3rem 2rem;
    padding: 3rem 2rem;
}

.section.dark {
    background: var(--neutral-800);
    color: white;
    border: 4px solid var(--primary-600);
    border-radius: 1rem;
    margin: 0 2rem 3rem 2rem;
    padding: 3rem 2rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--neutral-800);
}

.section.dark .section-title {
    color: white;
}

.section-subtitle {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--neutral-600);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section.dark .section-subtitle {
    color: var(--neutral-300);
}

/* Features Section with special styling */
.features-section {
    background: var(--neutral-50);
    background-image: linear-gradient(to left top, rgba(88, 28, 135, 0.5), rgba(0, 0, 0, 0), rgba(30, 58, 138, 0.5));
    position: relative;
    overflow: hidden;
    margin: 0 2rem 3rem 2rem;
    border-left: 1.67px solid rgb(226, 232, 240);
    border-right: 1.67px solid rgb(226, 232, 240);
    border-top: 1.67px solid rgb(226, 232, 240);
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 4px 6px 0px;
    box-sizing: border-box;
    padding: 3rem 2rem;
}

/* Features section intro text with floating logo */
.features-intro {
    text-align: left;
    margin: 2rem 0;
    overflow: hidden;
}

.features-intro .logo-right {
    float: right;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin: 0 0 1.5rem 2rem;
    shape-outside: circle(50%);
    display: block;
    object-fit: cover;
}

.features-intro p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--neutral-600);
    text-align: justify;
    margin: 0;
    overflow: hidden;
    display: flow-root;
}

/* Clearfix for proper text wrapping */
.features-intro::after {
    content: "";
    display: table;
    clear: both;
}

/* Override for root index.html */
body.root-page .features-section::before {
    background: url('../images/back-pquoc-island.webp') center/cover;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/back-pquoc-island.webp') center/cover;
    opacity: 0.03;
    z-index: 1;
}

.features-section .container {
    position: relative;
    z-index: 2;
}

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

.feature {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 2px solid var(--neutral-200);
}

.feature:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-300);
}

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

.feature-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--neutral-800);
}

.feature-description {
    color: var(--neutral-600);
    line-height: 1.6;
}

/* Tours Grid */
.tours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.tour-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    border: 2px solid var(--neutral-200);
}

.tour-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-400);
}

.tour-image {
    height: 200px;
    background: linear-gradient(135deg, var(--primary-500), var(--primary-700));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    font-weight: bold;
    overflow: hidden;
    border-radius: 0.5rem 0.5rem 0 0;
}

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

.tour-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.tour-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--neutral-800);
}

.tour-description {
    color: var(--neutral-600);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.tour-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.tour-difficulty {
    background: var(--success-100);
    color: var(--success-700);
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.875rem;
    font-weight: 500;
}

.tour-btn {
    background: var(--primary-600);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
}

.tour-btn:hover {
    background: var(--primary-700);
    transform: translateY(-1px);
}

/* Complete Services Section */
.complete-services {
    background: var(--neutral-800);
    color: white;
    position: relative;
    overflow: hidden;
    border: 4px solid var(--primary-600);
    border-radius: 1rem;
    margin: 0 2rem 3rem 2rem;
    padding: 3rem 2rem;
}

/* Override for root index.html */
body.root-page .complete-services::before {
    background: url('../images/back-pquoc-com-trip-by-boat.webp') center/cover;
}

.complete-services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/back-pquoc-com-trip-by-boat.webp') center/cover;
    opacity: 0.1;
    z-index: 1;
}

.complete-services .container {
    position: relative;
    z-index: 2;
}

.complete-services .section-title,
.complete-services .section-subtitle {
    color: white;
}

.complete-services p {
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    color: var(--neutral-200);
}

/* Client Testimonials Section - Style like screenshot */
.testimonials {
    background: var(--neutral-50);
    border: 2px solid var(--neutral-200);
    border-radius: 1rem;
    margin: 0 2rem 3rem 2rem;
    padding: 3rem 2rem;
}

.testimonials .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--neutral-800);
}

.testimonials .section-subtitle {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--neutral-600);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.testimonial {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 2px solid var(--neutral-200);
    position: relative;
}

.testimonial::before {
    content: '"';
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    font-size: 4rem;
    color: var(--neutral-300);
    line-height: 1;
    font-family: serif;
}

.testimonial:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-300);
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    margin-top: 1rem;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary-600);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 600;
    margin-right: 1rem;
    flex-shrink: 0;
}

.testimonial-info h4 {
    font-weight: 600;
    color: var(--neutral-800);
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

.testimonial-info p {
    color: var(--neutral-600);
    font-size: 0.9rem;
    margin: 0;
}

.testimonial-text {
    color: var(--neutral-700);
    line-height: 1.6;
    font-style: italic;
    margin-left: 1rem;
}

/* Contact */
.contact {
    background: var(--neutral-800);
    color: white;
    position: relative;
    overflow: hidden;
    border-top: 4px solid var(--primary-600);
    border-radius: 1rem;
    margin: 0 2rem 3rem 2rem;
    padding: 3rem 2rem;
}

/* Override for root index.html */
body.root-page .contact::before {
    background: url('../images/back-pquoc-island.webp') center/cover;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/back-pquoc-island.webp') center/cover;
    opacity: 0.05;
    z-index: 1;
}

.contact .container {
    position: relative;
    z-index: 2;
}



/* Social Links */
.social-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-600);
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: var(--neutral-900);
    color: var(--neutral-300);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-brand h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-brand p {
    line-height: 1.6;
    color: var(--neutral-400);
}

.footer-section h4 {
    color: white;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--neutral-400);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-section ul li a:hover {
    color: var(--primary-400);
}

.footer-bottom {
    border-top: 1px solid var(--neutral-700);
    padding-top: 1rem;
    text-align: center;
    color: var(--neutral-500);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-links {
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .tours-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .section,
    .section.light,
    .section.dark,
    .features-section,
    .complete-services,
    .contact,
    .testimonials {
        margin: 0 1rem 2rem 1rem;
        padding: 2rem 1rem;
    }
    
    .container {
        padding: 0 0.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.25rem;
    }
    
    .hero {
        padding: 4rem 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section,
    .section.light,
    .section.dark,
    .features-section,
    .complete-services,
    .contact,
    .testimonials {
        margin: 0 0.5rem 1.5rem 0.5rem;
        padding: 1.5rem 0.5rem;
    }
    
    .tour-card,
    .feature,
    .testimonial {
        margin: 0;
    }
}

@media (min-width: 1400px) {
    .section,
    .section.light,
    .section.dark,
    .features-section,
    .complete-services,
    .contact,
    .testimonials {
        margin: 0 3rem 4rem 3rem;
        padding: 4rem 3rem;
    }
}

/* Connect Community button */
.connect-community-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-block;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    margin: 1rem 0;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.connect-community-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
    color: white;
    text-decoration: none;
}

/* Contact Information title */
.contact .section-title {
    color: white !important;
    font-weight: 700 !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Header title styling */
.header h1 {
    font-family: "Playfair Display", serif;
    font-feature-settings: normal;
    font-size: 36px;
    font-weight: 700;
}

/* Header description text styling */
.header p {
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-feature-settings: normal;
    font-size: 18px;
    font-variation-settings: normal;
    font-weight: 700;
}

/* Feature with image styling */
.feature-with-image {
    background: white;
    border-radius: 1rem;
    padding: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid var(--neutral-200);
}

.feature-with-image:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-600);
}

.feature-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 1rem 1rem 0 0;
}

.feature-content {
    padding: 1.5rem;
}

.feature-content h3 {
    color: var(--neutral-800);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.feature-content p {
    color: var(--neutral-600);
    line-height: 1.6;
}

/* About Section */
.about {
    background: var(--neutral-50);
    padding: 4rem 0;
}

.about .about-text {
    max-width: 800px;
    margin: 0 auto;
}

.about .about-text p {
    font-size: 22px;
    line-height: 1.6;
    color: var(--neutral-600);
    text-align: justify;
}

.about .about-text img {
    width: 200px;
    border-radius: 50%;
    object-fit: cover;
}

/* Missing styles for restored sections */
.get-info-btn {
    background: var(--primary-600);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    border: none;
    display: inline-block;
}

.get-info-btn:hover {
    background: var(--primary-700);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
}

.tour-difficulty.intermediate {
    background: var(--warning-100);
    color: var(--warning-800);
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--neutral-900);
}

.about-text p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: var(--neutral-600);
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.stat {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-600);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--neutral-600);
    font-weight: 500;
}

.testimonial-author {
    margin-top: 1rem;
    text-align: center;
}

.testimonial-author strong {
    display: block;
    font-weight: 600;
    color: white;
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    font-size: 0.875rem;
    opacity: 0.8;
    color: rgba(255, 255, 255, 0.8);
}

/* СТИЛИ ДЛЯ CONTACT SECTION - РУССКАЯ ВЕРСИЯ С КАРТОЧКАМИ */
body:not(.root-page) .contact-grid,
body:not(.root-page) #contact .contact-grid,
body:not(.root-page) .contact .contact-grid,
body:not(.root-page) section.contact .contact-grid,
body:not(.root-page) section#contact .contact-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 2rem !important;
    margin-top: 2rem !important;
    width: 100% !important;
    max-width: 100% !important;
    grid-auto-rows: auto !important;
}

body:not(.root-page) .contact-item,
body:not(.root-page) #contact .contact-item,
body:not(.root-page) .contact .contact-item,
body:not(.root-page) section.contact .contact-item,
body:not(.root-page) section#contact .contact-item {
    text-align: center !important;
    padding: 2rem 1.5rem !important;
    background: rgba(255, 255, 255, 0.1) !important;
    border-radius: 1rem !important;
    backdrop-filter: blur(10px) !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    min-height: 140px !important;
    max-height: 200px !important;
    height: auto !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    box-sizing: border-box !important;
    width: 100% !important;
    flex: 1 !important;
}

/* СТИЛИ ДЛЯ АНГЛИЙСКОЙ ВЕРСИИ - БЕЗ КАРТОЧЕК */
body.root-page .contact-grid,
body.root-page #contact .contact-grid,
body.root-page .contact .contact-grid,
body.root-page section.contact .contact-grid,
body.root-page section#contact .contact-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 3rem !important;
    margin-top: 2rem !important;
    width: 100% !important;
    max-width: 100% !important;
}

body.root-page .contact-item,
body.root-page #contact .contact-item,
body.root-page .contact .contact-item,
body.root-page section.contact .contact-item,
body.root-page section#contact .contact-item {
    text-align: center !important;
    padding: 1rem !important;
    background: transparent !important;
    border-radius: 0 !important;
    backdrop-filter: none !important;
    border: none !important;
    box-shadow: none !important;
    display: block !important;
    width: 100% !important;
}

.contact-item h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.contact-item p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.contact-item a {
    color: #60a5fa;
    text-decoration: none;
    font-weight: 500;
}

.contact-item a:hover {
    text-decoration: underline;
    color: #93c5fd;
}

/* Complete services section styles */
.complete-services {
    background: linear-gradient(135deg, var(--primary-50) 0%, var(--neutral-50) 100%);
    position: relative;
    overflow: hidden;
}

.complete-services .section-title {
    color: var(--neutral-900);
    margin-bottom: 1rem;
}

.complete-services p {
    text-align: center;
    font-size: 1.125rem;
    color: var(--neutral-600);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .about-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    
    .stat {
        padding: 1rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .about-stats {
        grid-template-columns: 1fr;
    }
}

/* ГЛОБАЛЬНЫЕ УТИЛИТАРНЫЕ СТИЛИ - НЕ ИСПОЛЬЗУЙТЕ ВСТРОЕННЫЕ СТИЛИ В HTML */
.text-center {
    text-align: center;
}

.text-center-mt-40 {
    text-align: center;
    margin-top: 40px;
}

.social-section {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.2);
}

.social-section-title {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.language-dropdown-hidden {
    display: none;
}

.footer-disclaimer {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
    margin-top: 0.5rem;
}

/* Стили для кнопки сообщества - исправление встроенных стилей */
.community-btn-legacy {
    background: #667eea;
    border-color: #667eea;
}

/* CSS версия 1.6 - Все встроенные стили перенесены в main.css */ 