.elementor-702 .elementor-element.elementor-element-d6d5e2a{--display:flex;}/* Start custom CSS for html, class: .elementor-element-3ab9132 */* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #3a3a3a;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background: linear-gradient(135deg, #0f4c3a 0%, #1a5c4a 100%);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo a {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #4CAF50;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #4CAF50;
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Hero Section */
.hero-about {
    position: relative;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0f4c3a 0%, #2d7a5f 100%);
    margin-top: 70px;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 76, 58, 0.8) 0%, rgba(45, 122, 95, 0.7) 100%);
    z-index: -1;
}

.hero-content {
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 40px;
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Section Headers */
.section-header {
    margin-bottom: 60px;
}

.section-header.center {
    text-align: center;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #0f4c3a;
    margin-bottom: 15px;
}

.divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(135deg, #4CAF50, #2d7a5f);
    margin: 0 auto 20px;
}

.section-header.center .divider {
    margin: 0 auto 20px;
}

.section-header p {
    font-size: 1.1rem;
    color: #5A5A5A;
    max-width: 800px;
}

.section-header.center p {
    margin: 0 auto;
}

/* Our Story Section */
.our-story {
    padding: 100px 0;
    background: white;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.story-text .lead {
    font-size: 1.3rem;
    color: #0f4c3a;
    font-weight: 500;
    margin-bottom: 30px;
    line-height: 1.8;
}

.story-text p {
    font-size: 1.1rem;
    color: #5A5A5A;
    line-height: 1.8;
    margin-bottom: 25px;
}

.story-image {
    text-align: center;
}

.story-photo {
    width: 100%;
    max-width: 450px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(15, 76, 58, 0.2);
}

/* Why Russian Thai Section */
.why-russian-thai {
    padding: 100px 0;
    background: #f8f9fa;
}

.rt-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.benefit-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(15, 76, 58, 0.1);
    transition: all 0.3s ease;
    border-left: 5px solid #4CAF50;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 45px rgba(15, 76, 58, 0.2);
}

.benefit-icon {
    background: linear-gradient(135deg, #0f4c3a, #2d7a5f);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.benefit-icon i {
    font-size: 1.5rem;
    color: white;
}

.benefit-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: #0f4c3a;
    margin-bottom: 15px;
}

.benefit-card p {
    color: #5A5A5A;
    line-height: 1.7;
}

/* Services Overview Section */
.services-overview {
    padding: 100px 0;
    background: white;
}

.services-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.service-category {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 20px;
    border-left: 5px solid #4CAF50;
    transition: all 0.3s ease;
}

.service-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(15, 76, 58, 0.1);
}

.service-category h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #0f4c3a;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-category i {
    color: #4CAF50;
}

.service-category p {
    color: #5A5A5A;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-category ul {
    list-style: none;
}

.service-category ul li {
    color: #0f4c3a;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.service-category ul li::before {
    content: '•';
    color: #4CAF50;
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Our Team Section */
.our-team {
    padding: 100px 0;
    background: #f8f9fa;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.team-member {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(15, 76, 58, 0.1);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
}

.member-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.member-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-info {
    padding: 30px;
}

.member-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #0f4c3a;
    margin-bottom: 5px;
}

.member-info h4 {
    color: #4CAF50;
    font-size: 1rem;
    margin-bottom: 15px;
    font-weight: 500;
}

.member-info p {
    color: #5A5A5A;
    line-height: 1.6;
    margin-bottom: 20px;
}

.member-specialties {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.member-specialties span {
    background: linear-gradient(135deg, #0f4c3a, #2d7a5f);
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Locations Coverage Section */
.locations-coverage {
    padding: 100px 0;
    background: white;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 60px;
}

.location-card {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 20px;
    border-left: 5px solid #4CAF50;
}

.location-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #0f4c3a;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.location-card i {
    color: #4CAF50;
}

.location-list {
    display: grid;
    gap: 25px;
}

.location-item h4 {
    color: #0f4c3a;
    font-size: 1.1rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.location-item p {
    color: #5A5A5A;
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: #f8f9fa;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 35px rgba(15, 76, 58, 0.1);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.stars {
    color: #4CAF50;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.testimonial-content p {
    font-size: 1rem;
    color: #5A5A5A;
    line-height: 1.7;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author h4 {
    color: #0f4c3a;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.testimonial-author span {
    color: #8B8B8B;
    font-size: 0.9rem;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0f4c3a, #2d7a5f);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.cta-button.primary {
    background: #4CAF50;
    color: white;
}

.cta-button.secondary {
    background: #25D366;
    color: white;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.cta-keywords {
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 10px;
    margin-top: 30px;
}

.cta-keywords p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.4;
}

/* Footer */
.footer {
    background: #0f4c3a;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: white;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 15px;
}

.footer-keywords {
    margin-bottom: 20px;
}

.footer-keywords p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.4;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: #4CAF50;
    color: white;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: white;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
}

.footer-section i {
    color: #4CAF50;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-logo a {
        font-size: 1.2rem;
    }
    
    .nav-menu {
        display: none;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .story-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .rt-benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .services-categories {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .locations-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading animation for images */
img {
    transition: opacity 0.3s ease;
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}/* End custom CSS */