/* Import Professional Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Playfair+Display:wght@400;500;600;700;800&family=Source+Sans+Pro:wght@300;400;600;700&display=swap');

/* Custom CSS for AvivedaHerbals */

:root {
    --primary-color: #773c09;
    --secondary-color: #cddf39;
    --success-color: #773c09;
    --danger-color: #dc3545;
    --warning-color: #ffcc00;
    --info-color: #17a2b8;
    --light-color: #fdf4eb;
    --dark-color: #5a3c1a;
    --accent-color: #f5dbc4;
    --card-bg: #fdece3;
    --footer-bg: #fef4ec;
    
    /* Professional Typography System */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-secondary: 'Source Sans Pro', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Font Weights */
    --font-weight-light: 300;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --font-weight-extrabold: 800;
    
    /* Font Sizes */
    --font-size-xs: 0.75rem;    /* 12px */
    --font-size-sm: 0.875rem;   /* 14px */
    --font-size-base: 1rem;     /* 16px */
    --font-size-lg: 1.125rem;   /* 18px */
    --font-size-xl: 1.25rem;    /* 20px */
    --font-size-2xl: 1.5rem;    /* 24px */
    --font-size-3xl: 1.875rem;  /* 30px */
    --font-size-4xl: 2.25rem;   /* 36px */
    --font-size-5xl: 3rem;      /* 48px */
    
    /* Line Heights */
    --line-height-tight: 1.25;
    --line-height-snug: 1.375;
    --line-height-normal: 1.5;
    --line-height-relaxed: 1.625;
    --line-height-loose: 2;
}

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

body {
    padding-top: env(safe-area-inset-top);
    padding-bottom: env(safe-area-inset-bottom);
    padding-left: env(safe-area-inset-left);
    padding-right: env(safe-area-inset-right);
    overflow-x: hidden;
    height: 100%;
    font-family: var(--font-primary);
    font-size: var(--font-size-base);
    line-height: var(--line-height-normal);
    font-weight: var(--font-weight-normal);
    color: #333;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Professional Typography Hierarchy */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: var(--font-weight-bold);
    line-height: var(--line-height-tight);
    color: var(--dark-color);
    margin-bottom: 0.5em;
}

h1 {
    font-size: var(--font-size-5xl);
    font-weight: var(--font-weight-extrabold);
    line-height: var(--line-height-tight);
}

h2 {
    font-size: var(--font-size-4xl);
    font-weight: var(--font-weight-bold);
}

h3 {
    font-size: var(--font-size-3xl);
    font-weight: var(--font-weight-semibold);
}

h4 {
    font-size: var(--font-size-2xl);
    font-weight: var(--font-weight-semibold);
}

h5 {
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-medium);
}

h6 {
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-medium);
}

p {
    font-family: var(--font-primary);
    font-size: var(--font-size-base);
    line-height: var(--line-height-relaxed);
    margin-bottom: 1em;
    color: #555;
}

a {
    font-family: var(--font-primary);
    font-weight: var(--font-weight-medium);
    text-decoration: none;
    transition: all 0.3s ease;
}

small {
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-normal);
}

/* Navigation */
nav.navbar {
    background-color: var(--light-color); /* light beige background */
    padding: 0.8rem 1rem;
    position: fixed;
    top: 35px;
    z-index: 9;
    width: 100%;
    box-shadow: 0px 0px 5px gray;
}

/* Main content spacing to account for fixed navbar */


/* Additional spacing for product pages and other content that might get hidden */


/* Ensure product grids and lists have proper spacing */
.products-container,
.product-grid,
.product-list {
    padding-top: 20px;
}

.navbar-brand {
    font-family: var(--font-heading);
    font-size: var(--font-size-2xl);
    font-weight: var(--font-weight-bold);
    color: var(--dark-color);
}

.navbar-brand img {
    height: 50px;
    width: auto;
    transition: transform 0.3s ease;
}

.navbar-brand:hover img {
    transform: scale(1.05);
}

.navbar-nav .nav-link {
    font-family: var(--font-primary);
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-medium);
    color: #333;
    margin: 0 8px;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover {
    color: var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
}

.appointment-btn {
    font-family: var(--font-primary);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-semibold);
    background-color: var(--secondary-color);
    border-radius: 8px;
    padding: 8px 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.appointment-btn:hover {
    background-color: #b5c827;
    color: #fff;
}

/* Offer Bar */
.offer-bar {
    background: var(--primary-color);   
    color: #fff;
    font-family: var(--font-primary);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-medium);
    padding: 6px 0;
    position: fixed;
    top: 0px;
    z-index: 9;
    width: 100%;
    letter-spacing: 0.3px;
}

.offer-bar .offer-item {
    margin: 0 20px;
    white-space: nowrap;
}

.offer-bar .divider {
    margin: 0 10px;
    color: var(--warning-color); /* yellow divider color */
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--success-color) 0%, #20c997 100%);
    min-height: 500px;
    margin-top: 0; /* Removed since main already has margin-top */
}

/* Cards */
.card {
    border: none;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.product-card {
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.category-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

/* Buttons */
.btn {
    font-family: var(--font-primary);
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-semibold);
    border-radius: 25px;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
}

.btn-success {
    background: var(--primary-color);
    border: none;
    color: white;
}

.btn-success:hover {
    background: #5a2d06;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(119, 60, 9, 0.3);
}

.btn-outline-success {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-outline-success:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

/* Demo-specific button styles */
a.btn.our-products-btn {
    background: var(--secondary-color);
    padding: 10px 50px;
    border-radius: 10px 0px 10px 0px;
}

a.btn.buy-now {
    background-color: var(--secondary-color);
}

a.btn.add-to-cart {
    background-color: var(--primary-color);
    color: white;
}

/* Product Images */
.product-image-container img {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Price Styling */
.price-section .h3 {
    color: var(--success-color);
    font-weight: 700;
}

/* Rating Stars */
.stars i {
    font-size: 1.1rem;
}

/* Badges */
.badge {
    font-size: 0.8rem;
    font-weight: 500;
}

/* Forms */
.form-control {
    border-radius: 8px;
    border: 2px solid #e9ecef;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-control:focus {
    border-color: var(--success-color);
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

.form-select {
    border-radius: 8px;
    border: 2px solid #e9ecef;
}

.form-select:focus {
    border-color: var(--success-color);
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

/* Alerts */
.alert {
    border-radius: 10px;
    border: none;
}

/* About Section */
.about-section {
    max-width: 1200px;
    margin-top: 30px; /* Reduced since main already has margin-top */
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.about-header {
    text-align: center;
    margin-bottom: 50px;
    padding: 40px 30px;
    background: linear-gradient(135deg, var(--light-color) 0%, #f8f0e8 100%);
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    border: 1px solid rgba(255,255,255,0.3);
    position: relative;
    overflow: hidden;
}

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

.about-section h1 {
    font-family: var(--font-heading);
    font-size: var(--font-size-4xl);
    font-weight: var(--font-weight-extrabold);
    text-align: center;
    margin-bottom: 25px;
    color: var(--dark-color);
    position: relative;
    line-height: var(--line-height-tight);
}

.about-section h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.about-section p {
    font-family: var(--font-primary);
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-normal);
    line-height: var(--line-height-relaxed);
    text-align: center;
    margin: 0 auto;
    max-width: 1000px;
    color: #555;
}

/* Team Section */
.our-teams {
    padding: 80px 0;
    text-align: center;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #b8d42a 100%);
    position: relative;
}

.our-teams::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.section-title {
    font-family: var(--font-heading);
    font-size: var(--font-size-4xl);
    font-weight: var(--font-weight-extrabold);
    margin-bottom: 60px;
    color: var(--dark-color);
    position: relative;
    z-index: 2;
    line-height: var(--line-height-tight);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

.cards {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.team-card {
    background: var(--card-bg);
    width: 280px;
    padding: 40px 25px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.2);
    position: relative;
    overflow: hidden;
}

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

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

.card-image {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    overflow: hidden;
    border-radius: 50%;
    border: 4px solid #fff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    position: relative;
}

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

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

.team-card h3 {
    font-family: var(--font-heading);
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-semibold);
    margin: 15px 0 8px 0;
    color: var(--dark-color);
    line-height: var(--line-height-snug);
}

.team-card h6 {
    font-family: var(--font-primary);
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-medium);
    color: var(--primary-color);
    margin-bottom: 15px;
    font-style: italic;
}

.team-card p {
    font-family: var(--font-primary);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-normal);
    color: #666;
    line-height: var(--line-height-relaxed);
    margin: 0;
}

/* Footer */
footer {
    background: var(--footer-bg);
    padding: 40px 20px 20px;
    font-family: var(--font-primary);
    color: var(--dark-color);
}

footer h4, footer h5, footer h6 {
    font-family: var(--font-heading);
    font-weight: var(--font-weight-semibold);
    color: var(--dark-color);
}

footer p {
    font-family: var(--font-primary);
    font-size: var(--font-size-sm);
    line-height: var(--line-height-relaxed);
    color: #666;
}

footer a {
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--success-color) !important;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--success-color);
    transform: translateY(-3px);
}

/* Cart */
.cart-item {
    transition: background-color 0.3s ease;
}

.cart-item:hover {
    background-color: #f8f9fa;
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255,255,255,.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    /* Adjust main content spacing for mobile */
    main {
        margin-top: 100px; /* Reduced spacing for mobile */
    }
    
    .hero-section {
        min-height: 400px;
        text-align: center;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .product-card {
        margin-bottom: 1rem;
    }
    
    .navbar-nav {
        text-align: center;
    }
    
    .navbar-nav .nav-item {
        margin: 0.5rem 0;
    }
    
    .about-section {
        margin-top: 20px; /* Reduced since main already has margin-top */
        padding: 0 15px;
    }
    
    .about-section h1 {
        font-size: 2rem;
    }
    
    .about-section p {
        font-size: 1.1rem;
    }
    
    .about-header {
        padding: 30px 20px;
    }
    
    .our-teams {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    
    .cards {
        gap: 30px;
        padding: 0 15px;
    }
    
    .team-card {
        width: 100%;
        max-width: 300px;
        padding: 30px 20px;
    }
    
    .card-image {
        width: 100px;
        height: 100px;
    }
    
    .offer-bar {
        font-size: 12px;
    }
    
    .offer-bar .offer-item {
        margin: 0 10px;
    }
    
    /* Contact section responsive for tablet */
    .contact-heading {
        font-size: var(--font-size-3xl);
        margin-bottom: 2.5rem;
    }
    
    .info-card {
        padding: 22px 18px;
    }
    
    .info-card h5 {
        font-size: var(--font-size-base);
    }
    
    .contact-form {
        padding: 25px 20px;
    }
}

@media (max-width: 576px) {
    /* Adjust main content spacing for small mobile */
    main {
        margin-top: 90px; /* Further reduced spacing for small mobile */
    }
    
    .hero-section h1 {
        font-size: 1.5rem;
    }
    
    .btn-lg {
        padding: 0.5rem 1rem;
        font-size: 1rem;
    }
    
    .card-body {
        padding: 1rem;
    }
    
    .about-section {
        margin-top: 10px; /* Reduced since main already has margin-top */
        padding: 0 10px;
    }
    
    .about-section h1 {
        font-size: 1.8rem;
    }
    
    .about-section p {
        font-size: 1rem;
    }
    
    .about-header {
        padding: 25px 15px;
    }
    
    .our-teams {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    
    .cards {
        gap: 20px;
        padding: 0 10px;
    }
    
    .team-card {
        width: 100%;
        max-width: 280px;
        padding: 25px 15px;
    }
    
    .card-image {
        width: 90px;
        height: 90px;
    }
    
    .team-card h3 {
        font-size: 20px;
    }
    
    .team-card p {
        font-size: 14px;
    }
    
    .offer-bar {
        font-size: 11px;
        padding: 3px 0;
    }
    
    .offer-bar .offer-item {
        margin: 0 5px;
    }
    
    .offer-bar .divider {
        margin: 0 5px;
    }
    
    /* Contact section responsive */
    .contact-heading {
        font-size: var(--font-size-2xl);
        margin-bottom: 2rem;
    }
    
    .info-card {
        padding: 20px 15px;
        margin-bottom: 20px;
    }
    
    .info-card h5 {
        font-size: var(--font-size-sm);
    }
    
    .contact-form {
        padding: 20px 15px;
    }
    
    .custom-input {
        padding: 12px 15px;
        font-size: var(--font-size-sm);
    }
    
    .send-btn {
        padding: 12px 30px;
        font-size: var(--font-size-sm);
    }
    
    /* Typography responsive adjustments */
    h1 {
        font-size: var(--font-size-3xl);
    }
    
    h2 {
        font-size: var(--font-size-2xl);
    }
    
    h3 {
        font-size: var(--font-size-xl);
    }
    
    .section-title {
        font-size: var(--font-size-2xl);
    }
    
    .about-section h1 {
        font-size: var(--font-size-2xl);
    }
}

/* Custom Animations */
.fade-in {
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Professional Loading States */
.loading-skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

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

/* Image Loading States */
.card-image img {
    transition: opacity 0.3s ease;
}

.card-image img[src=""] {
    opacity: 0;
}

.card-image img:not([src=""]) {
    opacity: 1;
}

/* Sequential Animation for Team Cards */
.team-card:nth-child(1) {
    animation: slideInUp 0.6s ease-out 0.1s both;
}

.team-card:nth-child(2) {
    animation: slideInUp 0.6s ease-out 0.3s both;
}

.team-card:nth-child(3) {
    animation: slideInUp 0.6s ease-out 0.5s both;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-in-left {
    animation: slideInLeft 0.5s ease-out;
}

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}

.slide-in-right {
    animation: slideInRight 0.5s ease-out;
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}

/* Utility Classes */
.text-gradient {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg-gradient-success {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.shadow-soft {
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.border-soft {
    border: 1px solid rgba(0,0,0,0.05);
}

/* Professional Hover Effects */
.professional-hover {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.professional-hover:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* Enhanced Focus States */
.btn:focus,
.form-control:focus,
.nav-link:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(119, 60, 9, 0.2);
}

/* Professional Typography */
.professional-text {
    font-family: var(--font-primary);
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-normal);
    line-height: var(--line-height-relaxed);
    color: #555;
}

.professional-heading {
    font-family: var(--font-heading);
    font-weight: var(--font-weight-semibold);
    line-height: var(--line-height-snug);
    color: var(--dark-color);
}

/* Admin Panel Styles */
.admin-sidebar {
    background: linear-gradient(135deg, var(--dark-color) 0%, #495057 100%);
    min-height: 100vh;
}

.admin-sidebar .nav-link {
    color: rgba(255,255,255,0.8);
    transition: all 0.3s ease;
}

.admin-sidebar .nav-link:hover,
.admin-sidebar .nav-link.active {
    color: white;
    background-color: rgba(255,255,255,0.1);
    border-radius: 5px;
}

/* WhatsApp Button */
a.whatsaap-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    border-radius: 50%;
    text-align: center;
    font-size: 35px;
    z-index: 9;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

/* Button Image */
a.whatsaap-btn img {
    width: 50px;
    background-color: #773c09;
    padding: 5px;
    border-radius: 50%;
    box-shadow: 0px 0px 5px gray;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

/* Ring Effect */
a.whatsaap-btn::before {
    content: "";
    position: absolute;
    width: 70px;
    height: 70px;
    border: 3px solid #773c09;
    border-radius: 50%;
    animation: ringPulse 1.5s infinite;
    z-index: 1;
    opacity: 0.7;
    transition: all 0.3s ease;
}

/* Hover Effects */
a.whatsaap-btn:hover {
    transform: translateY(-5px) scale(1.1);
}

a.whatsaap-btn:hover img {
    background-color: #25D366;
    box-shadow: 0px 8px 20px rgba(37, 211, 102, 0.4);
    transform: scale(1.1);
}

a.whatsaap-btn:hover::before {
    border-color: #25D366;
    animation-duration: 0.8s;
    opacity: 0.9;
}

/* Active/Pressed State */
a.whatsaap-btn:active {
    transform: translateY(-2px) scale(1.05);
}

a.whatsaap-btn:active img {
    transform: scale(0.95);
}

/* Animation Keyframes */
@keyframes ringPulse {
    0% {
        transform: scale(0.8);
        opacity: 0.7;
    }
    70% {
        transform: scale(1.3);
        opacity: 0;
    }
    100% {
        transform: scale(0.8);
        opacity: 0;
    }
}

/* Contact Us Section */
.contact-us-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 100vh;
}

.contact-heading {
    font-family: var(--font-heading);
    font-size: var(--font-size-4xl);
    font-weight: var(--font-weight-extrabold);
    color: var(--dark-color);
    margin-bottom: 3rem;
    position: relative;
    line-height: var(--line-height-tight);
}

.contact-heading::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.info-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    padding: 25px 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.2);
    position: relative;
    overflow: hidden;
}

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

.info-card h5 {
    font-family: var(--font-heading);
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-semibold);
    color: var(--dark-color);
    margin-bottom: 15px;
    line-height: var(--line-height-snug);
}

.info-card p {
    font-family: var(--font-primary);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-normal);
    color: #666;
    line-height: var(--line-height-relaxed);
    margin-bottom: 10px;
}

.info-card i {
    color: var(--primary-color);
    margin-right: 8px;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.contact-form {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    border: 1px solid rgba(255,255,255,0.3);
    position: relative;
    overflow: hidden;
}

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

.custom-input {
    font-family: var(--font-primary);
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-normal);
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 15px 20px;
    box-shadow: none;
    transition: all 0.3s ease;
    background: #f8f9fa;
    line-height: var(--line-height-normal);
}

.custom-input:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 0.2rem rgba(119, 60, 9, 0.2);
    background: #fff;
}

.custom-input::placeholder {
    font-family: var(--font-primary);
    color: #999;
    font-weight: var(--font-weight-normal);
}

.send-btn {
    font-family: var(--font-primary);
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-semibold);
    background: linear-gradient(135deg, var(--primary-color) 0%, #5a2d06 100%);
    color: #fff;
    text-transform: uppercase;
    border-radius: 12px;
    padding: 15px 40px;
    border: none;
    transition: all 0.3s ease;
    letter-spacing: 0.8px;
}

.send-btn:hover {
    background: linear-gradient(135deg, #5a2d06 0%, var(--primary-color) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(119, 60, 9, 0.3);
}

/* Print Styles */
@media print {
    .navbar,
    .btn,
    footer {
        display: none !important;
    }
    
    .container {
        max-width: none !important;
    }
}
