body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
}

/***************************************************************************************************************************************************/
/***************************************************************************************************************************************************/
/*NavBar CSS*/
/* Navbar Base */

nav {
    background-color: black;
    color: white;
    padding: 0 20px;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: auto;
}

/* Menu Items */
.nav-links,
.dropdown,
.sub-dropdown {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-links {
    display: flex;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    display: block;
    padding: 15px 20px;
    text-decoration: none;
    color: white;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.call-to-action {
    width: 100%;
    padding: 1rem;
    background: #e67e22;
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: auto;
}

/* Underline animation */
.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 5px;
    width: 0%;
    height: 2px;
    background-color: white;
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Dropdown Menu */
.dropdown {
    display: none;
    position: absolute;
    background-color: black;
    min-width: 250px;
    z-index: 1000;
}

.dropdown li a {
    padding: 12px 20px;
    white-space: nowrap;
}

.nav-links li:hover>.dropdown {
    display: block;
}

/* Nested Dropdown (Countries) */
.dropdown li {
    position: relative;
}

.sub-dropdown {
    display: none;
    position: absolute;
    left: 100%;
    top: 0;
    background-color: black;
    min-width: 250px;
    z-index: 1000;
}

.dropdown li:hover>.sub-dropdown {
    display: block;
}

/* Safari Guide Highlight */
.guide-link {
    font-weight: bold;
    background-color: #222;
}

.guide-link:hover {
    background-color: #333;
}

/* Mobile Menu Button */
.menu-toggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
}

/* Responsive Styling */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 10px;
        padding: 0 15px;
    }

    .logo {
        font-size: 1.3rem;
    }

    nav ul {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }

    nav a {
        font-size: 0.9rem;
        padding: 8px 12px;
    }

    .menu-toggle {
        display: block;
        color: white;
    }

    .nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
        background-color: black;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        width: 100%;
    }

    .dropdown,
    .sub-dropdown {
        position: static;
        display: none;
    }

    .nav-links li.open>.dropdown,
    .dropdown li.open>.sub-dropdown {
        display: flex;
        flex-direction: column;
    }

    .dropdown-toggle {
        cursor: pointer;
    }
}

/* Small mobile devices */
@media (max-width: 480px) {
    header {
        padding: 8px 0;
    }

    .logo {
        font-size: 1.2rem;
    }

    nav ul {
        gap: 10px;
    }

    nav a {
        font-size: 0.8rem;
        padding: 6px 8px;
    }
}

/***************************************************************************************************************************************************/
/* Hero Section */
.hero-search {
    height: 100vh;
    background: url('images/collagenoblur.png') center/cover no-repeat;
    position: relative;
    color: white;
}

.overlay {
    background: rgba(0, 0, 0, 0.5);
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    padding: 0 5%;
    flex-wrap: wrap;
    width: 100%;
}

.hero-form {
    flex: 1;
    max-width: 400px;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    backdrop-filter: blur(5px);
}

.hero-form h2 {
    margin-bottom: 15px;
}

.hero-form form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hero-form input,
.hero-form select,
.hero-form button {
    padding: 10px;
    border: none;
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
}

.hero-form input,
.hero-form select {
    background: white;
    color: #333;
}

.hero-form button {
    background: #e67e22;
    color: white;
    cursor: pointer;
    transition: background 0.3s ease;
}

.hero-form button:hover {
    background: #cf6d17;
}

.hero-text {
    flex: 1;
    text-align: right;
    padding-right: 5%;
}

.hero-text h1 {
    font-size: 3rem;
    line-height: 1.2;
}

/*Tablet Styles*/
@media (max-width: 1024px) and (min-width: 769px) {
    .hero-text h1 {
        font-size: 2.5rem;
    }
}

/*Mobile Styles*/
@media (max-width: 768px) {
    .hero-search {
        height: auto;
        min-height: 100vh;
    }

    .hero-grid {
        flex-direction: column;
        text-align: center;
        padding: 20px 5%;
        gap: 20px;
    }

    .hero-form {
        max-width: 100%;
        order: 2;
    }

    .hero-text {
        text-align: center;
        padding: 20px 0;
        order: 1;
    }

    .hero-text h1 {
        font-size: 2rem;
        line-height: 1.3;
    }
}

/* Small mobile devices */
@media (max-width: 480px) {

    .hero-text h1 {
        font-size: 1.7rem;
    }

    .hero-form {
        padding: 15px;
    }
}

/***************************************************************************************************************************************************/
/* Journey Timeline Section */
.full-journey {
    background-color: #f7f7f7;
    padding: 60px 20px;
    text-align: center;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #222;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 40px;
}

.journey-timeline {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.journey-step {
    background-color: white;
    border-radius: 12px;
    padding: 20px;
    flex: 1 1 220px;
    max-width: 250px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.07);
    transition: transform 0.3s ease;
}

.journey-step:hover {
    transform: translateY(-5px);
}

.icon {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.journey-step h3 {
    font-size: 1.2rem;
    margin: 10px 0;
    color: #333;
}

.journey-step p {
    font-size: 0.95rem;
    color: #666;
}

/*Tablet Styles*/
@media (max-width: 1024px) and (min-width: 769px) {
    .journey-timeline {
        flex-wrap: wrap;
        gap: 15px;
    }

    .journey-step {
        flex: 1 1 45%;
        max-width: 45%;
    }
}

/*Mobile Styles*/
@media (max-width: 768px) {
    .journey-timeline {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .journey-step {
        /*max-width: 75%;*/
        padding: 15px;
    }
}

/* Small mobile devices */
@media (max-width: 480px) {




    .section-title {
        font-size: 1.5rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }
}

/***************************************************************************************************************************************************/
/* Slideshow Section */
.activity-slideshow {
    position: relative;
    overflow: hidden;
    background: #f1f1f6;
    padding: 40px 0;
}

.slide {
    display: none;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.slide.active {
    display: flex;
}

.slide>* {
    flex: 1 1 45%;
    max-width: 45%;
}

.slide img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.slide-text {
    text-align: left;
}

.slide-text h2 {
    font-size: 28px;
    margin-bottom: 10px;
    color: #222;
}

.slide-text p {
    font-size: 16px;
    line-height: 1.6;
    color: #444;
}

.prev,
.next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 32px;
    padding: 8px 12px;
    background-color: rgba(0, 0, 0, 0.4);
    color: white;
    border: none;
    border-radius: 4px;
    z-index: 10;
    transition: background 0.3s ease;
}

.prev:hover,
.next:hover {
    background-color: rgba(0, 0, 0, 0.7);
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

.slideshow-wrapper {
    width: 70%;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/*Tablet Styles*/
@media (max-width: 1024px) and (min-width: 769px) {
    .slideshow-wrapper {
        width: 85%;
    }
}

/*Mobile Styles*/
@media (max-width: 768px) {
    .slideshow-wrapper {
        width: 95%;
    }

    .slide {
        flex-direction: column;
        text-align: center;
        padding: 0 10px;
    }

    .slide>* {
        max-width: 100%;
    }

    .slide-text h2 {
        font-size: 24px;
    }

    .slide-text p {
        font-size: 14px;
    }

    .prev,
    .next {
        font-size: 24px;
        padding: 6px 10px;
    }

    .prev {
        left: 5px;
    }

    .next {
        right: 5px;
    }
}

/***************************************************************************************************************************************************/
/***************************************************************************************************************************************************/
/* Footer */
footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
    padding: 60px 20px 30px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section h3 {
    margin-bottom: 20px;
    color: #ff6600;
    font-weight: 600;
}

.footer-section p,
.footer-section a {
    color: #ccc;
    text-decoration: none;
    margin-bottom: 10px;
    display: block;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #ff6600;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #ff6600, #ff9900);
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 102, 0, 0.3);
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #333;
    color: #999;
}

/* WhatsApp Button */
.whatsapp-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    background: linear-gradient(45deg, #25d366, #128c7e);
    border-radius: 50%;
    padding: 15px;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    text-decoration: none;
    color: white;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 2s infinite;
}

.whatsapp-button:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.6);
    color: white;
}

@keyframes pulse {
    0% {
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    }

    50% {
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6), 0 0 0 10px rgba(37, 211, 102, 0.1);
    }

    100% {
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .whatsapp-button {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
        padding: 12px;
    }
}