/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Montserrat:wght@300;400;500;600;700&family=Playfair+Display:wght@400;500;600;700&display=swap');

/* Variables */
:root {
    --primary: #0E3D59;    /* deep blue */
    --primary-light: rgba(14, 61, 89, 0.95);
    --secondary: #58A4B0;  /* cool teal */
    --accent: #FFC857;     /* warm saffron */
    --background: #F1FAEE; /* frosty near-white */
    --text: #1D1D1D;      /* dark charcoal */
    --white: #ffffff;
    --gradient-overlay: linear-gradient(to bottom, rgba(14, 61, 89, 0.8), rgba(14, 61, 89, 0.6));
    --glass-effect: rgba(255, 255, 255, 0.1);
    --transition: all 0.3s ease-in-out;
    --shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 8px 25px rgba(0, 0, 0, 0.15);
    --container-padding: 20px;
    --section-spacing: 6rem;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    width: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--text);
    background-color: var(--background);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    width: 100%;
    overflow-x: hidden;
    max-width: 100vw;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Responsive container widths */
@media (max-width: 1200px) {
    .container {
        max-width: 100%;
        padding: 0 15px;
    }
}

@media (max-width: 992px) {
    .container {
        max-width: 100%;
        padding: 0 15px;
    }
    
    html {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .container {
        max-width: 100%;
        padding: 0 10px;
    }
    
    html {
        font-size: 14px;
    }
    
    .currency-selector:hover {
        width: 110px;
    }
    
    .currency-selector .header {
        padding: 8px 12px;
    }
    
    .currency-selector .currency-option {
        padding: 8px 12px;
    }
    
    .currency-selector .currency-option:hover {
        padding-left: 15px;
    }
    
    .currency-options {
        width: 110px; /* Match the hover width */
    }
    
    .currency-selector.touch-active {
        width: 110px;
    }
}

@media (max-width: 576px) {
    .container {
        max-width: 100%;
        padding: 0 10px;
    }
    
    html {
        font-size: 13px;
    }
}

/* Navigation */
.navbar {
    background: rgba(14, 61, 89, 0.85);
    backdrop-filter: blur(10px) saturate(180%);
    -webkit-backdrop-filter: blur(10px) saturate(180%);
    padding: 1.2rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid var(--glass-effect);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 3rem;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--accent);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    height: 90vh;
    background: var(--gradient-overlay),
                url('./landingPng.png') no-repeat center center fixed;
    background-size: cover;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--white);
    margin-top: -80px;
    padding-top: 80px;
}

.hero-content {
    width: 100%;
    padding: 2rem;
    animation: fadeInUp 1.2s ease-out;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.3);
    letter-spacing: -1px;
    position: relative;
    display: inline-block;
}

.hero h1::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--accent);
}

/* About Section */
.about-section {
    padding: var(--section-spacing) 0;
    background: var(--white);
}

.about-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text);
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

/* Team Section */
.team-section {
    padding: var(--section-spacing) 0;
    background: var(--background);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.team-card {
    text-align: center;
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.team-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px 15px 0 0;
}

.team-card h3 {
    color: var(--primary);
    margin: 1.5rem 0 0.5rem;
    font-size: 1.5rem;
}

.team-card .position {
    color: var(--secondary);
    font-weight: 500;
    margin-bottom: 1rem;
}

.team-card .bio {
    padding: 0 1.5rem 2rem;
    color: var(--text);
    line-height: 1.6;
}

/* Achievements Section */
.achievements-section {
    padding: var(--section-spacing) 0;
    background: var(--white);
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.achievement-card {
    text-align: center;
    padding: 2rem;
    background: var(--background);
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.achievement-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.achievement-card i {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 1rem;
}

.achievement-card h3 {
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.achievement-card p {
    color: var(--secondary);
}

/* Footer */
footer {
    background: linear-gradient(135deg, var(--primary) 0%, #1a5580 100%);
    color: var(--white);
    padding: 4.5rem 0 1.5rem;
    position: relative;
    overflow: hidden;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.footer-section h3 {
    color: var(--accent);
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.social-links {
    display: flex;
    gap: 0.75rem;
}

.social-links a {
    color: var(--white);
    font-size: 1.5rem;
    transition: var(--transition);
    opacity: 0.9;
}

.social-links a:hover {
    color: var(--accent);
    transform: translateY(-5px);
    opacity: 1;
}

/* WhatsApp Button */
.whatsapp-button {
    position: fixed;
    bottom: 30px;
    left: 30px;
    display: flex;
    align-items: center;
    background-color: #25D366;
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-family: inherit;
    font-size: 16px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    z-index: 9999;
}

/* Currency Selector */
.currency-selector {
    position: fixed;
    top: 100px;
    right: 10px;
    width: 120px;
    background-color: #ffc65c;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    transition: all 0.3s ease;
}

.currency-selector:hover {
    border-radius: 8px 8px 0 0;
    width: 130px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.currency-selector .header {
    padding: 10px 15px;
    background-color: #ffc65c;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.currency-selector .header:hover {
    padding: 12px 15px;
    justify-content: space-between;
}

.currency-selector .header::after {
    content: "▼";
    font-size: 0.8em;
    transition: transform 0.3s ease;
}

.currency-selector:hover .header::after {
    transform: rotate(180deg);
}

.currency-selector .currency-options {
    max-height: 0;
    opacity: 0;
    transition: all 0.3s ease;
    overflow: hidden;
}

.currency-selector:hover .currency-options {
    max-height: 200px;
    opacity: 1;
}

.currency-selector .currency-option {
    padding: 10px 15px;
    cursor: pointer;
    background-color: #f5f5f5;
    transition: all 0.2s ease;
}

.currency-selector .currency-option:hover {
    background-color: #e0e0e0;
    padding-left: 20px;
}

.currency-selector .currency-option.touch-active {
    background-color: #e0e0e0;
    padding-left: 20px;
}

/* Button Styles */
.cta-button, 
.tour-button,
.submit-button,
.search-button {
    display: inline-block;
    padding: 12px 24px;
    background: var(--accent);
    color: var(--primary);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    font-size: 1rem;
    box-shadow: var(--shadow);
}

.cta-button:hover,
.tour-button:hover,
.submit-button:hover,
.search-button:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

/* Custom Modal/Popup Styles */
.custom-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.custom-modal-content {
    background: linear-gradient(135deg, var(--white) 0%, var(--background) 100%);
    border-radius: 20px;
    padding: 2rem;
    width: 90%;
    max-width: 500px;
    max-height: 85vh;
    overflow-y: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: var(--shadow-hover);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.custom-modal-heading {
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    text-align: center;
}

.custom-close {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 28px;
    font-weight: bold;
    color: var(--primary);
    cursor: pointer;
    transition: var(--transition);
}

.custom-close:hover {
    color: var(--accent);
}

.custom-rounded-input {
    width: 100%;
    padding: 12px 20px;
    margin: 8px 0;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    font-size: 1rem;
    transition: var(--transition);
    background: var(--white);
}

.custom-rounded-input:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 0 2px rgba(88, 164, 176, 0.2);
}

.custom-rounded-button {
    width: 100%;
    padding: 12px 24px;
    margin-top: 1rem;
    background: var(--accent);
    color: var(--primary);
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.custom-rounded-button:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

/* About Content Styles */
.about-content {
    max-width: 1000px;
    margin: 0 auto;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    text-align: center;
}

.stat-item {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.stat-item i {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 1rem;
}

.stat-item h3 {
    color: var(--primary);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: var(--secondary);
    font-weight: 500;
}

/* Mission & Values Section */
.mission-values {
    padding: var(--section-spacing) 0;
    background: var(--background);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.value-card i {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 1rem;
}

.value-card h3 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.value-card p {
    color: var(--text);
}

/* Section Title */
.section-title {
    text-align: center;
    color: var(--primary);
    margin-bottom: 3rem;
    font-size: 2.8rem;
    font-family: 'Playfair Display', serif;
    position: relative;
    padding-bottom: 1.5rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--accent);
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
}

/* Newsletter Section */
.newsletter {
    padding: var(--section-spacing) 0;
    background: linear-gradient(135deg, var(--primary) 0%, #1a5580 100%);
    color: var(--white);
}

.newsletter-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-content h2 {
    margin-bottom: 1rem;
    font-size: 2rem;
}

.newsletter-content p {
    margin-bottom: 2rem;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 20px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
}

.newsletter-form input:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.3);
}

@media (max-width: 768px) {
    .about-stats {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 1.5rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .about-stats {
        grid-template-columns: 1fr;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form .submit-button {
        width: 100%;
    }
}

/* Footer Links */
.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
    opacity: 0.9;
}

.footer-section ul li a:hover {
    color: var(--accent);
    opacity: 1;
    transform: translateX(5px);
}

.footer-section ul li i {
    margin-right: 0.5rem;
    color: var(--accent);
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 1.5rem;
}

.footer-bottom p {
    opacity: 0.7;
    font-size: 0.85rem;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
}

.hamburger span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--white);
    border-radius: 3px;
    transition: var(--transition);
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-links {
        display: none;
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: var(--primary);
        padding: 1rem 0;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        z-index: 999;
    }
    
    .nav-links.active {
        display: flex;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .about-text {
        font-size: 1.1rem;
        padding: 0;
    }

    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }

    .team-card img {
        height: 250px;
    }
    
    .about-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .mission-values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }

    .whatsapp-button {
        left: 20px;
        padding: 10px 20px;
        font-size: 14px;
    }

    .currency-selector {
        top: 100px;
        right: 10px;
        width: 100px;
    }
    
    .currency-selector:hover {
        width: 110px;
    }
}

@media (max-width: 576px) {
    .team-grid {
        grid-template-columns: 1fr;
    }

    .team-card {
        max-width: 100%;
        margin: 0 auto;
    }
    
    .about-stats-grid {
        grid-template-columns: 1fr;
    }
    
    .about-stat {
        padding: 1.5rem 1rem;
    }
    
    .about-stat h3 {
        font-size: 2rem;
    }
    
    .about-stat p {
        font-size: 0.9rem;
    }

    .whatsapp-button {
        left: 15px;
        padding: 8px 16px;
        font-size: 12px;
    }
} 


.logo-container {
    display: flex;
    align-items: center;
  }
  
  .logo-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 10px;
    object-fit: cover;
  }
  

  
.payment-icons {
    display: flex;
    color: #ffc857;
    justify-content: center;
    gap: 15px;
  }
  
  .payment-icons img {
    width: 60px;
    height: 40px;
  }

  .zyberly-logo {
    width: 30px; /* Adjust size as needed */
    height: 30px; /* Adjust size as needed */
    border-radius: 50%;
    text-align: center;
    margin-right: 10px;
  }
  
  .footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
  
  }
  