/* Main Styles for Organic Grocery Store */

/* Newsletter Section Styles */
.newsletter-section {
    position: relative;
    z-index: 1;
}

.newsletter-container {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border-radius: 20px !important;
}

.newsletter-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15) !important;
}

.newsletter-icon {
    animation: float 3s ease-in-out infinite;
}

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

.newsletter-title {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.newsletter-form .form-control {
    transition: all 0.3s ease;
    border: 2px solid transparent;
    background: white !important;
    color: #333 !important;
    font-weight: 500 !important;
    padding: 15px 20px !important;
    font-size: 16px !important;
    z-index: 10;
    position: relative;
}

.newsletter-form .form-control:focus {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 255, 255, 0.5);
    outline: none;
    background: white !important;
}

.newsletter-form .form-control::placeholder {
    color: #666 !important;
    opacity: 0.8;
}

.newsletter-form .btn {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    background: linear-gradient(to right, #53d5fc 0%, #56f140 100%) !important;
    border: none !important;
    color: white !important;
    font-weight: bold !important;
    padding: 15px 30px !important;
    font-size: 1.1rem !important;
    z-index: 10;
}

.newsletter-form .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    background: linear-gradient(to right, #4ac8f0 0%, #4de03a 100%) !important;
}

.newsletter-form .btn:active {
    transform: translateY(0);
}

.newsletter-form .form-label {
    color: white !important;
    font-weight: 600 !important;
    margin-bottom: 8px !important;
    z-index: 10;
    position: relative;
}

.newsletter-form-container {
    position: relative;
    z-index: 10;
}

.newsletter-form {
    position: relative;
    z-index: 10;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .newsletter-title {
        font-size: 2rem !important;
    }
    
    .newsletter-description {
        font-size: 1.1rem !important;
    }
    
    .newsletter-container {
        margin: 20px 10px;
    }
    
    .newsletter-form .form-control {
        font-size: 16px !important; /* Prevents zoom on iOS */
    }
}

/* Global styles */
body {
    font-family: 'Nunito', sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Header styles */
header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar-toggler {
    border: none;
    padding: 0;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* Logo styles */
.logo-container {
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 1.5rem;
}

.logo-container svg {
    color: #28a745;
}

.logo-text {
    color: #28a745;
    font-weight: 800;
}

/* Search bar enhancements */
.search-bar {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    transition: all 0.3s ease;
    min-width: 300px;
}

.search-bar:focus-within {
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
    border-color: #28a745;
    background: #fff;
}

.search-bar input {
    background: transparent;
    border: none;
    padding: 12px 15px;
}

.search-bar input:focus {
    outline: none;
    box-shadow: none;
}

.search-bar button {
    border: none;
    background: transparent;
    padding: 12px 15px;
    color: #6c757d;
}

.search-bar button:hover {
    color: #28a745;
}

/* Hero section */
.hero-section {
    background: linear-gradient(135deg, #ffc107 0%, #ffca2c 50%, #ffd54f 100%);
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-section::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>');
    z-index: 1;
}

.hero-section .container-fluid {
    position: relative;
    z-index: 2;
}

.hero-content {
    padding: 0 60px;
}

.hero-text {
    max-width: 600px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.hero-title .text-success {
    color: #28a745 !important;
}

.hero-title .text-dark {
    color: #212529 !important;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #6c757d;
    margin-bottom: 2.5rem;
    font-weight: 400;
}

.hero-buttons {
    margin-bottom: 3rem;
}

.hero-buttons .btn {
    padding: 15px 30px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.hero-buttons .btn-success {
    background-color: #28a745;
    border-color: #28a745;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

.hero-buttons .btn-success:hover {
    background-color: #218838;
    border-color: #1e7e34;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4);
}

.hero-buttons .btn-dark {
    background-color: #212529;
    border-color: #212529;
    box-shadow: 0 4px 15px rgba(33, 37, 41, 0.3);
}

.hero-buttons .btn-dark:hover {
    background-color: #1a1d20;
    border-color: #16181b;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(33, 37, 41, 0.4);
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-top: 2rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: #212529;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.hero-image {
    padding: 0;
    position: relative;
}

.hero-image-container {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-image-container img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
    .hero-content {
        padding: 60px 30px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 2rem;
    }
    
    .hero-image-container {
        height: 50vh;
        margin-top: 2rem;
    }
}

@media (max-width: 767.98px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }
    
    .stat-item {
        align-items: center;
    }
}

/* Feature blocks */
.features-section {
    padding: 0;
    margin-top: -50px;
    position: relative;
    z-index: 10;
}

.feature-block {
    padding: 40px 30px;
    text-align: center;
    color: white;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

.feature-block:hover {
    transform: translateY(-5px);
}

.feature-fresh {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
}

.feature-organic {
    background: linear-gradient(135deg, #6f42c1 0%, #5a2d91 100%);
}

.feature-delivery {
    background: linear-gradient(135deg, #fd7e14 0%, #e55a00 100%);
}

.feature-block .feature-icon {
    margin-bottom: 20px;
}

.feature-block .feature-icon svg {
    width: 48px;
    height: 48px;
    color: white;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.feature-block h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.feature-block p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin: 0;
    line-height: 1.4;
}

/* Feature cards (keeping for other sections) */
.feature-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: none;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.feature-card svg {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    color: #28a745;
}

/* Category section */
.category-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.category-item {
    text-align: center;
    padding: 20px;
    transition: all 0.3s ease;
}

.category-item:hover {
    transform: scale(1.05);
}

.category-item img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 3px solid #28a745;
}

/* Product section */
.product-section {
    padding: 80px 0;
}

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

.product-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

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

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

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

.product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #dc3545;
    color: white;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
}

.product-info {
    padding: 20px;
}

.product-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.current-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #28a745;
}

.old-price {
    font-size: 1rem;
    color: #6c757d;
    text-decoration: line-through;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 15px;
}

.stars {
    color: #ffc107;
}

.rating-count {
    color: #6c757d;
    font-size: 0.9rem;
}

.product-actions {
    display: flex;
    gap: 10px;
}

.quantity-input {
    width: 60px;
    text-align: center;
    border: 1px solid #dee2e6;
    border-radius: 5px;
    padding: 8px;
}

.add-to-cart-btn {
    flex: 1;
    background: #28a745;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.add-to-cart-btn:hover {
    background: #218838;
    transform: translateY(-2px);
}

.wishlist-btn {
    background: white;
    border: 1px solid #dee2e6;
    color: #6c757d;
    padding: 10px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.wishlist-btn:hover {
    background: #f8f9fa;
    color: #dc3545;
    border-color: #dc3545;
}

/* Newsletter section */
.newsletter-section {
    background: linear-gradient(135deg, #6c757d 0%, #495057 100%);
    color: white;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.newsletter-section::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="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.3;
}

.newsletter-content {
    position: relative;
    z-index: 2;
}

.newsletter-form {
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    padding: 30px;
    backdrop-filter: blur(10px);
}

.newsletter-form input {
    background: rgba(255,255,255,0.9);
    border: none;
    border-radius: 5px;
    padding: 12px 15px;
    margin-bottom: 15px;
}

.newsletter-form button {
    background: #28a745;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: #218838;
    transform: translateY(-2px);
}

/* Features section */
.features-section {
    padding: 80px 0;
    background: white;
}

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

.feature-icon {
    width: 80px;
    height: 80px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-icon svg {
    width: 40px;
    height: 40px;
    color: #28a745;
}

.feature-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.feature-description {
    color: #6c757d;
    line-height: 1.6;
}

/* Footer */
footer {
    background: #343a40;
    color: white;
    padding: 60px 0 20px;
}

.footer-top {
    margin-bottom: 40px;
}

.footer-bottom {
    border-top: 1px solid #495057;
    padding-top: 20px;
    text-align: center;
    color: #adb5bd;
}

/* App download section */
.app-download-section {
    background: linear-gradient(135deg, #ffc107 0%, #ff8c00 100%);
    padding: 60px 0;
    color: white;
}

.app-download-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.app-buttons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.app-button {
    background: rgba(255,255,255,0.2);
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 10px;
    padding: 15px 25px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.app-button:hover {
    background: rgba(255,255,255,0.3);
    border-color: rgba(255,255,255,0.5);
    color: white;
    transform: translateY(-2px);
}

/* Blog section */
.blog-section {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.blog-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.blog-image {
    height: 200px;
    overflow: hidden;
}

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

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

.blog-content {
    padding: 20px;
}

.blog-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: #6c757d;
}

.blog-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.blog-excerpt {
    color: #6c757d;
    line-height: 1.6;
}

/* Search suggestions */
.search-suggestions {
    padding: 40px 0;
    background: white;
}

.suggestion-tag {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    color: #6c757d;
    padding: 8px 15px;
    border-radius: 20px;
    text-decoration: none;
    margin: 5px;
    display: inline-block;
    transition: all 0.3s ease;
}

.suggestion-tag:hover {
    background: #28a745;
    color: white;
    border-color: #28a745;
    transform: translateY(-2px);
}

/* Responsive design */
@media (max-width: 768px) {
    .hero-section {
        padding: 40px 0;
    }
    
    .display-1 {
        font-size: 2.5rem;
    }
    
    .app-download-content {
        flex-direction: column;
        text-align: center;
    }
    
    .app-buttons {
        justify-content: center;
    }
    
    .banner-blocks {
        grid-template-columns: 1fr;
    }
    
    .banner-ad.large {
        grid-column: span 1;
    }
}

@media (max-width: 576px) {
    .product-actions {
        flex-direction: column;
    }
    
    .quantity-input {
        width: 100%;
    }
    
    .app-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .feature-card {
        padding: 20px;
    }
}

/* Animation classes */
.fade-in {
    animation: fadeIn 0.6s ease-in;
}

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

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

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

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

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

/* Utility classes */
.text-primary {
    color: #28a745 !important;
}

.bg-primary {
    background-color: #28a745 !important;
}

.btn-primary {
    background-color: #28a745;
    border-color: #28a745;
}

.btn-primary:hover {
    background-color: #218838;
    border-color: #1e7e34;
}

.border-primary {
    border-color: #28a745 !important;
}

/* Loading states */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid #f3f3f3;
    border-top: 2px solid #28a745;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Banner Blocks for School Theme */
.banner-blocks {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 1rem;
    margin: 2rem 0;
}

.banner-ad {
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    min-height: 200px;
    display: flex;
    align-items: center;
}

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

.banner-ad.large {
    min-height: 250px;
}

.banner-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.banner-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.banner-ad p {
    font-size: 1rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.btn-link {
    display: inline-block;
    padding: 0.5rem 1rem;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    transition: all 0.3s ease;
    font-weight: 600;
}

.btn-link:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

/* Responsive banner blocks */
@media (max-width: 768px) {
    .banner-blocks {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .banner-ad {
        min-height: 180px;
    }
    
    .banner-ad.large {
        min-height: 200px;
    }
    
    .banner-title {
        font-size: 1.25rem;
    }
}

@media (max-width: 576px) {
    .banner-content {
        padding: 1.5rem !important;
    }
    
    .banner-title {
        font-size: 1.1rem;
    }
    
    .banner-ad p {
        font-size: 0.9rem;
    }
}

/* Enhanced About Us and Why Choose Us Sections */
.feature-card {
    transition: all 0.3s ease;
    cursor: pointer;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1) !important;
}

.feature-card:hover .feature-icon div {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

/* Gradient text effect */
.text-gradient-primary {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Enhanced button hover effects */
.btn-primary {
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(34, 197, 94, 0.3) !important;
}

.btn-outline-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(34, 197, 94, 0.2) !important;
}

/* Image hover effect */
.position-relative img {
    transition: transform 0.3s ease;
}

.position-relative:hover img {
    transform: scale(1.08) !important;
}

/* Floating card animation */
.position-absolute.bg-white {
    animation: float 3s ease-in-out infinite;
}

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

/* Statistics cards hover effect */
.d-flex.align-items-center.p-3.rounded-3 {
    transition: all 0.3s ease;
}

.d-flex.align-items-center.p-3.rounded-3:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Badge styling */
.bg-gradient-primary {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
}

/* Enhanced shadows */
.shadow-2xl {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* Backdrop filter support */
.backdrop-blur {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* Responsive improvements */
@media (max-width: 768px) {
    .display-5 {
        font-size: 2.5rem;
    }
    
    .display-4 {
        font-size: 2rem;
    }
    
    .feature-card {
        margin-bottom: 1rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading animation for images */
img {
    transition: opacity 0.3s ease;
}

img[src*="university-campus"] {
    opacity: 0;
    animation: fadeIn 0.5s ease forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* Enhanced typography */
.fw-bold {
    font-weight: 700 !important;
}

.tracking-wide {
    letter-spacing: 0.05em;
}

/* Custom border radius */
.rounded-4 {
    border-radius: 1rem !important;
}

/* Enhanced spacing */
.gap-3 {
    gap: 1rem !important;
}

/* Button enhancements */
.btn-lg {
    padding: 0.75rem 1.5rem;
    font-size: 1.1rem;
}

/* Icon enhancements */
svg {
    transition: transform 0.2s ease;
}

.feature-card:hover svg {
    transform: scale(1.1);
}

/* Background gradients */
.bg-gradient-light {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.bg-gradient-white {
    background: linear-gradient(135deg, #ffffff 0%, #f0fdf4 100%);
}
