/* Global Styles - Enhanced Color Scheme */
:root {
    /* Premium Color Palette */
    --primary-color: #0D5F3A; /* Deep Emerald Green */
    --primary-dark: #094a2d;
    --primary-light: #147a4f;
    --secondary-color: #D4AF37; /* Warm Gold */
    --secondary-dark: #b8942a;
    --secondary-light: #e0c563;
    --accent-color: #FF9933; /* Saffron Orange */
    --accent-dark: #e67e00;
    --accent-light: #ffb366;
    
    /* Neutrals */
    --off-white: #FAFAF8;
    --charcoal: #2C2C2C;
    --warm-gray: #6B6B6B;
    --light-gray: #e8e8e6;
    
    /* Original preserved */
    --text-dark: #333333;
    --text-light: #666666;
    --bg-light: #F8F9FA;
    --white: #FFFFFF;
    
    /* Enhanced Shadows */
    --shadow: 0 4px 20px rgba(13, 95, 58, 0.08);
    --shadow-hover: 0 8px 30px rgba(13, 95, 58, 0.15);
    --shadow-large: 0 20px 60px rgba(13, 95, 58, 0.12);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Glassmorphism */
    --glass-bg: rgba(250, 250, 248, 0.85);
    --glass-border: rgba(212, 175, 55, 0.2);
}

/* Typography Enhancement */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800;900&family=Poppins:wght@300;400;500;600;700&display=swap');

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

/* Smooth Scrolling - Performance Optimized */
html {
    scroll-behavior: smooth;
}

/* Performance Optimization */
* {
    will-change: auto;
}

/* Reduce animation on scroll for better performance */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--charcoal);
    overflow-x: hidden;
    background: var(--off-white);
    position: relative;
}

/* Grain Texture Overlay */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.03;
    z-index: 1;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' /%3E%3C/filter%3E%3Crect width='100' height='100' filter='url(%23noise)' /%3E%3C/svg%3E");
}

/* Premium Headings */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--charcoal);
    line-height: 1.2;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* Enhanced Header with Glassmorphism */
.header {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 2px 20px rgba(13, 95, 58, 0.08);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 1px solid var(--glass-border);
}

.header.scrolled {
    background: rgba(250, 250, 248, 0.95);
    box-shadow: var(--shadow-hover);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: var(--transition);
    flex-direction: row;
}

.logo img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.logo-text-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo:hover {
    transform: translateX(5px);
}

.logo img {
    height: 45px;
    width: 45px;
    filter: drop-shadow(0 2px 4px rgba(13, 95, 58, 0.2));
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-tagline {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(0.7rem, 1.5vw, 0.8rem);
    font-weight: 500;
    color: var(--secondary-color);
    display: block;
    margin-top: 2px;
    letter-spacing: 0.3px;
    opacity: 0.9;
    max-width: 100%;
    line-height: 1.2;
}

.nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--charcoal);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    transition: var(--transition);
    border-radius: 2px;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

/* Enhanced CTA Button */
.cta-btn {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: var(--white);
    border: none;
    padding: 0.8rem 1.8rem;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(13, 95, 58, 0.3);
    letter-spacing: 0.5px;
}

.cta-btn::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.6s;
}

.cta-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(13, 95, 58, 0.2);
}

.cta-btn:hover::before {
    left: 100%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 28px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    margin: 3px 0;
    transition: var(--transition);
    border-radius: 2px;
}

/* Enhanced Hero Section with Parallax */
.hero {
    margin-top: 70px;
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 50%, var(--secondary-color) 100%);
    position: relative;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

/* Animated Background Pattern */
.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(255, 153, 51, 0.1) 0%, transparent 50%);
    animation: floatBackground 20s ease-in-out infinite;
}

@keyframes floatBackground {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(-20px, -20px) rotate(1deg); }
    66% { transform: translate(20px, -10px) rotate(-1deg); }
}

/* Floating animation removed for cleaner design */

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.1;
    background-image: url('../images/pattern.png');
    background-repeat: repeat;
    background-size: 200px;
    animation: kenBurns 30s ease-in-out infinite alternate;
}

@keyframes kenBurns {
    0% { transform: scale(1) translate(0, 0); }
    100% { transform: scale(1.1) translate(-20px, -20px); }
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    color: var(--white);
    text-align: center;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: 0.5px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    word-break: keep-all;
    overflow-wrap: normal;
    hyphens: none;
    max-width: 100%;
    text-align: center;
}

.hero-subtitle {
    font-size: clamp(1.3rem, 3vw, 2rem);
    margin-bottom: 1.5rem;
    opacity: 1;
    font-weight: 600;
    color: var(--secondary-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.3;
    word-break: keep-all;
    text-align: center;
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    max-width: 100%;
}

.hero-description {
    font-size: clamp(1rem, 2.2vw, 1.2rem);
    margin-bottom: 2.5rem;
    opacity: 0.9;
    line-height: 1.7;
    text-align: center;
    max-width: 100%;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

/* Premium Button Styles */
.btn {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: inline-block;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-light) 100%);
    color: var(--charcoal);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.25);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 2px solid var(--secondary-color);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: var(--secondary-color);
    color: var(--charcoal);
    transform: translateY(-1px);
}

.hero-image {
    position: relative;
    animation: float 8s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    border: 3px solid rgba(212, 175, 55, 0.3);
}

/* Enhanced About Section */
.about-section {
    padding: 3rem 0;
    background: linear-gradient(180deg, var(--off-white) 0%, var(--white) 100%);
    position: relative;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--secondary-color), transparent);
}

.section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.section-subtitle {
    font-size: 1.3rem;
    color: var(--warm-gray);
    font-weight: 300;
}

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

.about-text p {
    margin-bottom: 1.5rem;
    color: var(--warm-gray);
    line-height: 1.9;
    font-size: 1.05rem;
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 0.9rem 2rem;
    border-radius: 50px;
    transition: var(--transition);
}

.btn-outline:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(13, 95, 58, 0.2);
}

/* Enhanced Stat Cards with Counting Animation */
.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(13, 95, 58, 0.08);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.stat-item:hover::before {
    transform: scaleX(1);
}

.stat-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(13, 95, 58, 0.1);
}

.stat-item i {
    font-size: 3rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.stat-item h3 {
    font-size: 2.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
}

.stat-number {
    display: inline-block;
}

/* Enhanced Features Section with Glassmorphism */
.features {
    padding: 3rem 0;
    background: linear-gradient(135deg, var(--white) 0%, var(--off-white) 100%);
    position: relative;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.feature-card {
    text-align: center;
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    transition: var(--transition);
    border: 1px solid var(--glass-border);
    box-shadow: 0 10px 30px rgba(13, 95, 58, 0.08);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    transition: var(--transition);
    opacity: 0;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(13, 95, 58, 0.1);
    border-color: var(--secondary-color);
}

.feature-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(13, 95, 58, 0.2);
    position: relative;
}

/* Pulse animation removed for cleaner design */

.feature-icon i {
    font-size: 2.5rem;
    color: var(--white);
}

.feature-card h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
}

.feature-card p {
    color: var(--warm-gray);
    line-height: 1.8;
    font-size: 1rem;
}

/* Enhanced Products Preview with Hover Effects */
.products-preview {
    padding: 3rem 0;
    background: linear-gradient(180deg, var(--off-white) 0%, var(--white) 100%);
    position: relative;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.product-preview-card {
    background: var(--white);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(13, 95, 58, 0.1);
    transition: var(--transition);
    position: relative;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.product-preview-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.product-preview-card:hover::before {
    transform: scaleX(1);
}

.product-preview-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(13, 95, 58, 0.12);
}

.product-image {
    height: 280px;
    overflow: hidden;
    position: relative;
}

.product-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(13, 95, 58, 0.8), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.product-preview-card:hover .product-image::after {
    opacity: 1;
}

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

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

.product-preview-card h3 {
    padding: 1.5rem 2rem 0.5rem;
    color: var(--primary-color);
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
}

.product-preview-card p {
    padding: 0 2rem 1rem;
    color: var(--warm-gray);
    line-height: 1.6;
}

.btn-outline-small {
    margin: 0 2rem 2rem;
    padding: 0.8rem 2rem;
    font-size: 0.95rem;
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    text-decoration: none;
    display: inline-block;
    border-radius: 30px;
    transition: var(--transition);
    font-weight: 600;
}

.btn-outline-small:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--white);
    transform: translateX(2px);
}

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

/* Enhanced CTA Section */
.cta-section {
    padding: 2.5rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 50%, var(--secondary-color) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    animation: rotate 30s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.cta-content p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    font-weight: 300;
}

.btn-white {
    background: var(--white);
    color: var(--primary-color);
    padding: 1.2rem 3rem;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    background: var(--secondary-color);
    color: var(--charcoal);
}

/* Enhanced Footer with Background Image */
.footer {
    background: linear-gradient(180deg, rgba(44, 44, 44, 0.95), rgba(44, 44, 44, 1)),
                url('../images/footer-pattern.jpg') center/cover;
    color: var(--white);
    padding: 4rem 0 1.5rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--secondary-color), transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    letter-spacing: 0.5px;
}

.footer-section p {
    line-height: 1.8;
    opacity: 0.85;
    margin-bottom: 0.8rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.85;
    transition: var(--transition);
    position: relative;
}

.footer-section a:hover {
    opacity: 1;
    color: var(--secondary-color);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(13, 95, 58, 0.3);
}

.social-links a:hover {
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-light));
    transform: translateY(-5px) rotate(360deg);
    padding-left: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-links {
    display: flex;
    gap: 2.5rem;
}

/* Enhanced Modal with Glassmorphism */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(13, 95, 58, 0.8);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background: linear-gradient(135deg, var(--white) 0%, var(--off-white) 100%);
    margin: 3% auto;
    padding: 3rem;
    border-radius: 30px;
    width: 90%;
    max-width: 550px;
    position: relative;
    animation: slideIn 0.4s ease;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--glass-border);
}

.modal-content h2 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-size: 2rem;
    text-align: center;
}

.close {
    position: absolute;
    right: 2rem;
    top: 2rem;
    font-size: 2rem;
    cursor: pointer;
    color: var(--warm-gray);
    transition: var(--transition);
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(13, 95, 58, 0.1);
}

.close:hover {
    color: var(--primary-color);
    background: rgba(13, 95, 58, 0.2);
    transform: rotate(90deg);
}

.enquiry-form {
    margin-top: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 2px solid rgba(13, 95, 58, 0.1);
    border-radius: 15px;
    font-size: 1rem;
    font-family: inherit;
    background: var(--white);
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    background: var(--off-white);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.1);
}

/* Neumorphic Form Inputs */
.form-group input,
.form-group select,
.form-group textarea {
    box-shadow: inset 2px 2px 5px rgba(0, 0, 0, 0.05),
                inset -2px -2px 5px rgba(255, 255, 255, 0.9);
}

/* Page Hero with Parallax */
.page-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 50%, var(--secondary-color) 100%);
    padding: 8rem 0 4rem;
    margin-top: 70px;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
}

.page-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1rem;
    letter-spacing: 2px;
    position: relative;
    z-index: 2;
}

.page-subtitle {
    font-size: 1.3rem;
    opacity: 0.95;
    position: relative;
    z-index: 2;
    font-weight: 300;
}

/* Breadcrumb Navigation */
.breadcrumb {
    padding: 1rem 0;
    background: var(--off-white);
    border-bottom: 1px solid rgba(13, 95, 58, 0.1);
}

.breadcrumb ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.breadcrumb li {
    color: var(--warm-gray);
    font-size: 0.9rem;
}

.breadcrumb li::after {
    content: '/';
    margin-left: 1rem;
    color: var(--light-gray);
}

.breadcrumb li:last-child::after {
    content: '';
}

.breadcrumb a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

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

/* WhatsApp Widget */
.whatsapp-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.whatsapp-button {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 30px;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
    cursor: pointer;
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.whatsapp-button:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4);
}

/* Loading Skeleton */
.skeleton {
    background: linear-gradient(90deg, var(--light-gray) 25%, var(--off-white) 50%, var(--light-gray) 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--off-white);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, var(--primary-light), var(--secondary-light));
}

/* Dark Mode Styles */
.dark-mode {
    --off-white: #0A2818;
    --white: #0D3520;
    --charcoal: #FAFAF8;
    --warm-gray: #B8B8B6;
    --light-gray: #1A3A2A;
    --bg-light: #0A2818;
    --text-dark: #FAFAF8;
    --text-light: #B8B8B6;
}

.dark-mode-toggle {
    position: fixed;
    top: 100px;
    right: 30px;
    z-index: 998;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
}

.dark-mode-toggle:hover {
    transform: scale(1.1);
}

/* Testimonials Carousel */
.testimonials-section {
    padding: 5rem 0;
    background: var(--off-white);
}

.testimonials-carousel {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-slide {
    text-align: center;
    padding: 3rem;
    background: var(--white);
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(13, 95, 58, 0.1);
}

.testimonial-text {
    font-size: 1.2rem;
    color: var(--warm-gray);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.testimonial-company {
    color: var(--warm-gray);
    font-size: 0.95rem;
}

/* Interactive World Map */
.world-map-section {
    padding: 5rem 0;
    background: var(--white);
}

.world-map-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.map-pin {
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--accent-color);
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(255, 153, 51, 0.3);
    cursor: pointer;
    animation: pulse 2s infinite;
}

.map-tooltip {
    position: absolute;
    background: var(--charcoal);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 10px;
    font-size: 0.9rem;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.map-pin:hover + .map-tooltip {
    opacity: 1;
}

/* Price Calculator */
.price-calculator {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(13, 95, 58, 0.1);
}

.calculator-input {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.calculator-result {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
}

.price-display {
    font-size: 2.5rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
}

/* Responsive Design Enhanced */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 85%;
        height: calc(100vh - 70px);
        background: var(--glass-bg);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 3rem 2rem;
        box-shadow: -5px 0 20px rgba(0,0,0,0.1);
        transition: right 0.4s ease;
        z-index: 999;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu li {
        margin: 1.5rem 0;
    }
    
    .nav-menu a {
        font-size: 1.1rem;
    }
    
    .hero .container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: clamp(1.8rem, 6vw, 2.8rem);
        line-height: 1.3;
        text-align: center;
    }
    
    .hero-subtitle {
        font-size: clamp(1.1rem, 4vw, 1.5rem);
        line-height: 1.4;
        text-align: center;
    }
    
    .hero-description {
        font-size: clamp(0.95rem, 3vw, 1.1rem);
        text-align: center;
    }
    
    .hero-content {
        order: 1;
    }
    
    .hero-image {
        order: 2;
        max-width: 80%;
        margin: 0 auto;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    .logo-tagline {
        font-size: 0.65rem;
        max-width: 100%;
        letter-spacing: 0.2px;
        line-height: 1.1;
    }
    
    .logo-text {
        font-size: 1.4rem;
    }
    
    .logo-text-wrapper {
        max-width: 200px;
    }
}

/* Notification System */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    transform: translateX(400px);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 300px;
    max-width: 400px;
}

.notification.show {
    transform: translateX(0);
    opacity: 1;
}

.notification.success {
    border-left: 4px solid #4ade80;
}

.notification.error {
    border-left: 4px solid #ef4444;
}

.notification.info {
    border-left: 4px solid var(--primary-color);
}

.notification-content {
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.notification-content i {
    font-size: 1.2rem;
    color: var(--primary-color);
}

.notification.success .notification-content i {
    color: #4ade80;
}

.notification.error .notification-content i {
    color: #ef4444;
}

.notification-content span {
    flex: 1;
    color: var(--text-dark);
    font-size: 0.95rem;
    line-height: 1.4;
}

.close-notification {
    background: none;
    border: none;
    font-size: 1.2rem;
    color: var(--text-light);
    cursor: pointer;
    padding: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.close-notification:hover {
    color: var(--text-dark);
}

/* Contact Form Enhancements */
.contact-form button[type="submit"]:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.contact-form .fas.fa-spinner {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Success Page Styles */
.success-content {
    text-align: center;
}

.success-icon {
    font-size: 4rem;
    color: #4ade80;
    margin-bottom: 1rem;
    animation: pulse 2s infinite;
}

.success-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

.success-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.success-message h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
}

.success-details {
    margin-top: 2rem;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(13, 95, 58, 0.1);
}

.detail-item i {
    font-size: 1.5rem;
    color: var(--secondary-color);
    min-width: 30px;
}

.detail-item h3 {
    margin-bottom: 0.3rem;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.detail-item p {
    margin: 0;
    color: var(--text-light);
}

.success-actions h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
}

.action-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.action-buttons .btn {
    justify-content: center;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-alternatives {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(13, 95, 58, 0.1);
}

.contact-alternatives h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-align: center;
}

.alternative-contacts {
    display: flex;
    justify-content: space-around;
    gap: 1rem;
}

.alt-contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    border-radius: 8px;
    text-decoration: none;
    transition: var(--transition);
    color: var(--text-dark);
}

.alt-contact.whatsapp {
    background: rgba(37, 211, 102, 0.1);
}

.alt-contact.whatsapp:hover {
    background: rgba(37, 211, 102, 0.2);
}

.alt-contact.email {
    background: rgba(13, 95, 58, 0.1);
}

.alt-contact.email:hover {
    background: rgba(13, 95, 58, 0.2);
}

.alt-contact.phone {
    background: rgba(212, 175, 55, 0.1);
}

.alt-contact.phone:hover {
    background: rgba(212, 175, 55, 0.2);
}

.alt-contact i {
    font-size: 1.5rem;
}

.alt-contact span {
    font-size: 0.85rem;
    font-weight: 500;
}

@media (max-width: 768px) {
    .success-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .alternative-contacts {
        flex-direction: column;
    }
    
    .detail-item {
        flex-direction: column;
        text-align: center;
    }
}

/* Custom Cursor - Removed for better UX */

/* Page Transitions */
.page-transition {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    z-index: 9999;
    transform: translateY(-100%);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.page-transition.active {
    transform: translateY(0);
}

/* Instagram Feed Integration */
.instagram-feed {
    padding: 4rem 0;
    background: var(--off-white);
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.instagram-post {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    aspect-ratio: 1;
}

.instagram-post img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.instagram-post:hover img {
    transform: scale(1.1);
}

.instagram-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(13, 95, 58, 0.8), rgba(212, 175, 55, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.instagram-post:hover .instagram-overlay {
    opacity: 1;
}

/* Currency Converter Widget */
.currency-converter {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(13, 95, 58, 0.1);
    position: fixed;
    bottom: 100px;
    right: 30px;
    z-index: 997;
    width: 300px;
    display: none;
}

.currency-converter.active {
    display: block;
    animation: slideIn 0.4s ease;
}

.converter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.converter-header h4 {
    color: var(--primary-color);
    font-size: 1.1rem;
}

/* 404 Page */
.error-404 {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 3rem;
}

.error-content h1 {
    font-size: 8rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.error-content p {
    font-size: 1.3rem;
    color: var(--warm-gray);
    margin-bottom: 2rem;
}

/* Security Badges */
.security-badges {
    display: flex;
    gap: 2rem;
    justify-content: center;
    padding: 2rem 0;
    flex-wrap: wrap;
}

.security-badge {
    opacity: 0.7;
    transition: var(--transition);
}

.security-badge:hover {
    opacity: 1;
    transform: scale(1.1);
}

/* Live Chat Indicator */
.live-chat-indicator {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background: var(--primary-color);
    color: var(--white);
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 10px 30px rgba(13, 95, 58, 0.3);
    z-index: 996;
}

.online-dot {
    width: 10px;
    height: 10px;
    background: #4ade80;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

/* Customer Reviews */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.review-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(13, 95, 58, 0.1);
}

.review-stars {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.review-text {
    color: var(--warm-gray);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.review-author {
    font-weight: 600;
    color: var(--primary-color);
}

/* Mobile Bottom Navigation */
@media (max-width: 768px) {
    .mobile-bottom-nav {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: var(--white);
        box-shadow: 0 -5px 20px rgba(13, 95, 58, 0.1);
        display: flex;
        justify-content: space-around;
        padding: 0.8rem 0;
        z-index: 995;
    }
    
    .mobile-nav-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.3rem;
        color: var(--warm-gray);
        text-decoration: none;
        transition: var(--transition);
    }
    
    .mobile-nav-item.active,
    .mobile-nav-item:hover {
        color: var(--primary-color);
    }
    
    .mobile-nav-item i {
        font-size: 1.3rem;
    }
    
    .mobile-nav-item span {
        font-size: 0.75rem;
    }
}