/* ===== BROWN & GREEN SAFARI THEME ===== */
/* Modern Safari-Inspired Color Palette */
:root {
    /* Brown Tones - Earthy & Natural */
    --brown-dark: #5D4037;
    --brown-medium: #795548;
    --brown-light: #8D6E63;
    --brown-soft: #D7CCC8;
    --brown-cream: #EFEBE9;

    /* Green Tones - Safari & Nature */
    --green-dark: #2E7D32;
    --green-medium: #4CAF50;
    --green-light: #66BB6A;
    --green-soft: #A5D6A7;
    --green-mint: #E8F5E9;

    /* Neutral & Accent Colors */
    --white: #FFFFFF;
    --black: #212121;
    --gray-dark: #424242;
    --gray-medium: #757575;
    --gray-light: #BDBDBD;
    --gray-soft: #EEEEEE;

    /* Gradients */
    --gradient-safari: linear-gradient(135deg, var(--brown-medium) 0%, var(--green-medium) 100%);
    --gradient-hero: linear-gradient(rgba(93, 64, 55, 0.7), rgba(46, 125, 50, 0.7));

    /* Shadows */
    --shadow-light: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 5px 15px rgba(0, 0, 0, 0.1);
    --shadow-heavy: 0 10px 30px rgba(0, 0, 0, 0.15);

    /* Border Radius */
    --radius-small: 4px;
    --radius-medium: 8px;
    --radius-large: 16px;
    --radius-rounded: 50px;

    /* Transitions */
    --transition-fast: 0.3s ease;
    --transition-medium: 0.5s ease;
    --transition-slow: 0.8s ease;
}

/* ===== BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--black);
    background-color: var(--brown-cream);
    overflow-x: hidden;
}

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

img {
    max-width: 100%;
    height: auto;
}

/* ===== TYPOGRAPHY ===== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--brown-dark);
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.8rem;
}

h4 {
    font-size: 1.4rem;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: var(--green-medium);
    transition: var(--transition-fast);
}

a:hover {
    color: var(--green-dark);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: var(--radius-rounded);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition-fast);
    border: none;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    text-transform: none;
}

.btn-primary {
    background: var(--gradient-safari);
    color: var(--white);
    box-shadow: var(--shadow-medium);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-heavy);
    color: var(--white);
}

.btn-outline {
    background: transparent;
    color: var(--brown-dark);
    border: 2px solid var(--brown-medium);
}

.btn-outline:hover {
    background: var(--brown-medium);
    color: var(--white);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline-white:hover {
    background: var(--white);
    color: var(--brown-dark);
}

.btn-white {
    background: var(--white);
    color: var(--brown-dark);
}

.btn-white:hover {
    background: var(--brown-cream);
    color: var(--brown-dark);
}

.btn-large {
    padding: 16px 36px;
    font-size: 1.1rem;
}

.btn-package {
    background: var(--green-medium);
    color: var(--white);
    padding: 10px 20px;
    font-size: 0.9rem;
}

.btn-package:hover {
    background: var(--green-dark);
    color: var(--white);
}

.btn-submit {
    background: var(--green-medium);
    color: var(--white);
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
}

.btn-submit:hover {
    background: var(--green-dark);
}

/* ===== TOP BAR ===== */
.top-bar {
    background: var(--brown-dark);
    color: var(--white);
    padding: 8px 0;
    font-size: 0.9rem;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left a,
.top-bar-right span {
    color: var(--white);
    margin-right: 20px;
}

.top-bar-left a:hover {
    color: var(--green-soft);
}

.social-links-top a {
    color: var(--white);
    margin-left: 12px;
    font-size: 1rem;
}

.social-links-top a:hover {
    color: var(--green-soft);
}

/* ===== HEADER ===== */
.main-header {
    background: var(--white);
    box-shadow: var(--shadow-light);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 60px;
    margin-right: 15px;
}

.logo-text h1 {
    font-size: 1.8rem;
    margin-bottom: 0;
    color: var(--brown-dark);
}

.tagline {
    font-size: 0.9rem;
    color: var(--green-medium);
    font-style: italic;
    margin: 0;
}

.mobile-menu {
    display: none;
    font-size: 1.5rem;
    color: var(--brown-dark);
    cursor: pointer;
}

.main-nav ul {
    display: flex;
    list-style: none;
}

.main-nav li {
    margin: 0 15px;
    position: relative;
}

.main-nav a {
    color: var(--brown-dark);
    font-weight: 500;
    padding: 10px 0;
    display: flex;
    align-items: center;
}

.main-nav a:hover {
    color: var(--green-medium);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    box-shadow: var(--shadow-medium);
    border-radius: var(--radius-medium);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition-fast);
    z-index: 100;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    padding: 12px 20px;
    display: block;
    border-bottom: 1px solid var(--gray-soft);
}

.dropdown-menu a:hover {
    background: var(--green-mint);
}

/* ===== HERO SECTION ===== */
.hero-modern {
    position: relative;
    height: 90vh;
    min-height: 600px;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
}

.hero-slide.active {
    opacity: 1;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-hero);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    padding-top: 120px;
    max-width: 700px;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: var(--radius-rounded);
    font-size: 0.9rem;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-btns {
    display: flex;
    gap: 15px;
}

.hero-features {
    position: relative;
    z-index: 3;
    margin-top: -80px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.feature-item {
    background: var(--white);
    padding: 30px 20px;
    border-radius: var(--radius-medium);
    box-shadow: var(--shadow-heavy);
    text-align: center;
    transition: var(--transition-fast);
}

.feature-item:hover {
    transform: translateY(-10px);
}

.feature-item i {
    font-size: 2.5rem;
    color: var(--green-medium);
    margin-bottom: 15px;
}

.feature-item h4 {
    margin-bottom: 10px;
    color: var(--brown-dark);
}

.feature-item p {
    font-size: 0.9rem;
    color: var(--gray-medium);
    margin: 0;
}

/* ===== STATS SECTION ===== */
.stats-section {
    background: var(--brown-dark);
    color: var(--white);
    padding: 80px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-item {
    padding: 20px;
}

.stat-icon {
    font-size: 2.5rem;
    color: var(--green-soft);
    margin-bottom: 15px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--white);
}

.stat-label {
    font-size: 1.1rem;
    color: var(--brown-soft);
}

/* ===== SECTIONS COMMON STYLES ===== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header.center {
    text-align: center;
}

.section-subtitle {
    display: inline-block;
    color: var(--green-medium);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.section-title {
    color: var(--brown-dark);
    margin-bottom: 20px;
}

.section-description {
    color: var(--gray-medium);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== FEATURED PACKAGES ===== */
.featured-packages {
    padding: 100px 0;
    background: var(--brown-cream);
}

.package-categories {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
}

.category-btn {
    background: var(--white);
    color: var(--brown-dark);
    border: 2px solid var(--brown-soft);
    padding: 10px 20px;
    border-radius: var(--radius-rounded);
    cursor: pointer;
    transition: var(--transition-fast);
    font-weight: 500;
}

.category-btn.active,
.category-btn:hover {
    background: var(--green-medium);
    color: var(--white);
    border-color: var(--green-medium);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.package-card {
    background: var(--white);
    border-radius: var(--radius-large);
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: var(--transition-fast);
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.package-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.package-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-medium);
}

.package-card:hover .package-image img {
    transform: scale(1.05);
}

.package-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--green-medium);
    color: var(--white);
    padding: 5px 12px;
    border-radius: var(--radius-rounded);
    font-size: 0.8rem;
    font-weight: 600;
}

.package-badge.hot {
    background: #FF5722;
}

.package-badge.romantic {
    background: #E91E63;
}

.package-badge.corporate {
    background: #2196F3;
}

.package-duration {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: rgba(0, 0, 0, 0.7);
    color: var(--white);
    padding: 5px 12px;
    border-radius: var(--radius-rounded);
    font-size: 0.8rem;
}

.package-content {
    padding: 25px;
}

.package-rating {
    margin-bottom: 10px;
}

.package-rating i {
    color: #FFC107;
    margin-right: 2px;
}

.package-rating span {
    color: var(--gray-medium);
    font-size: 0.9rem;
    margin-left: 8px;
}

.package-content h3 {
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.package-content p {
    color: var(--gray-medium);
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.package-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.package-features span {
    background: var(--green-mint);
    color: var(--green-dark);
    padding: 5px 10px;
    border-radius: var(--radius-small);
    font-size: 0.8rem;
    display: flex;
    align-items: center;
}

.package-features i {
    margin-right: 5px;
    font-size: 0.7rem;
}

.package-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.package-price {
    text-align: left;
}

.price-label {
    display: block;
    font-size: 0.8rem;
    color: var(--gray-medium);
}

.price-amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brown-dark);
}

.price-unit {
    font-size: 0.9rem;
    color: var(--gray-medium);
}

.packages-cta {
    text-align: center;
}

/* ===== SERVICES SECTION ===== */
.services-modern {
    padding: 100px 0;
    background: var(--white);
}

.services-grid-modern {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card-modern {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--radius-large);
    box-shadow: var(--shadow-light);
    text-align: center;
    transition: var(--transition-fast);
    border: 1px solid var(--gray-soft);
}

.service-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
    border-color: var(--green-soft);
}

.service-icon-modern {
    width: 80px;
    height: 80px;
    background: var(--green-mint);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.service-icon-modern i {
    font-size: 2rem;
    color: var(--green-medium);
}

.service-card-modern h3 {
    margin-bottom: 15px;
    color: var(--brown-dark);
}

.service-card-modern p {
    color: var(--gray-medium);
    margin-bottom: 20px;
}

.service-link {
    color: var(--green-medium);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-link i {
    margin-left: 5px;
    transition: var(--transition-fast);
}

.service-link:hover i {
    transform: translateX(5px);
}

/* ===== DESTINATIONS SECTION ===== */
.destinations-section {
    padding: 100px 0;
    background: var(--brown-cream);
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.destination-card {
    border-radius: var(--radius-large);
    overflow: hidden;
    height: 350px;
    position: relative;
    box-shadow: var(--shadow-medium);
}

.destination-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: var(--transition-medium);
}

.destination-card:hover .destination-image {
    transform: scale(1.05);
}

.destination-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(93, 64, 55, 0.7);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--white);
    padding: 20px;
    text-align: center;
    opacity: 0;
    transition: var(--transition-fast);
}

.destination-card:hover .destination-overlay {
    opacity: 1;
}

.destination-overlay h3 {
    color: var(--white);
    margin-bottom: 10px;
}

.destination-overlay p {
    margin-bottom: 20px;
    color: var(--brown-soft);
}

/* ===== ABOUT SECTION ===== */
.about-modern {
    padding: 100px 0;
    background: var(--white);
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-images {
    position: relative;
}

.about-img-main {
    border-radius: var(--radius-large);
    overflow: hidden;
    box-shadow: var(--shadow-heavy);
}

.about-img-main img {
    width: 100%;
    height: auto;
}

.about-img-secondary {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 60%;
    border-radius: var(--radius-large);
    overflow: hidden;
    box-shadow: var(--shadow-heavy);
    border: 5px solid var(--white);
}

.about-img-secondary img {
    width: 100%;
    height: auto;
}

.about-badge {
    position: absolute;
    top: 30px;
    left: -20px;
    background: var(--green-medium);
    color: var(--white);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-heavy);
}

.badge-content {
    text-align: center;
}

.badge-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
}

.badge-text {
    font-size: 0.8rem;
    line-height: 1.2;
}

.about-content .section-title {
    text-align: left;
}

.about-description {
    color: var(--gray-medium);
    margin-bottom: 30px;
}

.about-features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.about-feature {
    display: flex;
    align-items: flex-start;
}

.feature-icon-box {
    width: 50px;
    height: 50px;
    background: var(--green-mint);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.feature-icon-box i {
    color: var(--green-medium);
    font-size: 1.2rem;
}

.feature-content h4 {
    margin-bottom: 5px;
    color: var(--brown-dark);
}

.feature-content p {
    color: var(--gray-medium);
    margin: 0;
    font-size: 0.9rem;
}

.about-cta {
    display: flex;
    gap: 15px;
}

/* ===== WHY CHOOSE US ===== */
.why-choose-us {
    padding: 100px 0;
    background: var(--brown-cream);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.why-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--radius-large);
    box-shadow: var(--shadow-light);
    text-align: center;
    transition: var(--transition-fast);
    position: relative;
}

.why-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.why-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--green-medium);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.why-card i {
    font-size: 2.5rem;
    color: var(--green-medium);
    margin-bottom: 20px;
}

.why-card h3 {
    margin-bottom: 15px;
    color: var(--brown-dark);
}

.why-card p {
    color: var(--gray-medium);
    margin: 0;
}

/* ===== TESTIMONIALS ===== */
.testimonials-modern {
    padding: 100px 0;
    background: var(--white);
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.testimonial-card-modern {
    background: var(--brown-cream);
    padding: 40px 30px;
    border-radius: var(--radius-large);
    box-shadow: var(--shadow-light);
    transition: var(--transition-fast);
}

.testimonial-card-modern:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.testimonial-rating {
    margin-bottom: 20px;
}

.testimonial-rating i {
    color: #FFC107;
    margin-right: 3px;
}

.testimonial-text {
    font-style: italic;
    color: var(--gray-dark);
    margin-bottom: 25px;
    line-height: 1.8;
}

.testimonial-author-modern {
    display: flex;
    align-items: center;
}

.testimonial-author-modern img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
}

.author-details h4 {
    margin-bottom: 5px;
    color: var(--brown-dark);
}

.author-details p {
    color: var(--gray-medium);
    margin: 0;
    font-size: 0.9rem;
}

.testimonials-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.stat-box {
    display: flex;
    align-items: center;
    text-align: left;
}

.stat-box i {
    font-size: 2.5rem;
    color: var(--green-medium);
    margin-right: 15px;
}

.stat-content h3 {
    margin-bottom: 5px;
    color: var(--brown-dark);
}

.stat-content p {
    color: var(--gray-medium);
    margin: 0;
    font-size: 0.9rem;
}

/* ===== GALLERY ===== */
.gallery-modern {
    padding: 100px 0;
    background: var(--brown-cream);
}

.gallery-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
}

.filter-btn {
    background: var(--white);
    color: var(--brown-dark);
    border: 2px solid var(--brown-soft);
    padding: 8px 20px;
    border-radius: var(--radius-rounded);
    cursor: pointer;
    transition: var(--transition-fast);
    font-weight: 500;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--green-medium);
    color: var(--white);
    border-color: var(--green-medium);
}

.gallery-grid-modern {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.gallery-item-modern {
    position: relative;
    border-radius: var(--radius-medium);
    overflow: hidden;
    height: 250px;
    box-shadow: var(--shadow-light);
}

.gallery-item-modern img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-medium);
}

.gallery-item-modern:hover img {
    transform: scale(1.05);
}

.gallery-overlay-modern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(93, 64, 55, 0.8);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--white);
    opacity: 0;
    transition: var(--transition-fast);
}

.gallery-item-modern:hover .gallery-overlay-modern {
    opacity: 1;
}

.gallery-overlay-modern h4 {
    color: var(--white);
    margin-bottom: 5px;
}

.gallery-overlay-modern p {
    color: var(--brown-soft);
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.gallery-overlay-modern i {
    font-size: 1.5rem;
    color: var(--white);
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 100px 0;
    background: var(--gradient-safari);
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    color: var(--white);
    margin-bottom: 20px;
}

.cta-content p {
    color: var(--brown-soft);
    max-width: 700px;
    margin: 0 auto 30px;
    font-size: 1.1rem;
}

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

.cta-features {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 8px;
}

.cta-feature i {
    color: var(--green-soft);
}

.cta-feature span {
    color: var(--brown-soft);
}

/* ===== CONTACT SECTION ===== */
.contact-modern {
    padding: 100px 0;
    background: var(--white);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info-modern h3 {
    margin-bottom: 15px;
    color: var(--brown-dark);
}

.contact-info-modern>p {
    color: var(--gray-medium);
    margin-bottom: 30px;
}

.contact-details-modern {
    margin-bottom: 40px;
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.contact-icon-box {
    width: 50px;
    height: 50px;
    background: var(--green-mint);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.contact-icon-box i {
    color: var(--green-medium);
    font-size: 1.2rem;
}

.contact-detail-content h4 {
    margin-bottom: 5px;
    color: var(--brown-dark);
}

.contact-detail-content p {
    color: var(--gray-medium);
    margin: 0;
}

.availability {
    display: inline-block;
    background: var(--green-soft);
    color: var(--green-dark);
    padding: 2px 8px;
    border-radius: var(--radius-small);
    font-size: 0.8rem;
    margin-top: 5px;
}

.social-links-modern h4 {
    margin-bottom: 15px;
    color: var(--brown-dark);
}

.social-icons-modern {
    display: flex;
    gap: 15px;
}

.social-icons-modern a {
    width: 40px;
    height: 40px;
    background: var(--brown-cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brown-dark);
    transition: var(--transition-fast);
}

.social-icons-modern a:hover {
    background: var(--green-medium);
    color: var(--white);
}

/* ===== CONTACT FORM ===== */
.modern-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--brown-dark);
    font-weight: 500;
}

.form-group label i {
    margin-right: 8px;
    color: var(--green-medium);
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--gray-light);
    border-radius: var(--radius-medium);
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: var(--transition-fast);
}

.form-control:focus {
    outline: none;
    border-color: var(--green-medium);
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
}

.form-note {
    text-align: center;
    margin-top: 15px;
    color: var(--gray-medium);
    font-size: 0.9rem;
}

.form-note i {
    margin-right: 5px;
    color: var(--green-medium);
}

/* ===== FOOTER ===== */
.modern-footer {
    background: var(--brown-dark);
    color: var(--white);
}

.footer-top {
    padding: 80px 0 50px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
}

.footer-col h3,
.footer-col h4 {
    color: var(--white);
    margin-bottom: 25px;
}

.footer-about p {
    color: var(--brown-soft);
    margin-bottom: 25px;
}

.footer-certifications {
    display: flex;
    gap: 15px;
}

.cert-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 15px;
    border-radius: var(--radius-medium);
}

.cert-badge i {
    color: var(--green-soft);
    font-size: 1.2rem;
}

.cert-badge span {
    font-size: 0.8rem;
    line-height: 1.3;
    color: var(--brown-soft);
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--brown-soft);
    display: flex;
    align-items: center;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--green-soft);
    transform: translateX(5px);
}

.footer-links i {
    margin-right: 8px;
    font-size: 0.7rem;
    color: var(--green-soft);
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.footer-contact i {
    color: var(--green-soft);
    margin-right: 10px;
    margin-top: 3px;
    width: 16px;
}

.footer-contact span {
    color: var(--brown-soft);
}

.footer-newsletter h5 {
    color: var(--white);
    margin-bottom: 15px;
    font-size: 1rem;
}

.newsletter-form {
    display: flex;
}

.newsletter-form input {
    flex: 1;
    padding: 10px 15px;
    border: none;
    border-radius: var(--radius-medium) 0 0 var(--radius-medium);
    font-family: 'Poppins', sans-serif;
}

.newsletter-form button {
    background: var(--green-medium);
    color: var(--white);
    border: none;
    padding: 0 15px;
    border-radius: 0 var(--radius-medium) var(--radius-medium) 0;
    cursor: pointer;
    transition: var(--transition-fast);
}

.newsletter-form button:hover {
    background: var(--green-dark);
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 25px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright p {
    color: var(--brown-soft);
    margin: 0;
}

.footer-payments {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-payments span {
    color: var(--brown-soft);
    margin-right: 10px;
    font-size: 0.9rem;
}

.footer-payments i {
    color: var(--brown-soft);
    font-size: 1.5rem;
    transition: var(--transition-fast);
}

.footer-payments i:hover {
    color: var(--green-soft);
}

.footer-links-bottom {
    display: flex;
    gap: 20px;
}

.footer-links-bottom a {
    color: var(--brown-soft);
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.footer-links-bottom a:hover {
    color: var(--green-soft);
}

/* ===== FLOATING ELEMENTS ===== */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 1000;
}

.whatsapp-float a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: var(--white);
    border-radius: 50%;
    box-shadow: var(--shadow-heavy);
    font-size: 1.8rem;
    position: relative;
    transition: var(--transition-fast);
}

.whatsapp-float a:hover {
    transform: scale(1.1);
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: var(--brown-dark);
    color: var(--white);
    padding: 8px 15px;
    border-radius: var(--radius-medium);
    font-size: 0.9rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-fast);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
}

.back-to-top {
    position: fixed;
    bottom: 25px;
    left: 25px;
    width: 50px;
    height: 50px;
    background: var(--brown-dark);
    color: var(--white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-fast);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--brown-medium);
}