/* ========================================
   ΚΡΕΟΠΩΛΕΙΟ ΕΥΣΤΑΘΙΟΥ V2 - MODERN DESIGN
   ======================================== */

/* ========== ROOT VARIABLES ========== */
:root {
    /* Colors - Professional Butcher Palette */
    --primary-red: #C62D42;
    --dark-charcoal: #2C2C2C;
    --herbal-green: #4A7C59;
    --natural-wood: #8B7355;
    --cream-white: #F8F6F0;
    
    /* Extended Palette */
    --accent-gold: #D4AF37;
    --soft-beige: #E8DFD0;
    --deep-burgundy: #8B0000;
    --forest-green: #2F4F2F;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary-red), var(--deep-burgundy));
    --gradient-secondary: linear-gradient(135deg, var(--dark-charcoal), #1a1a1a);
    --gradient-accent: linear-gradient(135deg, var(--herbal-green), var(--forest-green));
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    /* Typography */
    --font-primary: 'Montserrat', sans-serif;
    --font-display: 'Playfair Display', serif;
    
    /* Effects */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.2);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.3);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
}

/* ========== RESET & BASE ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    background: var(--cream-white);
    color: var(--dark-charcoal);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-normal);
}

ul {
    list-style: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

address {
    font-style: normal;
    line-height: 1.8;
    color: #666;
    font-size: 1rem;
    margin: 0;
    display: inline;
}

address strong {
    color: var(--dark-charcoal);
    font-weight: 600;
    display: inline;
    margin-bottom: 0;
}

address a {
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-normal);
}

address a:hover {
    color: var(--deep-burgundy);
    text-decoration: underline;
}

/* ========== LOADING SCREEN ========== */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #000000 0%, #2C2C2C 50%, #000000 100%); 
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loading-content {
    text-align: center;
    color: #fff;
}

.loading-logo {
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.loading-logo-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1rem;
    display: block;
    box-shadow: 0 10px 30px rgba(196, 45, 66, 0.5);
}

.loading-logo h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #C62D42;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    text-align: center;
}

.loading-spinner {
    margin: 2rem 0;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(196, 45, 66, 0.3);
    border-top: 4px solid #C62D42;
    border-radius: 50%;
    margin: 0 auto;
    animation: spin 1s linear infinite;
}

.loading-text {
    font-size: 1.1rem;
    color: #ccc;
    font-weight: 300;
}

/* Αρχικά κρύψε το περιεχόμενο μέχρι να φορτώσει */
body.loading {
    overflow: hidden;
}

body.loading .navbar,
body.loading .hero,
body.loading .stats-section,
body.loading .about-section,
body.loading .products-section,
body.loading .gallery-section,
body.loading .testimonials-section,
body.loading .contact-section,
body.loading .footer {
    visibility: hidden;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ========== ANNOUNCEMENT BANNER ========== */
.announcement-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--primary-red) 0%, #d63447 100%);
    color: #fff;
    padding: 0.75rem 1rem;
    z-index: 1100;
    box-shadow: 0 4px 20px rgba(198, 45, 66, 0.4);
    animation: slideDownBounce 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border-bottom: 2px solid var(--accent-gold);
    overflow: hidden;
}

/* Animated gradient background */
.announcement-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.1) 50%,
        transparent 70%
    );
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

@keyframes slideDownBounce {
    0% {
        transform: translateY(-100%);
        opacity: 0;
    }
    60% {
        transform: translateY(10px);
        opacity: 1;
    }
    80% {
        transform: translateY(-5px);
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.announcement-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.announcement-icon {
    font-size: 1.2rem;
    animation: pulseRotate 2s ease-in-out infinite;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

@keyframes pulseRotate {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
    25% {
        transform: scale(1.15) rotate(-10deg);
        opacity: 0.9;
    }
    50% {
        transform: scale(1.2) rotate(0deg);
        opacity: 0.85;
    }
    75% {
        transform: scale(1.15) rotate(10deg);
        opacity: 0.9;
    }
}

.announcement-content {
    flex: 1;
    text-align: center;
}

.announcement-text {
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.4;
    display: inline-block;
    animation: fadeInUp 0.8s ease-out 0.3s both;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Text highlight effect */
.announcement-text::selection {
    background: rgba(255, 255, 255, 0.3);
    color: #fff;
}

.announcement-close {
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    font-size: 1.2rem;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-normal);
    border-radius: 50%;
    width: 32px;
    height: 32px;
    animation: fadeIn 1s ease-out 0.5s both;
    position: relative;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.announcement-close::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0);
    transition: var(--transition-normal);
    transform: scale(0);
}

.announcement-close:hover::before {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1);
}

.announcement-close i {
    position: relative;
    z-index: 1;
    transition: var(--transition-normal);
}

.announcement-close:hover {
    transform: rotate(90deg) scale(1.1);
}

.announcement-close:hover i {
    animation: rotateClose 0.3s ease-out;
}

@keyframes rotateClose {
    0%, 100% {
        transform: rotate(0deg);
    }
    50% {
        transform: rotate(180deg);
    }
}

/* Adjust navbar and hero when announcement is visible */
body.has-announcement .navbar {
    top: 52px;
}

body.has-announcement .hero {
    margin-top: 52px;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .announcement-banner {
        padding: 0.5rem 0.75rem;
        z-index: 1100;
    }
    
    .announcement-container {
        gap: 0.5rem;
        padding: 0 0.75rem;
        flex-wrap: nowrap;
    }
    
    .announcement-icon {
        font-size: 0.9rem;
        flex-shrink: 0;
    }
    
    .announcement-text {
        font-size: 0.75rem;
        line-height: 1.3;
    }
    
    .announcement-close {
        width: 24px;
        height: 24px;
        font-size: 0.9rem;
        flex-shrink: 0;
    }
    
    body.has-announcement .navbar {
        top: 40px;
    }
    
    body.has-announcement .hero {
        margin-top: 40px;
    }
}

@media (max-width: 480px) {
    .announcement-banner {
        padding: 0.4rem 0.5rem;
    }
    
    .announcement-container {
        gap: 0.4rem;
        padding: 0 0.5rem;
    }
    
    .announcement-icon {
        font-size: 0.85rem;
    }
    
    .announcement-text {
        font-size: 0.7rem;
        line-height: 1.2;
    }
    
    .announcement-close {
        width: 22px;
        height: 22px;
        font-size: 0.85rem;
    }
    
    body.has-announcement .navbar {
        top: 36px;
    }
    
    body.has-announcement .hero {
        margin-top: 36px;
    }
}

/* ========== NAVIGATION ========== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(44, 44, 44, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
}

.navbar.scrolled {
    padding: 0.5rem 0;
    background: rgba(44, 44, 44, 0.98);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    position: relative;
}

/* Large screens - expand to use more space */
@media (min-width: 1400px) {
    .nav-container {
        max-width: 1600px;
        padding: 0 3rem;
    }
}

@media (min-width: 1600px) {
    .nav-container {
        max-width: 1800px;
        padding: 0 4rem;
    }
}

@media (min-width: 1920px) {
    .nav-container {
        max-width: 2000px;
        padding: 0 5rem;
    }
}

/* Mobile - ensure proper spacing */
@media (max-width: 768px) {
    .nav-container {
        gap: 0.75rem;
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .nav-container {
        gap: 0.5rem;
        padding: 0 0.75rem;
    }
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
    min-width: 0;
}

.nav-logo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    flex-shrink: 0;
}

.nav-logo:hover {
    transform: scale(1.1) rotate(5deg);
}

.brand-text {
    min-width: 0;
    flex: 1;
}

.brand-text h1 {
    color: #fff;
    font-size: 1.3rem;
    font-weight: 700;
    font-family: var(--font-display);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.brand-tagline {
    color: var(--accent-gold);
    font-size: 0.8rem;
    font-style: italic;
}

.nav-menu {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

/* Responsive nav menu spacing */
@media (min-width: 1400px) {
    .nav-menu {
        gap: 2rem;
    }
}

@media (min-width: 1600px) {
    .nav-menu {
        gap: 2.5rem;
    }
}

@media (min-width: 1920px) {
    .nav-menu {
        gap: 3rem;
    }
}

.nav-link {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding: 0.5rem 0;
    transition: var(--transition-normal);
    white-space: nowrap;
}

/* Larger fonts on big screens */
@media (min-width: 1400px) {
    .nav-link {
        font-size: 1rem;
    }
}

@media (min-width: 1600px) {
    .nav-link {
        font-size: 1.05rem;
    }
}

@media (min-width: 1920px) {
    .nav-link {
        font-size: 1.1rem;
    }
}

.nav-link i {
    margin-right: 0.5rem;
    font-size: 0.9rem;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width var(--transition-normal);
}

.nav-link:hover,
.nav-link.active {
    color: #fff;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.store-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #51cf66;
    animation: statusPulse 2s ease-in-out infinite;
    flex-shrink: 0;
}

.status-text {
    color: #fff;
    font-size: 0.85rem;
    font-weight: 500;
}

@keyframes statusPulse {
    0%, 100% { 
        transform: scale(1); 
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(81, 207, 102, 0.7);
    }
    50% { 
        transform: scale(1.2); 
        opacity: 0.8;
        box-shadow: 0 0 0 8px rgba(81, 207, 102, 0);
    }
}

.nav-cta {
    padding: 0.75rem 1.5rem;
    background: var(--gradient-primary);
    color: #fff;
    border-radius: var(--radius-xl);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-md);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.nav-cta i {
    margin-right: 0.5rem;
    display: inline-block;
    animation: phoneRing 2s ease-in-out infinite;
}

/* Language Switcher */
.language-switcher {
    position: relative;
    margin-right: 0.5rem;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.8rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    color: #fff;
    cursor: pointer;
    transition: var(--transition-normal);
    font-size: 0.8rem;
    font-weight: 600;
}

.lang-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.lang-btn i:first-child {
    font-size: 0.85rem;
}

.current-lang {
    font-weight: 700;
    letter-spacing: 0.3px;
    font-size: 0.75rem;
}

.lang-btn .fa-chevron-down {
    font-size: 0.65rem;
    transition: transform 0.3s ease;
}

.lang-btn.active .fa-chevron-down {
    transform: rotate(180deg);
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: rgba(44, 44, 44, 0.98);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    min-width: 200px;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    overflow: hidden;
}

.lang-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.lang-option:last-child {
    border-bottom: none;
}

.lang-option:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.lang-option.active {
    background: rgba(198, 45, 66, 0.2);
    color: #fff;
    border-left: 3px solid var(--color-primary);
}

.lang-option .flag {
    font-size: 1.5rem;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 30px;
    height: 30px;
}

.hamburger span {
    width: 100%;
    height: 3px;
    background: #fff;
    border-radius: 2px;
    transition: var(--transition-normal);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* ========== HERO SECTION ========== */
.hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 80px;
}

body.has-announcement .hero {
    margin-top: calc(80px + 52px);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(198, 45, 66, 0.7), 
        rgba(44, 44, 44, 0.8)
    );
    z-index: 1;
}

.hero-video,
.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    max-width: 900px;
    padding: 0 2rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-xl);
    margin-bottom: 2rem;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-badge i {
    color: var(--accent-gold);
    font-size: 1.2rem;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.gradient-text {
    background: linear-gradient(135deg, var(--accent-gold), #FFD700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 300;
    margin-bottom: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero-description {
    font-size: clamp(1rem, 2vw, 1.2rem);
    line-height: 1.8;
    margin-bottom: 3rem;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    padding: 1rem 2.5rem;
    border-radius: var(--radius-xl);
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-md);
}

.btn-primary {
    background: var(--gradient-primary);
    color: #fff;
    position: relative;
    overflow: hidden;
    animation: btnPulse 2s ease-in-out infinite;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    animation: none;
}

@keyframes btnPulse {
    0%, 100% {
        box-shadow: var(--shadow-md), 0 0 0 0 rgba(198, 45, 66, 0.4);
    }
    50% {
        box-shadow: var(--shadow-md), 0 0 0 10px rgba(198, 45, 66, 0);
    }
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
}

.hero-features {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-xl);
    font-size: 0.95rem;
    font-weight: 500;
}

.hero-feature i {
    color: var(--accent-gold);
    font-size: 1.2rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 500;
    animation: bounce 2s ease-in-out infinite;
}

.mouse {
    width: 25px;
    height: 40px;
    border: 2px solid #fff;
    border-radius: 15px;
    position: relative;
}

.mouse::before {
    content: '';
    width: 4px;
    height: 8px;
    background: #fff;
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: mouseScroll 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

@keyframes mouseScroll {
    0% { opacity: 1; top: 8px; }
    100% { opacity: 0; top: 20px; }
}

/* ========== CONTAINER & SECTIONS ========== */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: var(--spacing-xl) 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.section-subtitle {
    display: inline-block;
    color: var(--primary-red);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--dark-charcoal);
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ========== STATS SECTION ========== */
.stats-section {
    background: var(--gradient-secondary);
    padding: var(--spacing-lg) 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.stat-card {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    transition: var(--transition-normal);
}

.stat-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
}

.stat-icon {
    font-size: 3rem;
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: #fff;
    font-family: var(--font-display);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    font-weight: 500;
}

/* ========== ABOUT SECTION ========== */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-story h3,
.about-values h3 {
    font-size: 1.8rem;
    font-family: var(--font-display);
    color: var(--dark-charcoal);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.about-story h3 i,
.about-values h3 i {
    color: var(--primary-red);
}

.about-story p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 2rem;
}

.values-list {
    list-style: none;
    margin-bottom: 2rem;
}

.values-list li {
    font-size: 1.05rem;
    padding: 0.7rem 0;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #555;
}

.values-list li i {
    color: var(--herbal-green);
    font-size: 1.2rem;
}

.about-image-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 1rem;
}

.about-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.about-image.main-image {
    grid-row: span 2;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.about-image:hover img {
    transform: scale(1.1);
}

.image-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.7rem 1.2rem;
    background: var(--gradient-primary);
    color: #fff;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: var(--shadow-md);
}

.about-quote {
    margin-top: 2rem;
    padding: 2rem;
    background: var(--gradient-accent);
    color: #fff;
    border-radius: var(--radius-lg);
    position: relative;
}

.about-quote i {
    font-size: 2rem;
    opacity: 0.3;
    position: absolute;
    top: 1rem;
    left: 1rem;
}

.about-quote p {
    font-size: 1.2rem;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 0.5rem;
    padding-left: 2rem;
}

.about-quote span {
    display: block;
    text-align: right;
    font-weight: 600;
    font-size: 0.95rem;
}

/* ========== PRODUCTS SECTION ========== */
.products-section {
    background: linear-gradient(180deg, var(--cream-white) 0%, var(--soft-beige) 100%);
}

.products-filter {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.8rem 2rem;
    background: #fff;
    color: var(--dark-charcoal);
    border: 2px solid var(--primary-red);
    border-radius: var(--radius-xl);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition-normal);
    cursor: pointer;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--gradient-primary);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
}

.product-card {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.product-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.product-card:hover .product-image img {
    transform: scale(1.15);
}

.product-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.5rem 1rem;
    background: var(--herbal-green);
    color: #fff;
    border-radius: var(--radius-md);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-badge.special {
    background: var(--accent-gold);
}

.product-badge.seasonal {
    background: var(--primary-red);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-normal);
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-quick-view {
    width: 50px;
    height: 50px;
    background: #fff;
    color: var(--primary-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: var(--transition-normal);
}

.product-quick-view:hover {
    background: var(--primary-red);
    color: #fff;
    transform: scale(1.1);
}

.product-content {
    padding: 1.5rem;
}

.product-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark-charcoal);
    margin-bottom: 0.5rem;
}

.product-description {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.product-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-red);
    font-family: var(--font-display);
}

.btn-order {
    padding: 0.7rem 1.5rem;
    background: var(--gradient-accent);
    color: #fff;
    border-radius: var(--radius-xl);
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition-normal);
}

.btn-order:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-md);
}

/* Button Large Size */
.btn-lg {
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    gap: 1rem;
    animation: btnPulse 2s ease-in-out infinite;
}

.btn-lg i:last-child {
    transition: transform 0.3s ease;
}

.btn-lg:hover i:last-child {
    transform: translateX(5px);
}

/* Products CTA */
.products-cta {
    animation: fadeInUp 0.8s ease-out;
}

/* ========== GALLERY SECTION ========== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    height: 300px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-md);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.gallery-item:hover img {
    transform: scale(1.2);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(198, 45, 65, 0.35), rgba(198, 45, 66, 0.65));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    transition: var(--transition-normal);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    color: #fff;
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: zoomIn 0.5s ease-out;
}

.gallery-title {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
    line-height: 1.5;
    margin-top: 1rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.5s ease-out 0.2s forwards;
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.5);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========== TESTIMONIALS SECTION ========== */
.testimonials-section {
    background: var(--gradient-secondary);
    color: #fff;
}

.testimonials-section .section-subtitle {
    color: var(--accent-gold);
}

.testimonials-section .section-title {
    color: #fff;
}

.testimonials-section .section-description {
    color: rgba(255, 255, 255, 0.8);
}

.google-reviews {
    text-align: center;
}

/* ========== CONTACT SECTION ========== */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

.info-card:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-lg);
}

.info-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    color: #fff;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.info-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark-charcoal);
    margin-bottom: 0.5rem;
}

.info-content p {
    color: #666;
    line-height: 1.6;
}

.info-content a {
    color: var(--primary-red);
    font-weight: 500;
}

.info-content a:hover {
    text-decoration: underline;
}

.social-links h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark-charcoal);
    margin-bottom: 1rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: var(--gradient-secondary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: var(--transition-normal);
}

.social-icon:hover {
    transform: translateY(-5px) scale(1.1);
}

.social-icon.facebook:hover {
    background: #1877F2;
}

.social-icon.instagram:hover {
    background: linear-gradient(45deg, #F58529, #DD2A7B, #8134AF);
}

.social-icon.twitter:hover {
    background: #1DA1F2;
}

.social-icon.youtube:hover {
    background: #FF0000;
}

/* ========== INSTAGRAM FEED ========== */
.instagram-feed-wrapper {
    background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
}

.instagram-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #e0e0e0;
}

.instagram-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #fff;
    box-shadow: 0 10px 30px rgba(188, 24, 136, 0.3);
}

.instagram-title h3 {
    font-size: 1.8rem;
    margin: 0 0 0.3rem 0;
    color: var(--text-dark);
    font-weight: 700;
}

.instagram-handle {
    font-size: 1rem;
    color: #666;
    margin: 0;
}

.instagram-handle::before {
    content: "📸 ";
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.instagram-post {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
    transition: var(--transition-normal);
}

.instagram-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.instagram-post-image {
    position: relative;
    width: 100%;
    height: 100%;
}

.instagram-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.instagram-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(240, 148, 51, 0.9) 0%, rgba(188, 24, 136, 0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-normal);
}

.instagram-post:hover .instagram-overlay {
    opacity: 1;
}

.instagram-stats {
    display: flex;
    gap: 2rem;
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
}

.instagram-stats span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.instagram-stats i {
    font-size: 1.4rem;
}

.instagram-cta {
    text-align: center;
}

.btn-instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #fff;
    padding: 1rem 2.5rem;
    border-radius: var(--radius-full);
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    transition: var(--transition-normal);
    box-shadow: 0 10px 30px rgba(188, 24, 136, 0.3);
}

.btn-instagram:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(188, 24, 136, 0.4);
}

.btn-instagram i {
    font-size: 1.3rem;
}

/* Responsive Instagram Grid */
@media (max-width: 768px) {
    .instagram-feed-wrapper {
        padding: 1.5rem;
    }
    
    .instagram-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .instagram-icon {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
    }
    
    .instagram-title h3 {
        font-size: 1.5rem;
    }
    
    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    .instagram-stats {
        gap: 1rem;
        font-size: 1rem;
    }
    
    .btn-instagram {
        padding: 0.9rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }
    
    .instagram-stats {
        gap: 0.75rem;
        font-size: 0.9rem;
    }
    
    .instagram-stats i {
        font-size: 1.1rem;
    }
}

.map-container {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.map-container iframe {
    display: block;
}

/* ========== FOOTER ========== */
.footer {
    background: var(--gradient-secondary);
    color: #fff;
    padding: var(--spacing-lg) 0 var(--spacing-md);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.footer-brand img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.footer-brand h3 {
    font-size: 1.3rem;
    font-family: var(--font-display);
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-normal);
}

.footer-social a:hover {
    background: var(--primary-red);
    transform: translateY(-3px);
}

.footer-column h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition-normal);
}

.footer-links a:hover {
    color: #fff;
    padding-left: 0.5rem;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact i {
    color: var(--accent-gold);
    margin-top: 0.3rem;
    flex-shrink: 0;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-bottom-links a:hover {
    color: #fff;
}

/* ========== SCROLL TO TOP ========== */
.scroll-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
    z-index: 999;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    transform: translateY(-5px);
}

/* ========== MODAL ========== */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 1rem;
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: linear-gradient(135deg, #ffffff 0%, #f9f9f9 100%);
    border-radius: 25px;
    padding: 3.5rem 3rem;
    max-width: 550px;
    width: 100%;
    position: relative;
    transform: scale(0.85) translateY(-20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3), 
                0 0 0 1px rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

/* Decorative background pattern */
.modal-content::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(220, 38, 38, 0.03) 0%, transparent 70%);
    pointer-events: none;
    animation: modalBgRotate 20s linear infinite;
}

@keyframes modalBgRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.modal.active .modal-content {
    transform: scale(1) translateY(0);
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 42px;
    height: 42px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
    z-index: 10;
    border: 2px solid transparent;
}

.modal-close:hover {
    background: var(--primary-red);
    color: #fff;
    transform: rotate(90deg) scale(1.1);
    border-color: var(--primary-red);
    box-shadow: 0 5px 15px rgba(220, 38, 38, 0.3);
}

.modal-close i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.modal-header {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.modal-header i {
    font-size: 4rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.2rem;
    display: inline-block;
    animation: modalIconPulse 2s ease-in-out infinite;
}

@keyframes modalIconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.modal-header h2 {
    font-size: 2.2rem;
    font-family: var(--font-display);
    color: var(--dark-charcoal);
    margin-bottom: 0.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.modal-body {
    position: relative;
    z-index: 2;
}

.modal-body p {
    text-align: center;
    font-size: 1.15rem;
    color: #666;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    font-weight: 500;
}

.modal-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.modal-buttons .btn {
    flex: 1;
    min-width: 200px;
    padding: 1.2rem 2rem;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.modal-buttons .btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.modal-buttons .btn:hover::before {
    width: 300px;
    height: 300px;
}

.modal-buttons .btn i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.modal-buttons .btn:hover i {
    transform: scale(1.15);
}

.modal-buttons .btn-primary {
    background: var(--gradient-primary);
    box-shadow: 0 8px 20px rgba(220, 38, 38, 0.25);
}

.modal-buttons .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(220, 38, 38, 0.35);
}

/* Modal Alternative Button */
.btn-modal-alt {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white !important;
    border: 2px solid transparent;
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.25);
}

.btn-modal-alt:hover {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(102, 126, 234, 0.35);
}

/* ========== LIGHTBOX ========== */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    flex-direction: column;
}

.lightbox.active {
    display: flex;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: var(--transition-normal);
}

.lightbox-close {
    top: 2rem;
    right: 2rem;
}

.lightbox-prev {
    left: 2rem;
}

.lightbox-next {
    right: 2rem;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--primary-red);
}

#lightboxImage {
    max-width: 90%;
    max-height: 80vh;
    border-radius: var(--radius-lg);
    transition: opacity 0.3s ease;
}

.lightbox-caption {
    color: #fff;
    background: rgba(0, 0, 0, 0.7);
    padding: 1rem 2rem;
    border-radius: var(--radius-md);
    margin-top: 1.5rem;
    max-width: 90%;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.6;
    backdrop-filter: blur(10px);
    transition: opacity 0.3s ease;
}

@media (max-width: 768px) {
    .lightbox-caption {
        font-size: 0.9rem;
        padding: 0.8rem 1.5rem;
        margin-top: 1rem;
    }
    
    #lightboxImage {
        max-height: 70vh;
    }
}

/* ========== ANIMATIONS ========== */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* ========== RESPONSIVE ========== */

/* Tablet Landscape & Medium Desktops */
@media (min-width: 992px) and (max-width: 1199px) {
    .nav-container {
        max-width: 100%;
        padding: 0 2.5rem;
    }
    
    .nav-menu {
        gap: 1.5rem;
    }
    
    .nav-link {
        font-size: 0.9rem;
    }
}

/* Tablet Portrait */
@media (min-width: 768px) and (max-width: 991px) {
    .nav-container {
        padding: 0 2rem;
    }
    
    .nav-menu {
        gap: 1.2rem;
    }
    
    .nav-link {
        font-size: 0.85rem;
        padding: 0.4rem 0;
    }
    
    .brand-text h1 {
        font-size: 1.1rem;
    }
    
    .brand-tagline {
        font-size: 0.7rem;
    }
}

/* Standard Breakpoints */
@media (max-width: 1200px) {
    .nav-menu {
        gap: 1.5rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
}

@media (max-width: 992px) {
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-image-grid {
        grid-template-columns: 1fr;
    }
    
    .about-image.main-image {
        grid-row: span 1;
    }
    
    /* Hide the two smaller about images on mobile/tablet */
    .about-image:not(.main-image) {
        display: none;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 14px;
    }
    
    .navbar {
        padding: 0.75rem 0;
    }
    
    .nav-container {
        padding: 0 1rem;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 65px;
        left: 0;
        width: 100%;
        height: calc(100vh - 65px);
        background: rgba(44, 44, 44, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 2rem 1.5rem;
        gap: 0;
        transform: translateX(-100%);
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        overflow-y: auto;
        overscroll-behavior: contain;
        z-index: 999;
    }
    
    body.has-announcement .nav-menu {
        top: calc(65px + 40px);
        height: calc(100vh - 65px - 40px);
    }
    
    .nav-menu.active {
        transform: translateX(0);
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    }
    
    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        animation: slideInLeft 0.3s ease forwards;
        opacity: 0;
    }
    
    /* Stagger animation for menu items */
    .nav-menu.active li:nth-child(1) { animation-delay: 0.1s; }
    .nav-menu.active li:nth-child(2) { animation-delay: 0.15s; }
    .nav-menu.active li:nth-child(3) { animation-delay: 0.2s; }
    .nav-menu.active li:nth-child(4) { animation-delay: 0.25s; }
    .nav-menu.active li:nth-child(5) { animation-delay: 0.3s; }
    .nav-menu.active li:nth-child(6) { animation-delay: 0.35s; }
    
    @keyframes slideInLeft {
        from {
            opacity: 0;
            transform: translateX(-20px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }
    
    .nav-link {
        display: block;
        padding: 1.2rem 0;
        font-size: 1.1rem;
        width: 100%;
    }
    
    .nav-link:hover {
        background: rgba(255, 255, 255, 0.05);
        padding-left: 1rem;
    }
    
    .nav-actions {
        display: flex;
        flex-wrap: nowrap;
        align-items: center;
        gap: 0.5rem;
        justify-content: flex-end;
    }
    
    /* Language Switcher on Mobile */
    .language-switcher {
        margin-right: 0;
        order: 1;
        flex: 0 0 auto;
    }
    
    .lang-btn {
        padding: 0.35rem 0.6rem;
        font-size: 0.75rem;
        gap: 0.3rem;
    }
    
    .lang-btn i:first-child {
        font-size: 0.75rem;
    }
    
    .current-lang {
        font-size: 0.7rem;
    }
    
    .lang-btn .fa-chevron-down {
        font-size: 0.6rem;
    }
    
    .lang-dropdown {
        right: 0;
        min-width: 180px;
        z-index: 1200;
    }
    
    .store-status {
        order: 2;
        flex: 1 1 auto;
        justify-content: center;
        padding: 0.35rem 0.7rem;
        font-size: 0.75rem;
    }
    
    .status-dot {
        width: 6px;
        height: 6px;
    }
    
    .status-text {
        font-size: 0.7rem;
    }
    
    .nav-cta {
        display: none; /* Hide on mobile for better space management */
    }
    
    .hamburger {
        order: 3;
        margin-left: 0.5rem;
    }
    
    .hero {
        margin-top: 65px;
        min-height: 70vh;
    }
    
    body.has-announcement .hero {
        margin-top: calc(65px + 40px);
    }
    
    section {
        padding: var(--spacing-lg) 0;
    }
    
    .container {
        padding: 0 1.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .scroll-indicator {
        display: none; /* Hide on mobile to prevent overlap */
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    /* Modal - Tablet Optimization */
    .modal-content {
        padding: 3rem 2rem;
        max-width: 500px;
        border-radius: 20px;
    }
    
    .modal-header h2 {
        font-size: 2rem;
    }
    
    .modal-header i {
        font-size: 3.5rem;
    }
    
    .modal-body p {
        font-size: 1.05rem;
    }
    
    .modal-buttons {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .modal-buttons .btn {
        min-width: 100%;
        padding: 1.1rem 1.5rem;
        font-size: 1rem;
    }
    
    .lightbox-prev {
        left: 1rem;
    }
    
    .lightbox-next {
        right: 1rem;
    }
    
    /* Floating Order Button - smaller for tablets */
    .floating-order-btn {
        bottom: 80px;
        right: 20px;
    }
    
    .order-btn {
        padding: 0.8rem 1.2rem;
        gap: 0.6rem;
        font-size: 0.9rem;
    }
    
    .order-btn i {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    /* Extra small screens - compact navigation */
    .nav-container {
        padding: 0 0.75rem;
    }
    
    .navbar {
        padding: 0.5rem 0;
    }
    
    .nav-logo {
        width: 35px;
        height: 35px;
    }
    
    .brand-text h1 {
        font-size: 0.9rem;
    }
    
    .brand-tagline {
        font-size: 0.6rem;
    }
    
    .nav-menu {
        padding: 1.5rem 1rem;
        top: 55px;
        height: calc(100vh - 55px);
    }
    
    body.has-announcement .nav-menu {
        top: calc(55px + 36px);
        height: calc(100vh - 55px - 36px);
    }
    
    .nav-link {
        font-size: 1rem;
        padding: 1rem 0;
    }
    
    .lang-btn {
        padding: 0.3rem 0.5rem;
        font-size: 0.7rem;
    }
    
    .store-status {
        padding: 0.3rem 0.5rem;
        font-size: 0.7rem;
    }
    
    .status-dot {
        width: 5px;
        height: 5px;
    }
    
    .status-text {
        font-size: 0.65rem;
    }
    
    .nav-cta {
        padding: 0.5rem 0.8rem;
        font-size: 0.7rem;
    }
    
    .hamburger {
        width: 30px;
        height: 30px;
    }
    
    .hamburger span {
        height: 2px;
    }
    
    .hero {
        margin-top: 55px;
        min-height: 60vh;
    }
    
    body.has-announcement .hero {
        margin-top: calc(55px + 36px);
    }
    
    .hero-features {
        flex-direction: column;
        align-items: stretch;
    }
    
    .hero-feature {
        justify-content: center;
    }
    
    .products-filter {
        flex-direction: column;
    }
    
    .filter-btn {
        width: 100%;
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }
    
    /* Mobile Product Cards - Optimized for 2 columns */
    .product-card {
        box-shadow: var(--shadow-sm);
    }
    
    .product-image {
        height: 160px;
    }
    
    .product-badge {
        top: 0.5rem;
        left: 0.5rem;
        padding: 0.3rem 0.6rem;
        font-size: 0.7rem;
    }
    
    .product-content {
        padding: 1rem;
    }
    
    .product-title {
        font-size: 1rem;
        margin-bottom: 0.4rem;
    }
    
    .product-description {
        font-size: 0.8rem;
        margin-bottom: 1rem;
        line-height: 1.4;
    }
    
    .product-price {
        font-size: 1.1rem;
    }
    
    .btn-order {
        padding: 0.5rem 0.8rem;
        font-size: 0.75rem;
        gap: 0.3rem;
    }
    
    .btn-order i {
        font-size: 0.8rem;
    }
    
    /* Floating Order Button - even smaller for mobile */
    .floating-order-btn {
        bottom: 70px;
        right: 15px;
    }
    
    .order-btn {
        padding: 0.6rem 1rem;
        gap: 0.5rem;
        font-size: 0.85rem;
    }
    
    .order-btn i {
        font-size: 0.9rem;
    }
    
    .order-text {
        font-size: 0.85rem;
    }
    
    /* Modal - Mobile Optimization */
    .modal {
        padding: 0.5rem;
    }
    
    .modal-content {
        padding: 2.5rem 1.5rem;
        max-width: 100%;
        border-radius: 20px;
    }
    
    .modal-close {
        top: 1rem;
        right: 1rem;
        width: 38px;
        height: 38px;
    }
    
    .modal-header h2 {
        font-size: 1.6rem;
    }
    
    .modal-header i {
        font-size: 3rem;
        margin-bottom: 1rem;
    }
    
    .modal-body p {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }
    
    .modal-buttons {
        gap: 0.75rem;
    }
    
    .modal-buttons .btn {
        padding: 1rem 1.2rem;
        font-size: 0.95rem;
        gap: 0.6rem;
    }
    
    .modal-buttons .btn i {
        font-size: 1.1rem;
    }
}


/* Reviews Section */
.reviews {
    padding: 120px 0;
    background: linear-gradient(135deg, #FAFAFA 0%, #F5F5F5 50%, #FAFAFA 100%);
    position: relative;
    overflow: hidden;
}

.reviews::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="reviewPattern" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%234285f4" opacity="0.1"/><path d="M25 15 L30 20 L25 25 L20 20 Z" fill="%23fbbc04" opacity="0.08"/></pattern></defs><rect width="100" height="100" fill="url(%23reviewPattern)"/></svg>');
    opacity: 0.3;
}

.reviews-content {
    position: relative;
    z-index: 2;
}

.google-rating {
    background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(255,255,255,0.7));
    padding: 3rem;
    border-radius: 25px;
    text-align: center;
    margin-bottom: 4rem;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    border: 2px solid rgba(66, 133, 244, 0.1);
    backdrop-filter: blur(10px);
}

.rating-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.rating-header i.fab.fa-google {
    font-size: 2.5rem;
    color: #4285f4;
    background: linear-gradient(45deg, #4285f4, #34a853, #fbbc04, #ea4335);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease-in-out infinite;
}

.rating-header h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin: 0;
}

.rating-stars {
    display: flex;
    gap: 0.3rem;
}

.rating-stars i,
.review-stars i {
    color: #fbbc04;
    font-size: 1.5rem;
    text-shadow: 0 2px 4px rgba(251, 188, 4, 0.3);
    animation: starTwinkle 2s ease-in-out infinite;
}

.review-stars i {
    font-size: 1rem;
}

@keyframes starTwinkle {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.rating-score {
    font-size: 1.8rem;
    font-weight: 700;
    color: #4285f4;
    background: linear-gradient(45deg, #4285f4, #34a853);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.rating-description {
    color: #666;
    font-size: 1.1rem;
    font-weight: 500;
    margin-top: 0.5rem;
}

.reviews-grid {
    display: flex;
    gap: 2.5rem;
    margin-bottom: 4rem;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.reviews-carousel {
    display: flex;
    gap: 2.5rem;
    animation: slideLeft 20s linear infinite;
    width: max-content;
}

@keyframes slideLeft {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.reviews-carousel:hover {
    animation-play-state: paused;
}

.review-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(255,255,255,0.85));
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(66, 133, 244, 0.1);
    min-width: 350px;
    max-width: 350px;
    flex-shrink: 0;
}

.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(66, 133, 244, 0.1), transparent);
    transition: left 0.6s ease;
}

.review-card:hover::before {
    left: 100%;
}

.review-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    border-color: #4285f4;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    gap: 1rem;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #4285f4, #34a853);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.reviewer-details h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.3rem;
}

.review-date {
    color: #888;
    font-size: 0.9rem;
    font-weight: 500;
}

.review-content {
    position: relative;
}

.review-content::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: -10px;
    font-size: 4rem;
    color: rgba(66, 133, 244, 0.2);
    font-family: Georgia, serif;
    font-weight: bold;
}

.review-content p {
    color: #555;
    line-height: 1.7;
    font-size: 1rem;
    font-style: italic;
    position: relative;
    z-index: 2;
}

.google-link {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.google-reviews-button {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 2.5rem;
    background: linear-gradient(135deg, #4285f4, #34a853);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(66, 133, 244, 0.3);
    position: relative;
    overflow: hidden;
}

.google-reviews-button::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;
}

.google-reviews-button:hover::before {
    left: 100%;
}

.google-reviews-button:hover {
    background: linear-gradient(135deg, #3367d6, #2d8f47);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(66, 133, 244, 0.4);
}

.google-reviews-button i {
    font-size: 1.3rem;
}

/* Secondary link for viewing all reviews */
.google-reviews-link {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 2rem;
    background: transparent;
    color: #4285f4;
    text-decoration: none;
    border: 2px solid #4285f4;
    border-radius: 50px;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.google-reviews-link:hover {
    background: #4285f4;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(66, 133, 244, 0.3);
}

.google-reviews-link i {
    font-size: 1.1rem;
}

/* Floating Order Button */
.floating-order-btn {
    position: fixed;
    bottom: 100px;
    right: 30px;
    z-index: 1000;
    animation: floatBounce 3s ease-in-out infinite;
}

.order-btn {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, #66bb6a, #4caf50);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(102, 187, 106, 0.4);
    transition: all 0.3s ease;
    font-weight: 700;
    font-size: 1rem;
    border: 2px solid transparent;
    backdrop-filter: blur(10px);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.order-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(102, 187, 106, 0.6);
    background: linear-gradient(135deg, #4caf50, #388e3c);
    border-color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}

.order-btn i {
    font-size: 1.2rem;
    animation: phoneRing 2s ease-in-out infinite;
    color: #f44336;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.order-text {
    white-space: nowrap;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    color: #ffffff;
    font-weight: 800;
    letter-spacing: 0.5px;
}

@keyframes floatBounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0px);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@keyframes phoneRing {
    0%, 10%, 20% {
        transform: rotate(0deg);
    }
    5%, 15% {
        transform: rotate(10deg);
    }
    25%, 35%, 45% {
        transform: rotate(0deg);
    }
    30%, 40% {
        transform: rotate(-10deg);
    }
    50%, 100% {
        transform: rotate(0deg);
    }
}

.developer-signature {
    /* cursor: url('img/dev-icon.svg') 5 5, auto; */
    font-size: 0.8rem;
    opacity: 0.7;
    margin-top: 5px;
    transition: opacity 0.3s ease;
    position: relative;
    display: inline-block;
    color: #fff;
}

.developer-signature:hover {
    opacity: 1;
    animation-duration: 1.5s;
}

@keyframes shineText {
    0% {
        background-position: -200% 0;
    }
    50% {
        background-position: 200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

.dev-link {
    /* cursor: url('img/dev-icon.svg') 5 5, auto;  */
    color: #fff !important;
    text-decoration: none;
    position: relative;
    font-weight: 600;
    background: linear-gradient(
        90deg,
        #999 0%,
        #999 40%,
        #fff 50%,
        #999 60%,
        #999 100%
    );
    background-size: 200% 100%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shineText 3s ease-in-out infinite;
}

.dev-link:hover {
    animation-duration: 1.5s;
}

.dev-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background: rgba(255, 255, 255, 0.6);
    transition: width 0.3s ease;
}

.dev-link:hover::after {
    width: 100%;
}

/* Developer Signature Icon Animation */
.developer-signature i {
    display: inline-block;
    color: inherit;
    animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.7;
    }
    50% {
        transform: scale(1.1);
        opacity: 1;
    }
}

.developer-signature:hover i {
    animation-duration: 0.8s;
}

/* ========== iOS & SAFARI SPECIFIC FIXES ========== */
/* Fix for iOS/Safari sticky positioning and viewport height */
@supports (-webkit-touch-callout: none) {
    .navbar {
        position: -webkit-sticky;
        position: sticky;
    }
    
    .announcement-banner {
        position: -webkit-sticky;
        position: sticky;
    }
    
    .hero {
        min-height: 60vh;
        min-height: -webkit-fill-available;
    }
    
    /* Fix for iOS Safari bottom bar overlapping content */
    @media (max-width: 768px) {
        .nav-menu {
            height: calc(100vh - 65px);
            height: -webkit-fill-available;
            padding-bottom: env(safe-area-inset-bottom, 0);
        }
        
        body.has-announcement .nav-menu {
            height: calc(100vh - 65px - 40px);
            height: -webkit-fill-available;
        }
    }
    
    @media (max-width: 480px) {
        .nav-menu {
            height: calc(100vh - 55px);
            height: -webkit-fill-available;
        }
        
        body.has-announcement .nav-menu {
            height: calc(100vh - 55px - 36px);
            height: -webkit-fill-available;
        }
    }
}

/* Prevent text size adjustment on orientation change in iOS */
html {
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

/* Fix for iOS momentum scrolling */
.nav-menu {
    -webkit-overflow-scrolling: touch;
}

/* Prevent zoom on input focus in iOS */
@media (max-width: 768px) {
    input, select, textarea {
        font-size: 16px !important;
    }
}