/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors */
    --primary-color: #8B4513;
    --primary-dark: #654321;
    --accent-color: #D2691E;
    --text-dark: #2c2c2c;
    --text-gray: #666;
    --text-light: #999;
    --white: #ffffff;
    --light-bg: #f8f9fa;
    --border-color: #e0e0e0;
    
    /* Wildlife colors */
    --savanna-brown: #8B5A3C;
    --grass-green: #4A5D23;
    --earth-tone: #A0522D;
    --sunset-orange: #D2691E;
    
    /* Typography */
    --font-primary: 'Inter', sans-serif;
    --font-heading: 'Playfair Display', serif;
    
    /* Spacing */
    --section-padding: 80px 0;
    --container-padding: 0 20px;
    
    /* Animations */
    --transition: all 0.3s ease;
    --transition-slow: all 0.6s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--text-dark);
    background: linear-gradient(135deg, 
        rgba(139, 90, 60, 0.05) 0%, 
        rgba(74, 93, 35, 0.05) 25%, 
        rgba(160, 82, 45, 0.05) 50%, 
        rgba(210, 105, 30, 0.05) 75%, 
        rgba(139, 69, 19, 0.05) 100%), 
        url('../images/image2.jpg') center center fixed;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
}

/* Wildlife Background Pattern Overlay */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(248, 249, 250, 0.9);
    background-image: 
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%238B5A3C' fill-opacity='0.02'%3E%3Ccircle cx='10' cy='10' r='3'/%3E%3Ccircle cx='50' cy='50' r='2'/%3E%3Ccircle cx='30' cy='20' r='1'/%3E%3Ccircle cx='15' cy='45' r='1.5'/%3E%3Ccircle cx='45' cy='15' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"),
        url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%234A5D23' fill-opacity='0.015'%3E%3Cpath d='M20 20c0-5.5-4.5-10-10-10s-10 4.5-10 10 4.5 10 10 10 10-4.5 10-10zm10 0c0-5.5-4.5-10-10-10s-10 4.5-10 10 4.5 10 10 10 10-4.5 10-10z'/%3E%3C/g%3E%3C/svg%3E");
    background-size: 60px 60px, 40px 40px;
    background-position: 0 0, 20px 20px;
    pointer-events: none;
    z-index: -1;
    opacity: 0.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-gray);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-accent {
    background-color: var(--accent-color);
    color: var(--white);
    border-color: var(--accent-color);
}

.btn-accent:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, 
        rgba(139, 90, 60, 0.715) 0%, 
        rgba(74, 93, 35, 0.694) 25%, 
        rgba(160, 81, 45, 0.792) 50%, 
        rgba(139, 69, 19, 0.95) 75%, 
        rgba(74, 93, 35, 0.95) 100%), 
        url('../images/image9.jpg') center center;
    background-size: cover;
    background-attachment: fixed;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.navbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='20' viewBox='0 0 100 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23FFFFFF' fill-opacity='0.03'%3E%3Cpath d='M10 5l5 5-5 5H0l5-5L0 5h10zm20 0l5 5-5 5H20l5-5-5-5h10zm20 0l5 5-5 5H40l5-5-5-5h10zm20 0l5 5-5 5H60l5-5-5-5h10zm20 0l5 5-5 5H80l5-5-5-5h10z'/%3E%3C/g%3E%3C/svg%3E") repeat-x;
    pointer-events: none;
    opacity: 0.5;
}

.navbar.scrolled {
    background: linear-gradient(135deg, 
        rgba(139, 90, 60, 0.98) 0%, 
        rgba(74, 93, 35, 0.98) 25%, 
        rgba(160, 82, 45, 0.98) 50%, 
        rgba(139, 69, 19, 0.98) 75%, 
        rgba(74, 93, 35, 0.98) 100%), 
        url('../images/wildlife2.jpg') center center;
    background-size: cover;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    position: relative;
}

.nav-logo h2 {
    font-family: var(--font-heading);
    color: var(--white);
    font-size: 28px;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.logo-image {
    height: 70px;
    width: auto;
    transition: var(--transition);
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.5));
}

.logo-image:hover {
    transform: scale(1.05);
    filter: drop-shadow(2px 2px 8px rgba(255, 255, 255, 0.3));
}

.nav-menu {
    display: flex;
    gap: 35px;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--white);
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition);
    position: relative;
    padding: 12px 20px;
    border-radius: 25px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.3), 
        transparent);
    transition: left 0.5s ease;
}

.nav-link:hover::before {
    left: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--white);
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
}

/* Dropdown Styles */
.nav-dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
}

.dropdown-toggle i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: linear-gradient(135deg, 
        rgba(40, 68, 40, 0.95) 0%,
        rgba(76, 102, 56, 0.95) 35%,
        rgba(90, 116, 70, 0.95) 100%);
    backdrop-filter: blur(15px);
    min-width: 180px;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    margin-top: 10px;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-link {
    display: block;
    padding: 12px 20px;
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    border-radius: 10px;
    margin: 5px;
    transition: var(--transition);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.dropdown-link:hover {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-color), var(--sunset-orange));
    transition: var(--transition);
    transform: translateX(-50%);
    border-radius: 2px;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 80%;
}

.nav-link.active {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), 
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.nav-toggle {
    display: flex; /* Show by default for mobile-first approach */
    flex-direction: column;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    padding: 8px;
    backdrop-filter: blur(5px);
    transition: var(--transition);
}

/* Hide nav-toggle on desktop */
@media (min-width: 769px) {
    .nav-toggle {
        display: none;
    }
    
    .nav-menu {
        position: static;
        left: auto;
        top: auto;
        height: auto;
        width: auto;
        max-width: none;
        flex-direction: row;
        background: none;
        backdrop-filter: none;
        text-align: left;
        transition: none;
        box-shadow: none;
        padding: 0;
        gap: 35px;
        border-right: none;
        z-index: auto;
        overflow-y: visible;
    }
    
    .sidebar-overlay {
        display: none;
    }
}

.nav-toggle:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

.bar {
    width: 25px;
    height: 3px;
    background: linear-gradient(90deg, var(--white), var(--accent-color));
    margin: 3px 0;
    transition: var(--transition);
    border-radius: 2px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Language Selector Styles */
.language-selector {
    margin-left: 20px;
    display: flex;
    align-items: center;
}

.language-btn {
    background: linear-gradient(135deg, var(--accent-color), var(--sunset-orange));
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 25px;
    padding: 10px 20px;
    color: var(--white);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 700;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    text-transform: capitalize;
    letter-spacing: 0.5px;
    min-width: 130px;
    justify-content: center;
}

.language-btn:hover {
    background: linear-gradient(135deg, var(--sunset-orange), var(--accent-color));
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.language-btn:active {
    transform: translateY(-1px) scale(1.02);
}

.language-btn i {
    font-size: 16px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

#current-language {
    font-weight: 900;
    color: var(--white);
    font-size: 14px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    white-space: nowrap;
}

/* Hero Section */
.hero {
    padding: 140px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    color: white;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: -2;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.7) 0%, 
        rgba(139, 90, 60, 0.5) 25%, 
        rgba(74, 93, 35, 0.4) 50%, 
        rgba(160, 82, 45, 0.5) 75%, 
        rgba(0, 0, 0, 0.7) 100%);
    z-index: -1;
}

/* Fallback background for when video is not supported */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.6) 0%, 
        rgba(139, 90, 60, 0.4) 25%, 
        rgba(74, 93, 35, 0.3) 50%, 
        rgba(160, 82, 45, 0.4) 75%, 
        rgba(0, 0, 0, 0.6) 100%), 
        url('../images/background1.jpg') center center;
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
    z-index: -3;
    display: none; /* Hidden - using video instead */
}

/* Page Hero for other pages */
.page-hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.6) 0%, 
        rgba(139, 90, 60, 0.4) 25%, 
        rgba(74, 93, 35, 0.3) 50%, 
        rgba(160, 82, 45, 0.4) 75%, 
        rgba(0, 0, 0, 0.6) 100%), 
        url('../images/image6.jpg') center center;
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
    min-height: 60vh;
    display: flex;
    align-items: center;
    position: relative;
    color: white;
    text-align: center;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    animation: slideInLeft 1s ease;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.text-accent {
    color: var(--accent-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    max-width: 500px;
    color: #f8f9fa;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: slideInRight 1s ease;
}

.hero-image-placeholder {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, var(--savanna-brown), var(--earth-tone), var(--sunset-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 120px;
    box-shadow: 0 20px 60px rgba(139, 69, 19, 0.3);
    position: relative;
    overflow: hidden;
}

.hero-image-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='400' height='400' viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23FFFFFF' fill-opacity='0.1'%3E%3Ccircle cx='100' cy='100' r='20'/%3E%3Ccircle cx='300' cy='150' r='15'/%3E%3Ccircle cx='200' cy='300' r='25'/%3E%3Ccircle cx='150' cy='250' r='10'/%3E%3Ccircle cx='350' cy='350' r='18'/%3E%3Ccircle cx='50' cy='300' r='12'/%3E%3C/g%3E%3C/svg%3E") no-repeat center;
    background-size: cover;
    border-radius: 50%;
}

.hero-image-main {
    width: 400px;
    height: 400px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 20px 60px rgba(139, 69, 19, 0.3);
    border: 5px solid rgba(255, 255, 255, 0.2);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 30px;
    height: 30px;
    border: 2px solid var(--primary-color);
    border-top: none;
    border-left: none;
    transform: rotate(45deg);
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    padding: var(--section-padding);
    background: transparent;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    background: var(--light-bg);
    border-radius: 20px;
    overflow: hidden;
    line-height: 0;
    font-size: 0;
    display: flex;
    align-items: stretch;
}

.about-text h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.features {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background-color: var(--light-bg);
    border-radius: 10px;
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.feature-item i {
    color: var(--primary-color);
    font-size: 1.5rem;
    width: 30px;
    text-align: center;
}

.about-image-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--light-bg), var(--border-color));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-gray);
    font-size: 80px;
}

.about-image-main {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: none;
    transition: var(--transition);
    background: transparent !important;
    mix-blend-mode: normal;
    mix-blend-mode: multiply;
    filter: brightness(0.9) saturate(0.9);
    display: block;
    vertical-align: top;
}

.about-image-main:hover {
    transform: scale(1);
    box-shadow: none;
}

/* Services Section */
.services {
    padding: var(--section-padding);
    background-color: var(--light-bg);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--white);
    font-size: 2rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.service-card p {
    color: var(--text-gray);
}

/* Products Section */
.products {
    padding: var(--section-padding);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.product-card {
    text-align: center;
    padding: 40px 20px;
    border-radius: 15px;
    transition: var(--transition);
    border: 2px solid var(--border-color);
}

.product-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 10px 40px rgba(139, 69, 19, 0.1);
    transform: translateY(-5px);
}

.product-image {
    width: 120px;
    height: 120px;
    background-color: var(--light-bg);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--primary-color);
    font-size: 3rem;
    transition: var(--transition);
}

.product-card:hover .product-image {
    background-color: var(--primary-color);
    color: var(--white);
}

.product-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

/* Pricing Section */
.pricing {
    padding: var(--section-padding);
    background-color: var(--light-bg);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.pricing-card {
    background-color: var(--white);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured {
    border: 3px solid var(--primary-color);
    transform: scale(1.05);
}

.pricing-card.featured::before {
    content: 'Most Popular';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-color);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}

.pricing-header h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.price {
    font-size: 3rem;
    font-weight: bold;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.price span {
    font-size: 1.2rem;
    color: var(--text-gray);
}

.pricing-header p {
    color: var(--text-gray);
    margin-bottom: 25px;
}

.pricing-features {
    text-align: left;
    margin-bottom: 25px;
}

.pricing-features .feature {
    padding: 8px 0;
    color: var(--text-gray);
    border-bottom: 1px solid var(--border-color);
}

.pricing-features .feature:last-child {
    border-bottom: none;
}

.pricing-note {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
}

.pricing-note small {
    color: var(--text-light);
    font-style: italic;
}

.pricing-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.info-card {
    background-color: var(--white);
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.info-card h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-card h4 i {
    font-size: 1.2rem;
}

/* Bookings Section */
.bookings {
    padding: var(--section-padding);
}

.booking-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.booking-card {
    background-color: var(--white);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.booking-card:hover {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.booking-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--border-color);
}

.booking-header h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.booking-header i {
    font-size: 1.5rem;
}

.booking-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.carcass-selection {
    margin: 25px 0;
    padding: 20px;
    background-color: var(--light-bg);
    border-radius: 10px;
}

.carcass-selection h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.carcass-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.carcass-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background-color: var(--white);
    border-radius: 8px;
}

.carcass-option label {
    font-weight: 500;
    color: var(--text-dark);
}

.carcass-option input[type="number"] {
    width: 80px;
    padding: 8px 12px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    text-align: center;
}

.terms-checkbox {
    margin: 25px 0;
    padding: 20px;
    background-color: var(--light-bg);
    border-radius: 10px;
}

.terms-checkbox label {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-dark);
    font-size: 0.9rem;
    cursor: pointer;
}

.terms-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
}

/* Booking Terms */
.booking-terms {
    background-color: var(--light-bg);
    padding: 40px;
    border-radius: 15px;
    margin-top: 40px;
}

.booking-terms h4 {
    color: var(--primary-color);
    margin-bottom: 25px;
    text-align: center;
    font-size: 1.5rem;
}

.terms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.term-item {
    background-color: var(--white);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
}

.term-item h5 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.term-item ul {
    list-style: none;
    padding: 0;
}

.term-item li {
    padding: 5px 0;
    color: var(--text-gray);
    border-bottom: 1px solid var(--border-color);
    position: relative;
    padding-left: 20px;
}

.term-item li:before {
    content: '•';
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.term-item li:last-child {
    border-bottom: none;
}

/* Contact Section Updates */
.contact-item a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.contact-item a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

/* Responsive Design for New Sections */
@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .pricing-info {
        grid-template-columns: 1fr;
    }
    
    .booking-options {
        grid-template-columns: 1fr;
    }
    
    .booking-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .carcass-options {
        gap: 10px;
    }
    
    .carcass-option {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .terms-grid {
        grid-template-columns: 1fr;
    }
    
    .booking-terms {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .price {
        font-size: 2.5rem;
    }
    
    .booking-card {
        padding: 20px;
    }
    
    .booking-header h3 {
        font-size: 1.2rem;
        flex-direction: column;
        gap: 5px;
    }
    
    .carcass-option input[type="number"] {
        width: 60px;
    }
}

/* Contact Section */
.contact {
    padding: var(--section-padding);
    background-color: var(--light-bg);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 50px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.contact-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 5px;
}

.contact-item h4 {
    color: var(--text-dark);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.contact-item p {
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

.contact-item a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 500;
}

.contact-item a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

/* Banking details specific styling */
.contact-item:has(i.fa-university) {
    border-left: 4px solid var(--primary-color);
}

.contact-item:has(i.fa-university) p {
    font-family: 'Courier New', monospace;
    font-size: 0.95rem;
}

.contact-item:has(i.fa-university) strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* Terms and Conditions Section */
.terms {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--light-bg) 0%, rgba(139, 69, 19, 0.05) 100%);
}

.terms-content {
    margin-top: 50px;
}

.terms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.term-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    border-top: 4px solid var(--primary-color);
    position: relative;
    overflow: hidden;
}

.term-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.term-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.15);
}

.term-card h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.term-card h3 i {
    font-size: 1.5rem;
    color: var(--accent-color);
}

.term-card ul {
    list-style: none;
    padding: 0;
}

.term-card li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
    position: relative;
    padding-left: 25px;
    color: var(--text-gray);
    line-height: 1.6;
}

.term-card li:before {
    content: '▶';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 0.8rem;
    top: 12px;
}

.term-card li:last-child {
    border-bottom: none;
}

/* Privacy Policy Section */
.privacy {
    padding: var(--section-padding);
    background: linear-gradient(135deg, rgba(74, 93, 35, 0.05) 0%, var(--light-bg) 100%);
}

.privacy-content {
    margin-top: 50px;
}

.privacy-intro {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
    border-left: 5px solid var(--grass-green);
}

.privacy-intro h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.privacy-intro p {
    color: var(--text-gray);
    font-size: 1.1rem;
    line-height: 1.7;
}

.privacy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.privacy-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    border-top: 4px solid var(--grass-green);
    position: relative;
}

.privacy-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.privacy-card h4 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.privacy-card h4 i {
    font-size: 1.3rem;
    color: var(--grass-green);
}

.privacy-card ul {
    list-style: none;
    padding: 0;
}

.privacy-card li {
    padding: 8px 0;
    border-bottom: 1px solid var(--border-color);
    position: relative;
    padding-left: 20px;
    color: var(--text-gray);
    line-height: 1.6;
}

.privacy-card li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--grass-green);
    font-weight: bold;
    top: 8px;
}

.privacy-card li:last-child {
    border-bottom: none;
}

.consent-notice {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(139, 69, 19, 0.3);
}

.consent-notice h4 {
    margin-bottom: 15px;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.consent-notice h4 i {
    font-size: 1.5rem;
    color: var(--secondary-color);
}

.consent-notice p {
    font-size: 1rem;
    line-height: 1.7;
    opacity: 0.95;
}

/* Wildlife decorative elements */
.terms::before,
.privacy::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: url("data:image/svg+xml,%3Csvg width='200' height='200' viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%238B5A3C' fill-opacity='0.05'%3E%3Cpath d='M100 50c27.614 0 50 22.386 50 50s-22.386 50-50 50-50-22.386-50-50 22.386-50 50-50zm0 10c-22.091 0-40 17.909-40 40s17.909 40 40 40 40-17.909 40-40-17.909-40-40-40z'/%3E%3C/g%3E%3C/svg%3E") no-repeat center;
    background-size: contain;
    pointer-events: none;
    z-index: 0;
}

.terms {
    position: relative;
}

.privacy {
    position: relative;
}

/* Responsive Design for Terms and Privacy */
@media (max-width: 768px) {
    .terms-grid,
    .privacy-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .term-card,
    .privacy-card {
        padding: 20px;
    }
    
    .privacy-intro {
        padding: 25px;
    }
    
    .consent-notice {
        padding: 20px;
    }
    
    .consent-notice h4 {
        flex-direction: column;
        gap: 5px;
    }
}
.contact {
    padding: var(--section-padding);
    background-color: var(--light-bg);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background-color: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.contact-item i {
    color: var(--primary-color);
    font-size: 1.5rem;
    width: 30px;
    text-align: center;
    margin-top: 5px;
}

.contact-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.contact-item p {
    margin: 0;
    color: var(--text-gray);
}

.contact-form {
    background-color: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 25px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-family: var(--font-primary);
    font-size: 16px;
    transition: var(--transition);
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(139, 69, 19, 0.1);
}

/* Footer */
.footer {
    background-color: var(--text-dark);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3,
.footer-section h4 {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.footer-section h3 {
    font-size: 1.8rem;
    color: var(--accent-color);
}

.footer-logo {
    height: 150px;
    width: auto;
    margin-bottom: 15px;
    filter: brightness(0.9);
}

.footer-section p {
    color: #ccc;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #444;
    color: #ccc;
}

/* Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Sidebar Overlay */
.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(3px);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Responsive Design */
@media (max-width: 768px) {
    :root {
        --section-padding: 60px 0;
    }
    
    /* Fix background-attachment issues on mobile */
    .hero,
    .features-section,
    .cta-section,
    .contact-section {
        background-attachment: scroll !important;
    }
    
    /* Mobile Hero Video Fixes */
    .hero-video {
        display: block; /* Show video on mobile */
        object-fit: cover;
    }
    
    .hero {
        /* Background image removed - using video instead */
        background-image: none;
    }
    
    /* Mobile Navigation Menu */
    .nav-menu {
        position: fixed;
        left: -280px; /* Reduced width for better mobile fit */
        top: 0;
        height: 100vh;
        width: 280px; /* Reduced from 320px */
        max-width: 75vw; /* Reduced from 80vw */
        flex-direction: column;
        background: linear-gradient(180deg, 
            rgba(40, 68, 40, 0.97) 0%,
            rgba(76, 102, 56, 0.97) 35%,
            rgba(90, 116, 70, 0.97) 100%);
        backdrop-filter: blur(20px);
        text-align: left;
        transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 2px 0 20px rgba(0, 0, 0, 0.3);
        padding: 80px 0 30px 0;
        gap: 0;
        border-right: 1px solid rgba(255, 255, 255, 0.2);
        z-index: 999;
        overflow-y: auto;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-toggle {
        display: flex;
        z-index: 1000;
        position: relative;
    }
    
    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    /* Mobile Sidebar Navigation Links */
    .nav-menu .nav-link {
        display: block;
        padding: 12px 20px; /* Reduced padding for better mobile fit */
        margin: 0;
        border: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        background: transparent;
        text-decoration: none;
        color: var(--white);
        font-weight: 500;
        font-size: 16px; /* Explicit font size for mobile */
        transition: all 0.3s ease;
        position: relative;
    }
    
    .nav-menu .nav-link:hover {
        background: rgba(255, 255, 255, 0.1);
        padding-left: 30px; /* Reduced hover padding */
        transform: none;
    }
    
    .nav-menu .nav-link.active {
        background: rgba(210, 105, 30, 0.3);
        border-left: 4px solid var(--accent-color);
    }
    
    .nav-menu .nav-link::after {
        display: none;
    }

    /* Mobile Header Adjustments */
    .header {
        padding: 0 15px; /* Reduced header padding */
    }
    
    .navbar {
        padding: 0 10px; /* Reduced navbar padding */
    }
    
    .nav-toggle {
        display: flex;
        z-index: 1000;
        position: relative;
        width: 30px; /* Fixed width for consistency */
        height: 30px; /* Fixed height for consistency */
    }
    
    .nav-toggle .bar {
        width: 25px;
        height: 3px;
        margin: 3px 0;
        transition: 0.3s;
    }

    /* Mobile Dropdown Styles */
    .nav-dropdown {
        width: 100%;
    }
    
    .nav-dropdown .nav-link {
        position: relative;
    }
    
    .nav-dropdown .dropdown-toggle::after {
        content: '\f107';
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        position: absolute;
        right: 30px;
        top: 50%;
        transform: translateY(-50%);
        transition: transform 0.3s ease;
    }
    
    .nav-dropdown.active .dropdown-toggle::after {
        transform: translateY(-50%) rotate(180deg);
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: rgba(0, 0, 0, 0.2);
        margin: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        border: none;
        box-shadow: none;
    }
    
    .nav-dropdown.active .dropdown-menu {
        max-height: 300px;
    }
    
    .dropdown-link {
        padding: 12px 30px 12px 50px;
        margin: 0;
        font-size: 14px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        color: rgba(255, 255, 255, 0.9);
    }
    
    .dropdown-link:hover {
        background: rgba(255, 255, 255, 0.05);
        padding-left: 60px;
    }

    /* Mobile Language Selector */
    .language-selector {
        margin: 20px 30px;
        display: flex;
        justify-content: flex-start;
        width: auto;
        padding: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding-top: 20px;
    }

    .language-btn {
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
        padding: 8px 16px;
        border-radius: 6px;
        color: var(--white);
        font-size: 14px;
    }

    .language-btn:hover {
        background: rgba(255, 255, 255, 0.2);
    }
}

    .language-btn i {
        font-size: 18px;
    }

    #current-language {
        font-size: 16px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-image-placeholder {
        width: 300px;
        height: 300px;
        font-size: 80px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .about-text h3 {
        font-size: 1.5rem;
    }
    
    .service-card,
    .product-card {
        margin: 0 auto;
        max-width: 350px;
    }
    
    /* Mobile Content Adjustments */
    .hero-container {
        padding: 0 20px;
        margin: 0 auto;
    }
    
    .hero-content {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    
    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-buttons {
        margin-left: auto;
        margin-right: auto;
    }
    
    /* Background fixes for mobile sections */
    .features-section,
    .cta-section,
    .contact-section {
        background-attachment: scroll !important;
        background-size: cover;
        background-position: center;
    }
}

@media (max-width: 480px) {
    /* Extra small screens - further navigation adjustments */
    .nav-menu {
        width: 260px;
        max-width: 70vw;
        left: -260px;
    }
    
    .nav-menu .nav-link {
        padding: 10px 15px;
        font-size: 15px;
    }
    
    .nav-menu .nav-link:hover {
        padding-left: 25px;
    }
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-image-placeholder {
        width: 250px;
        height: 250px;
        font-size: 60px;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mt-4 {
    margin-top: 2rem;
}

.mb-4 {
    margin-bottom: 2rem;
}

.fade-in {
    animation: fadeInUp 0.6s ease;
}

/* Smooth scrolling enhancement */
html {
    scroll-padding-top: 70px;
}

/* Focus styles for accessibility */
.btn:focus,
input:focus,
textarea:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Loading animation for images */
.loading {
    position: relative;
    overflow: hidden;
}

.loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

/* Notification System */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: var(--white);
    color: var(--text-dark);
    padding: 16px 24px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 9999;
    min-width: 300px;
    transform: translateX(400px);
    transition: transform 0.3s ease;
    border-left: 4px solid;
}

.notification.show {
    transform: translateX(0);
}

.notification.success {
    border-left-color: #28a745;
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.1), rgba(40, 167, 69, 0.05));
}

.notification.success .notification-icon {
    color: #28a745;
}

.notification.error {
    border-left-color: #dc3545;
    background: linear-gradient(135deg, rgba(220, 53, 69, 0.1), rgba(220, 53, 69, 0.05));
}

.notification.error .notification-icon {
    color: #dc3545;
}

.notification-icon {
    font-size: 20px;
    flex-shrink: 0;
}

.notification-content {
    flex: 1;
}

.notification-title {
    font-weight: 600;
    margin-bottom: 4px;
    font-size: 14px;
}

.notification-message {
    font-size: 13px;
    color: var(--text-gray);
    line-height: 1.4;
}

@media (max-width: 768px) {
    .notification {
        right: 10px;
        left: 10px;
        min-width: auto;
        transform: translateX(0) translateY(-100px);
    }
    
    .notification.show {
        transform: translateX(0) translateY(0);
    }
}

/* Enhanced Button Animations */
.btn {
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.2);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 69, 19, 0.3);
}

/* Enhanced Footer Styling */
.footer-brand {
    text-align: center;
}

.footer-logo {
    margin-bottom: 15px;
}

.footer-logo-img {
    width: 80px;
    height: auto;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}

.footer-logo-img:hover {
    transform: scale(1.1);
    filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(255,255,255,0.3));
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.social-link:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(184, 134, 11, 0.3);
}

.contact-info p {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.8);
}

.contact-info i {
    margin-right: 10px;
    width: 16px;
    color: var(--accent-color);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-certifications {
    display: flex;
    gap: 10px;
}

.cert-badge {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Terms Modal Styling */
.terms-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
    backdrop-filter: blur(5px);
}

.terms-modal-content {
    background-color: var(--white);
    margin: 5% auto;
    padding: 30px;
    border-radius: 15px;
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.terms-close {
    color: var(--text-gray);
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.terms-close:hover {
    color: var(--primary-color);
}

.terms-text h3 {
    color: var(--primary-color);
    margin: 20px 0 10px 0;
    font-size: 1.1rem;
}

.terms-text p, .terms-text li {
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 10px;
}

.terms-text ul {
    margin-left: 20px;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-certifications {
        justify-content: center;
    }
}

/* Developer Credit Styling */
.developer-credit {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 10px;
    margin-top: 10px;
}

.developer-link {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.developer-link:hover {
    color: var(--white);
    text-shadow: 0 0 8px var(--accent-color);
}

.developer-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.developer-link:hover::after {
    width: 100%;
}
