/* Aardvark Africa Safaris Exact Replica CSS */

/* ===== GOOGLE FONTS IMPORT ===== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Open+Sans:wght@300;400;500;600&display=swap');

/* ===== FONT VARIABLES ===== */
:root {
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Open Sans', sans-serif;
}

/* ===== TYPOGRAPHY SYSTEM ===== */
body {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 20px;
    line-height: 1.6;
    color: var(--text-dark);
}

/* Elementor Compatible Template Styles */
.elementor-compatible-template {
    position: relative;
}

.elementor-page-content {
    position: relative;
    z-index: 1;
}

.page-header {
    margin-bottom: 30px;
    text-align: center;
}

.page-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #333;
}

.page-featured-image {
    margin-bottom: 30px;
    text-align: center;
}

.page-featured-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.page-links {
    margin-top: 30px;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 5px;
}

.page-links-title {
    font-weight: bold;
    margin-right: 10px;
}

.page-links a {
    margin: 0 5px;
    padding: 5px 10px;
    background: #007cba;
    color: white;
    text-decoration: none;
    border-radius: 3px;
}

.page-links a:hover {
    background: #005a87;
}

.no-content {
    text-align: center;
    padding: 60px 20px;
}

/* Ensure Elementor widgets display correctly */
.elementor-widget {
    position: relative;
}

/* Container styles */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.col-12 {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 0 15px;
}

/* Headers */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
    font-weight: 300;
    letter-spacing: 2px;
}

h2 {
    font-size: 2.25rem;
    font-weight: 300;
    letter-spacing: 1.5px;
}

h3 {
    font-size: 1.5rem;
    font-weight: 400;
}

/* Navigation */
.main-nav a {
    font-family: var(--font-heading);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Buttons */
.cta-button,
.learn-more-btn {
    font-family: var(--font-heading);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* Hero Section */
.hero-content h1 {
    font-family: var(--font-heading);
    font-weight: 300;
    letter-spacing: 3px;
}

.hero-content p {
    font-family: var(--font-body);
    font-weight: 300;
}

/* Section Titles */
.section-title h2 {
    font-family: var(--font-heading);
    font-weight: 300;
    letter-spacing: 2px;
}

.section-title p {
    font-family: var(--font-body);
    font-weight: 300;
}

/* Tour Cards */
.tour-content h3 {
    font-family: var(--font-heading);
    font-weight: 500;
}

.tour-content p {
    font-family: var(--font-body);
    font-weight: 400;
}

/* Footer */
.footer-section h3 {
    font-family: var(--font-heading);
    font-weight: 500;
}

.footer-section p,
.footer-links a {
    font-family: var(--font-body);
    font-weight: 300;
}
:root {
    --primary-color: #c29b40;
    --secondary-color: #8b4513;
    --text-dark: #333333;
    --text-light: #666666;
    --background-light: #f8f8f8;
    --white: #ffffff;
    --border-color: #e5e5e5;
}

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



body {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--white);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header Styles - Exact Match */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

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

.logo img {
    height: 60px;
    width: auto;
    transition: all 0.3s ease;
}

/* Main Navigation - Exact from Aardvark */
.main-nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 35px;
}

.main-nav a {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 0;
}

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

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

.main-nav a:hover:after {
    width: 100%;
}

/* Hero Section - Exact Replica */
.hero {
    position: relative;
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    color: var(--white);
    text-align: center;
}

.hero-content {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 3px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 18px;
    font-weight: 300;
    margin-bottom: 40px;
    line-height: 1.6;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    background: transparent;
    color: var(--white);
    padding: 15px 40px;
    border: 2px solid var(--white);
    text-decoration: none;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
    margin: 0 10px;
}

.cta-button:hover {
    background: var(--white);
    color: var(--text-dark);
    transform: translateY(-2px);
}

.cta-button.primary {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.cta-button.primary:hover {
    background: transparent;
    color: var(--white);
}

/* About Section */
.about-section {
    padding: 100px 0;
    background: var(--white);
}

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

.about-text h2 {
    font-size: 36px;
    color: var(--text-dark);
    margin-bottom: 25px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.about-text p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 25px;
}

/* Tours Section - Exact Aardvark Style */
.tours-section {
    padding: 100px 0;
    background: var(--background-light);
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 36px;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-title p {
    font-size: 16px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.tours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.tour-card {
    background: var(--white);
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

.tour-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

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

.tour-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.tour-card:hover .tour-image img {
    transform: scale(1.1);
}

.tour-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-color);
    color: var(--white);
    padding: 8px 15px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.tour-content {
    padding: 25px;
}

.tour-content h3 {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 600;
}

.tour-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.tour-price {
    color: var(--primary-color);
    font-size: 20px;
    font-weight: 700;
}

.tour-duration {
    color: var(--text-light);
    font-size: 14px;
}

.tour-features {
    list-style: none;
    margin-bottom: 20px;
}

.tour-features li {
    padding: 5px 0;
    color: var(--text-light);
    font-size: 14px;
    position: relative;
    padding-left: 20px;
}

.tour-features li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: var(--white);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--background-light);
    padding: 40px 30px;
    border-radius: 5px;
    text-align: center;
    position: relative;
}

.testimonial-text {
    font-style: italic;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 25px;
    position: relative;
}

.testimonial-text:before {
    content: '"';
    font-size: 60px;
    position: absolute;
    top: -20px;
    left: -10px;
    color: var(--primary-color);
    opacity: 0.3;
    font-family: Georgia, serif;
}

.testimonial-author {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 16px;
}

.testimonial-rating {
    color: var(--primary-color);
    margin-top: 10px;
    font-size: 14px;
}

/* Footer Styles - Exact Aardvark Africa Safaris Replica */
.footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 70px 0 0;
    font-family: 'Open Sans', sans-serif;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-section h3 {
    color: #c29b40;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: #c29b40;
}

.footer-section p {
    color: #999;
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 14px;
    font-weight: 300;
}

/* Social Links */
.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: #333;
    color: #999;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
}

.social-link:hover {
    background: #c29b40;
    color: #fff;
    transform: translateY(-2px);
}

/* Contact Info */
.contact-info {
    list-style: none;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 18px;
    color: #999;
    font-size: 14px;
    line-height: 1.5;
}

.contact-item i {
    color: #c29b40;
    margin-right: 12px;
    margin-top: 2px;
    width: 16px;
    text-align: center;
    font-size: 14px;
}

.contact-item span {
    flex: 1;
    font-weight: 300;
}

/* Footer Links */
.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: #999;
    text-decoration: none;
    font-size: 14px;
    font-weight: 300;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
}

.footer-links a:hover {
    color: #c29b40;
    padding-left: 8px;
}

.footer-links a:before {
    content: '›';
    position: absolute;
    left: -10px;
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-links a:hover:before {
    left: 0;
    opacity: 1;
}

/* Footer Bottom */
.footer-bottom {
    background: #111;
    padding: 25px 0;
    border-top: 1px solid #333;
}

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

.footer-bottom p {
    color: #666;
    font-size: 14px;
    font-weight: 300;
    margin: 0;
}

.footer-legal {
    display: flex;
    gap: 25px;
}

.footer-legal a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    font-weight: 300;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: #c29b40;
}

/* Responsive Footer */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 50px 0 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 35px;
        margin-bottom: 40px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .footer-legal {
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .footer-section h3 {
        font-size: 16px;
    }
    
    .footer-section p,
    .contact-item,
    .footer-links a,
    .footer-bottom p,
    .footer-legal a {
        font-size: 13px;
    }
}
/* Contact Info Styles */
.contact-info {
    list-style: none;
}

.contact-info li {
    margin-bottom: 15px;
    color: #999;
    font-size: 14px;
    display: flex;
    align-items: flex-start;
}

.contact-info li i {
    color: var(--primary-color);
    margin-right: 10px;
    width: 16px;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    color: #999;
    font-size: 16px;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--primary-color);
}
/* Mobile Menu - Aardvark Style */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-dark);
    font-size: 24px;
    cursor: pointer;
}

/* Search Form in Header */
.header-search {
    margin-left: 30px;
}

.search-form {
    display: flex;
}

.search-form input {
    padding: 8px 15px;
    border: 1px solid var(--border-color);
    border-radius: 3px;
    font-size: 14px;
    width: 200px;
}

.search-form button {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 8px 15px;
    margin-left: 5px;
    border-radius: 3px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.search-form button:hover {
    background: var(--secondary-color);
}

/* Booking Form Styles */
.booking-form {
    background: var(--white);
    padding: 40px;
    border-radius: 5px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 3px;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* Why Choose Us Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    text-align: center;
    padding: 30px 20px;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
}

.feature-card h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--text-dark);
    font-weight: 600;
}

.feature-card p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin-top: 40px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 5px;
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

/* Breadcrumb */
.breadcrumb {
    background: var(--background-light);
    padding: 20px 0;
    margin-bottom: 50px;
}

.breadcrumb-nav {
    font-size: 14px;
    color: var(--text-light);
}

/* ===== NDURUMO-STYLE LEARN MORE BUTTON ===== */
.tour-card .learn-more-btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: linear-gradient(135deg, #c29b40 0%, #a88432 100%) !important;
    color: #ffffff !important;
    padding: 12px 24px !important;
    border: none !important;
    text-decoration: none !important;
    text-transform: uppercase !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    letter-spacing: 1.2px !important;
    border-radius: 3px !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    position: relative !important;
    overflow: hidden !important;
    box-shadow: 0 4px 12px rgba(194, 155, 64, 0.25) !important;
    font-family: 'Open Sans', sans-serif !important;
    width: 100% !important;
    margin-top: 15px !important;
    cursor: pointer !important;
}

.tour-card .learn-more-btn::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: -100% !important;
    width: 100% !important;
    height: 100% !important;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent) !important;
    transition: left 0.5s ease !important;
}

.tour-card .learn-more-btn:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(194, 155, 64, 0.35) !important;
    color: #ffffff !important;
    text-decoration: none !important;
}

.tour-card .learn-more-btn:hover::before {
    left: 100% !important;
}

.tour-card .learn-more-btn:active {
    transform: translateY(0) !important;
    box-shadow: 0 2px 8px rgba(194, 155, 64, 0.25) !important;
}

/* Button with Arrow */
.tour-card .learn-more-btn.arrow {
    padding-right: 40px !important;
}

.tour-card .learn-more-btn.arrow::after {
    content: '→' !important;
    position: absolute !important;
    right: 20px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    transition: transform 0.3s ease !important;
    font-weight: 400 !important;
}

.tour-card .learn-more-btn.arrow:hover::after {
    transform: translateY(-50%) translateX(3px) !important;
}

/* SIMPLE TEST VERSION */
.tour-card .learn-more-btn {
    display: block !important;
    background: #c29b40 !important;
    color: white !important;
    padding: 12px 24px !important;
    text-decoration: none !important;
    text-align: center !important;
    font-weight: bold !important;
    border-radius: 3px !important;
    margin-top: 15px !important;
    width: 100% !important;
}

.tour-card .learn-more-btn:hover {
    background: #a88432 !important;
}
.breadcrumb-nav a {
    color: var(--text-light);
    text-decoration: none;
}

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

.breadcrumb-nav span {
    margin: 0 10px;
}
