/* Updated color scheme to match reference website */
:root {
    --primary-color: #7a2b62;
    --primary-dark: #0052a3;
    --secondary-color: #f8f9fa;
    --accent-color: #28a745;
    --text-dark: #333333;
    --text-light:  #666666;
    --border-color: #e0e0e0;
    --shadow-color: rgba(0, 0, 0, 0.1);
}

section {
    margin-bottom: 5px;
}
h1 {
    font-family: Arial, Helvetica, sans-serif;
}

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

body {
    font-family: 'Roboto', 'Segoe UI', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    font-size: 16px;
    overflow-x: hidden;
    background-color: #fffbfe;
}

/* Navigation - Updated to match reference */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px var(--shadow-color);
    z-index: 1000;
    padding: 0;
    transition: all 0.3s ease;
}

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

.logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}

.logo-img {
    width: 60px;
    height: 60px;
    object-fit:  contain;
    border-radius: 8px;
}

.logo-text {
    font-size: 1.8rem;
    font-weight:  700;
    color: var(--primary-color);
    letter-spacing: 0.5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 1rem;
    padding: 8px 0;
    position: relative;
    transition: color 0.3s ease;
}

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

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

.nav-menu a:hover::after {
    width:  100%;
}
/*
.lang-selector {
    display: flex;
    gap: 5px;
    margin-left: 20px;
}

.lang-btn {
    padding: 8px 16px;
    border: 2px solid var(--primary-color);
    background: transparent;
    color: var(--primary-color);
    cursor: pointer;
    font-weight: 500;
    border-radius: 4px;
    transition: all 0.3s ease;
    min-width: 60px;
    font-size: 0.9rem;
}

.lang-btn.active {
    background: var(--primary-color);
    color: white;
}

.lang-btn:hover:not(.active) {
    background: rgba(0, 102, 204, 0.1);
}
*/



.lang-selector {
    display: flex;
    gap: 5px;
    margin-left: 20px;
}

.lang-btn {
    padding: 8px 16px;
    border: 2px solid var(--primary-color);
    background: transparent;
    color: var(--primary-color);
    cursor: pointer;
    font-weight: 500;
    border-radius: 4px;
    transition: all 0.3s ease;
    min-width: 60px;
    font-size: 0.9rem;
}

.lang-btn.active {
    background: var(--primary-color);
    color: white;
}

.lang-btn:hover:not(.active) {
    background: rgba(0, 102, 204, 0.1);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    padding: 10px;
    background: none;
    border: none;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: all 0.3s ease;
}

/* Hero Section - FULLY UPDATED FOR RESPONSIVENESS */
.hero {
    margin-top: 100px;
    background: linear-gradient(135deg, #f3d6e3 0%, #f3d6e3 100%);
    color: rgb(58, 28, 45);
    position: relative;
    overflow: hidden;
    
    /* Layout Update:  Flexbox for side-by-side */
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    transition: all 0.3s ease;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
    z-index: 0;
}

.img-hero {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.img-hero img {
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius:1px;
    display: block;
}

.hero-content {
    flex: 1;
    position: relative;
    z-index: 1;
    text-align: center;
    margin-left: 7rem;
    max-width: 600px;
    transition: all 0.3s ease;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.2;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom:  35px;
    opacity: 0.9;
    line-height: 1.7;
}

.hero-buttons {
    display: inline-flex;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    min-width: 450px;
}

.btn-primary {
    background: linear-gradient(135deg, #d47aa3 0%, #f3d6e3 100%);
    color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.btn-primary:hover {
    background: #f8f9fa;
    transform:  translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background: linear-gradient(135deg, #f3d6e3 0%, #f3d6e3 100%);
    border: 2px solid white;
    color: white;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.8);
}

.hero-subtitle {
    background: rgba(255, 255, 255, 0.15);
    padding: 25px;
    border-radius:  8px;
    border-left: 4px solid white;
    margin-top: 40px;
    backdrop-filter: blur(10px);
}

.hero-subtitle p {
    margin-bottom: 10px;
    opacity: 1;
}

.hero-subtitle strong {
    font-size: 1.2rem;
    display: block;
    margin-bottom: 10px;
    color: white;
}

/* Content Sections - Updated spacing and styling */
.section {
    padding: 100px 20px;
}

.section-light {
    background: var(--secondary-color);
}

.section-dark {
    background: var(--primary-color);
    color: white;
}

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

.section-title {
    font-size: 2.4rem;
    font-weight:  700;
    margin-bottom: 50px;
    text-align: center;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 20px;
}

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

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

.section-dark .section-title::after {
    background: white;
}

/* Three Column Layout */
.three-cols {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.col {
    background: white;
    padding: 35px;
    border-radius:  10px;
    box-shadow:  0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.col:hover {
    transform:  translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.col h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--primary-color);
    line-height: 1.3;
}

.col p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height:  1.7;
}

.col ul {
    list-style: none;
    padding-left: 0;
    margin-top: 20px;
}

.col ul li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
    position: relative;
    padding-left: 25px;
    color: var(--text-dark);
}

.col ul li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.1rem;
}

.col ul li:last-child {
    border-bottom: none;
}

/* Two Column Layout */
.two-cols {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    align-items: start;
    margin-top: 40px;
}

.two-cols > div:first-child h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    font-weight:  600;
}

.services-list {
    list-style: none;
    padding-left: 0;
    margin:  25px 0;
    background: rgba(0, 102, 204, 0.05);
    padding: 20px;
    border-radius: 8px;
}

.services-list li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 102, 204, 0.1);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-dark);
}

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

.services-section-spacing {
    margin-top: 60px;
}

/* Team Section */
.team-member {
    text-align: center;
    background: white;
    padding: 35px;
    border-radius:  10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.team-avatar {
    width: 140px;
    height: 140px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 102, 204, 0.3);
}

.team-role {
    color: var(--accent-color);
    font-weight: 600;
    margin:  15px 0;
    font-size: 1.1rem;
}

/* Pricing Section */
.pricing-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top:  50px;
}

.pricing-card {
    background:  white;
    padding: 35px;
    border-radius:  10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.pricing-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 102, 204, 0.15);
}

.pricing-card h3 {
    color: var(--primary-color);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom:  2px solid var(--border-color);
    font-size: 1.4rem;
    font-weight: 600;
}

.pricing-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 15px 0;
    border-bottom:  1px solid var(--border-color);
    gap: 20px;
}

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

.pricing-item span {
    flex: 1;
    padding-right: 20px;
    color: var(--text-dark);
    line-height: 1.5;
}

.pricing-item strong {
    color: var(--primary-color);
    font-size: 1.3rem;
    font-weight: 700;
    min-width: 80px;
    text-align: right;
    flex-shrink: 0;
}

/* Contact Section */
.contact-section .section-title {
    margin-bottom: 60px;
}

.two-cols-contact {
    margin-top: 50px;
}

.contact-info h3 {
    color: white;
    margin-bottom: 30px;
    font-size:  1.6rem;
    font-weight:  600;
}

.contact-info h4 {
    color: rgba(255, 255, 255, 0.95);
    margin: 30px 0 15px 0;
    font-size: 1.2rem;
    font-weight: 600;
}

.contact-info p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 8px;
    line-height:  1.8;
    font-size: 1.05rem;
}

.contact-booking {
    margin-top: 40px;
}

.contact-booking .btn-primary {
    background: white;
    color: var(--primary-color);
    padding: 15px 35px;
}

.contact-booking .btn-primary:hover {
    background:  #f8f9fa;
}

.contact-form {
    background:  rgba(255, 255, 255, 0.12);
    padding: 35px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.contact-form .form-group {
    margin-bottom: 25px;
}

.contact-form label {
    display:  block;
    margin-bottom:  10px;
    color: white;
    font-weight: 500;
    font-size: 1.05rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.95);
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
    color: var(--text-dark);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: white;
    background: white;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2);
}

.contact-form textarea {
    min-height: 160px;
    resize: vertical;
}

.contact-form .btn {
    width: 100%;
    margin-top: 15px;
    padding: 16px;
    font-size: 1.1rem;
}

.success-message {
    background: rgba(40, 167, 69, 0.9);
    color: white;
    padding: 15px 20px;
    border-radius:  6px;
    margin-bottom: 25px;
    text-align: center;
    font-weight: 500;
    border-left: 4px solid #218838;
}

/* Footer */
.footer {
    background: #222;
    color: white;
    padding: 60px 20px 30px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    align-items: start;
}

.footer-info {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin-top: 20px;
    line-height: 1.6;
}

.footer-links {
    margin-top: 20px;
    line-height: 1.8;
}

.footer-links a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.footer-links a:hover {
    color: white;
    text-decoration: underline;
}

.footer-links strong {
    color: white;
    font-weight: 600;
}

.footer-content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
    line-height: 1.6;
}

/* Scroll to top button */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility:  hidden;
    transition: all 0.3s ease;
    z-index: 100;
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
    border: none;
    font-size: 1.2rem;
}

.scroll-top .visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

.tem {
    min-height: 17.25cm;
}

#tem {
    margin-bottom: 50px;
}

#tem-en {
    margin-bottom: 50px;
}

.tem-en {
    min-height: 18.30cm;
}

.t-cols-o {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    align-items: start;
    gap: 10px;
}

#h4 h4 {
    text-decoration: underline;
}

#h44 h4 {
    text-decoration: underline;
}

.cl {
    transition: all 0.3s ease;
    height: 100%;
    margin-top: -15px;
}

.cl ul {
    list-style: none;
    padding-left: 0;
    margin-top: 20px;
}

.cl ul li {
    border-bottom: 1px solid var(--border-color);
    position: relative;
    padding-left: 25px;
    color: var(--text-dark);
}

.cl ul li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
    font-size:  1.1rem;
}

.cl ul li:last-child {
    border-bottom:  none;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.section-intro {
    max-width: 800px;
    margin: 0 auto 50px;
    color: var(--text-light);
    font-size: 1.15rem;
    line-height:  1.8;
    text-align: center;
}

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom:  1rem; }
.mb-2 { margin-bottom:  2rem; }
.mb-3 { margin-bottom:  3rem; }

/* ============================================
   RESPONSIVE DESIGN - UPDATED AND IMPROVED
   ============================================ */

/* Large tablets and small desktops (1100px and below) */
@media (max-width: 1100px) {
    .hero {
        gap: 35px;
    }
    
    .hero-content {
        margin-left: 3rem;
    }
    
    .hero h1 {
        font-size: 2.4rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .img-hero {
        max-width: 500px;
    }
}

/* Medium tablets (900px and below) */
@media (max-width: 900px) {
    .hero {
        gap: 30px;

    }
    
    .hero-content {
        margin-left: 1.5rem;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero p {
        font-size: 1.05rem;
    }
    
    .img-hero {
        max-width: 400px;
    }
}

/* Tablets and Mobile (768px and below) - CRITICAL BREAKPOINT */
@media (max-width: 768px) {
    /* Navigation Mobile */
    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top:  90px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: all 0.3s ease;
        z-index: 999;
        border-radius: 0 0 10px 10px;
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu a {
        display: block;
        padding: 15px 0;
        border-bottom: 1px solid var(--border-color);
        font-size: 1.1rem;
    }

    .nav-menu a:last-child {
        border-bottom: none;
    }

    .lang-selector {
        margin-left: 0;
        margin-top: 20px;
        justify-content: center;
    }

    /* HERO SECTION - MOBILE OPTIMIZED */
    .hero {
        margin-top: 90px;
        flex-direction: column; /* Stack vertically */
        text-align: center;
        gap: 30px;
    }
    
    .hero-content {
        text-align: center;
        order: 2; /* Content comes after image */
        margin-left: 0 !important; /* CRITICAL: Remove left margin */
        margin-right: 0 ! important;
        padding: 0 10px;
        max-width: 100%;
    }
    
    .img-hero {
        order: 1; /* Image comes first */
        margin-bottom: 20px;
        max-width: 100%;
        width: 100%;
    }
    
    .img-hero img {
        max-width: 100%;
        width: 100%;
    }

    .hero h1 {
        font-size: 2rem ! important;
    }
    
    .hero p {
        font-size: 1rem;
        margin-bottom: 25px;
    }
    
    .hero::before {
        width: 70%;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        justify-content: center;
        width: 100%;
    }

    .btn {
        min-width: 100%;
        width: 100%;
        margin-bottom: 10px;
        padding: 14px 20px;
    }

    /* Other sections mobile */
    .section {
        padding: 80px 20px;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    .three-cols {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 40px;
    }

    .col {
        padding: 30px;
    }

    .pricing-container {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .two-cols {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .footer {
        padding: 50px 20px 25px;
    }
}

/* Small Mobile (480px and below) - EXTRA SMALL SCREENS */
@media (max-width: 480px) {
    .hero {
        margin-top: 80px;
        gap: 20px;
    }
    
    .hero-content {
        padding: 0 5px;
        margin-left:  0 !important;
        margin-right: 0 !important;
    }
    
    .hero h1 {
        font-size: 1.7rem !important;
        margin-bottom: 20px;
    }
    
    .hero p {
        font-size: 0.95rem;
        margin-bottom:  20px;
    }
    
    .hero-buttons {
        gap: 12px;
    }
    
    .btn {
        padding: 12px 16px;
        font-size:  0.95rem;
        width: 100%;
    }
    
    .img-hero img {
        border-radius: 6px;
    }
    
    .logo-text {
        font-size: 1.5rem;
    }
    
    .logo-img {
        width: 50px;
        height: 50px;
    }
    
    .nav-container {
        padding: 12px 15px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .col {
        padding: 25px;
    }
    
    .hero-subtitle {
        padding: 20px;
    }
}


















/*------------------------------------popup-style------*/


.discount-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.popup-content {
  background: #fff;
      padding: 50px 30px 30px 30px;
  width: 90%;
  max-width: 600px;
  min-height: 300px;
  border-radius: 12px;
  text-align: center;
  position: relative;
  animation: popupFade 0.4s ease;
}

.popup-content h2 {
  margin-bottom: 10px;
  color: #222;
}

.popup-content p {
  margin-bottom: 15px;
  color: #555;
}

.popup-content .code {
  display: inline-block;
  background: #f4f4f4;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: bold;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.cta-btn {
  background: #0066cc;
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1rem;
}

.cta-btn:hover {
  background: #004c99;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}

@keyframes popupFade {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}


@media (max-width: 480px) {
    .discount-popup p {
        padding: 50px 30px 30px 30px;
    }
}