/* ===== Reset & Base Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors */
    --primary-yellow: #dc9814;
    --yellow-hover: #f0a91c;
    --dark-bg: #0a0a0a;
    --dark-card: #151515;
    --dark-hover: #1f1f1f;
    --text-primary: #ffffff;
    --text-secondary: #a8a8a8;
    --text-muted: #6b6b6b;

    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Spacing */
    --section-padding: 120px;
    --container-padding: 20px;

    /* Effects */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
    --glow-yellow: 0 0 30px rgba(220, 152, 20, 0.3);

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: var(--font-primary);
    background-color: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.7;
    font-size: 16px;
    overflow-x: hidden;
    width: 100%;
    min-height: 100vh;
    position: relative;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* ===== Navigation ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-normal);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px var(--container-padding);
}

.nav-logo {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.logo-text {
    color: #ffffff;
    font-weight: 700;
}

.logo-domain {
    color: #ff9900;
    font-weight: 700;
}

.nav-links {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    position: relative;
    transition: var(--transition-fast);
    letter-spacing: 0.3px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-yellow);
    transition: var(--transition-normal);
}

.nav-link:hover {
    color: var(--text-primary);
}

.nav-link:hover::after {
    width: 100%;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition-normal);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 69px;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(10px);
    padding: 30px 20px;
    flex-direction: column;
    gap: 20px;
    z-index: 999;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transform: translateY(-100%);
    opacity: 0;
    transition: all var(--transition-normal);
}

.mobile-menu.active {
    transform: translateY(0);
    opacity: 1;
}

.mobile-nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    transition: var(--transition-fast);
}

.mobile-nav-link:hover {
    color: var(--primary-yellow);
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(220, 152, 20, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(220, 152, 20, 0.05) 0%, transparent 50%),
        linear-gradient(180deg, var(--dark-bg) 0%, #000000 100%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255,255,255,0.01) 2px, rgba(255,255,255,0.01) 4px);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 140px 20px 80px;
    text-align: center;
}

.hero-title {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 30px;
}

.hero-title-main {
    font-size: clamp(48px, 8vw, 96px);
    font-weight: 900;
    letter-spacing: -3px;
    line-height: 1;
    background: linear-gradient(135deg, #ffffff 0%, #a8a8a8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-title-sub {
    font-size: clamp(40px, 7vw, 80px);
    font-weight: 900;
    letter-spacing: -2px;
    line-height: 1;
    background: linear-gradient(135deg, var(--primary-yellow) 0%, var(--yellow-hover) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: glow 3s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.2); }
}

.hero-description {
    font-size: clamp(16px, 2vw, 20px);
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 50px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 40px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all var(--transition-normal);
    cursor: pointer;
    border: none;
    letter-spacing: 0.3px;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-yellow) 0%, var(--yellow-hover) 100%);
    color: #000;
    box-shadow: 0 4px 20px rgba(220, 152, 20, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(220, 152, 20, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    border-color: var(--primary-yellow);
    color: var(--primary-yellow);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: bounce 2s infinite;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, var(--text-muted) 0%, transparent 100%);
}

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

/* ===== Section Styles ===== */
.section {
    padding: var(--section-padding) 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-tag {
    display: inline-block;
    color: var(--primary-yellow);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.section-title {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-description {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ===== About Section ===== */
.about {
    background: linear-gradient(180deg, var(--dark-bg) 0%, var(--dark-card) 100%);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.about-card {
    background: var(--dark-card);
    padding: 50px 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-yellow), var(--yellow-hover));
    transform: scaleX(0);
    transition: var(--transition-normal);
}

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

.about-card:hover {
    transform: translateY(-10px);
    border-color: rgba(220, 152, 20, 0.3);
    box-shadow: var(--glow-yellow);
}

.about-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(220, 152, 20, 0.1) 0%, rgba(220, 152, 20, 0.05) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.about-icon svg {
    width: 35px;
    height: 35px;
    color: var(--primary-yellow);
}

.about-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.about-card p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 15px;
}

/* ===== Stores Section ===== */
.stores {
    background: var(--dark-bg);
}

.stores-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.store-card {
    background: var(--dark-card);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-decoration: none;
    color: inherit;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.store-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(220, 152, 20, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: var(--transition-normal);
}

.store-card:hover::after {
    opacity: 1;
}

.store-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-yellow);
    box-shadow: var(--glow-yellow);
}

.store-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-yellow) 0%, var(--yellow-hover) 100%);
    color: #000;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 8px 16px;
    border-radius: 20px;
    margin-bottom: 20px;
    width: fit-content;
}

.store-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

.store-name {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.store-description {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 25px;
    flex: 1;
}

.store-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-yellow);
    font-weight: 600;
    font-size: 15px;
    margin-top: auto;
}

.store-link svg {
    width: 20px;
    height: 20px;
    transition: var(--transition-fast);
}

.store-card:hover .store-link svg {
    transform: translateX(5px);
}

/* ===== B2B Section ===== */
.b2b {
    background: linear-gradient(180deg, var(--dark-bg) 0%, var(--dark-card) 100%);
}

.b2b-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.b2b-text {
    text-align: left;
}

.b2b-text .section-header {
    text-align: left;
    margin-bottom: 40px;
}

.b2b-description {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 40px;
}

.b2b-benefits {
    list-style: none;
    margin-bottom: 50px;
}

.b2b-benefits li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 17px;
    font-weight: 500;
}

.b2b-benefits svg {
    width: 24px;
    height: 24px;
    color: var(--primary-yellow);
    flex-shrink: 0;
}

.b2b-image {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.b2b-stat-card {
    background: var(--dark-card);
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    transition: all var(--transition-normal);
}

.b2b-stat-card:hover {
    transform: translateY(-5px);
    border-color: rgba(220, 152, 20, 0.3);
}

.b2b-stat-card:nth-child(3) {
    grid-column: 1 / -1;
}

.stat-number {
    font-size: 48px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-yellow) 0%, var(--yellow-hover) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.stat-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(220, 152, 20, 0.15) 0%, rgba(220, 152, 20, 0.05) 100%);
    border-radius: 50%;
}

.stat-icon svg {
    width: 30px;
    height: 30px;
    color: var(--primary-yellow);
}

.stat-label {
    color: var(--text-secondary);
    font-size: 15px;
    font-weight: 500;
}

/* ===== Contact Section ===== */
.contact {
    background: var(--dark-bg);
}

.contact-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
}

.contact-card {
    background: var(--dark-card);
    padding: 35px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all var(--transition-normal);
    display: flex;
    flex-direction: column;
    min-width: 0;
    width: 100%;
}

.contact-card:hover {
    border-color: rgba(220, 152, 20, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(220, 152, 20, 0.15);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(220, 152, 20, 0.1) 0%, rgba(220, 152, 20, 0.05) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    color: var(--primary-yellow);
}

.contact-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.contact-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

.contact-card a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition-fast);
}

.contact-card a:hover {
    color: var(--primary-yellow);
}

/* Contact Buttons - Base styling */
.contact-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
    padding: 12px 24px;
    color: #fff !important;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    transition: all var(--transition-normal);
}

.contact-button:hover {
    transform: translateY(-2px);
    color: #fff !important;
}

.contact-button svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* Email Button */
.email-button {
    background: linear-gradient(135deg, #0078D4 0%, #005A9E 100%);
    box-shadow: 0 4px 15px rgba(0, 120, 212, 0.3);
}

.email-button:hover {
    box-shadow: 0 6px 20px rgba(0, 120, 212, 0.5);
}

/* Phone Button */
.phone-button {
    background: linear-gradient(135deg, #dc9814 0%, #f0a91c 100%);
    box-shadow: 0 4px 15px rgba(220, 152, 20, 0.3);
}

.phone-button:hover {
    box-shadow: 0 6px 20px rgba(220, 152, 20, 0.5);
}

/* WhatsApp Button */
.whatsapp-button {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.whatsapp-button:hover {
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.address-note {
    margin-top: 15px;
    padding: 10px 15px;
    background: rgba(220, 152, 20, 0.1);
    border-left: 3px solid var(--primary-yellow);
    border-radius: 4px;
    color: var(--primary-yellow) !important;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5;
}

.contact-form-wrapper {
    background: var(--dark-card);
    padding: 50px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input,
.form-group textarea {
    background: var(--dark-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 16px 20px;
    font-size: 16px;
    color: var(--text-primary);
    font-family: var(--font-primary);
    transition: all var(--transition-normal);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-yellow);
    box-shadow: 0 0 0 3px rgba(220, 152, 20, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* ===== Footer ===== */
.footer {
    background: linear-gradient(180deg, var(--dark-card) 0%, #000000 100%);
    padding: 80px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand h3 {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
}

.footer-brand p {
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 400px;
}

.footer-links {
    display: flex;
    gap: 60px;
}

.footer-column h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.footer-column li {
    margin-bottom: 12px;
}

.footer-column a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 15px;
    transition: var(--transition-fast);
}

.footer-column a:hover {
    color: var(--primary-yellow);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 14px;
}

/* ===== Modal Styles ===== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    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 var(--transition-normal);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Prevent body scroll when modal is open */
body.modal-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
}

.modal-content {
    background: var(--dark-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 50px 40px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    transform: scale(0.9) translateY(20px);
    transition: all var(--transition-normal);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.modal-overlay.active .modal-content {
    transform: scale(1) translateY(0);
}

.modal-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, rgba(220, 152, 20, 0.15) 0%, rgba(220, 152, 20, 0.05) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: iconPulse 2s ease-in-out infinite;
}

.modal-icon svg {
    width: 40px;
    height: 40px;
    color: var(--primary-yellow);
}

.modal-icon.error {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.15) 0%, rgba(239, 68, 68, 0.05) 100%);
}

.modal-icon.error svg {
    color: #ef4444;
}

@keyframes iconPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(220, 152, 20, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(220, 152, 20, 0);
    }
}

.modal-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.modal-message {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 30px;
}

.modal-content .btn {
    min-width: 150px;
}

/* Turnstile widget styling */
.cf-turnstile {
    display: flex;
    justify-content: center;
    margin: 10px 0;
}

/* Form submission states */
.contact-form.submitting {
    opacity: 0.6;
    pointer-events: none;
}

#submitBtn.loading {
    position: relative;
    color: transparent;
}

#submitBtn.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid rgba(0, 0, 0, 0.3);
    border-top-color: #000;
    border-radius: 50%;
    animation: buttonSpin 0.6s linear infinite;
}

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

/* ===== Responsive Design ===== */
@media (max-width: 992px) {
    :root {
        --section-padding: 80px;
    }

    .nav-links {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .mobile-menu {
        display: flex;
    }

    .b2b-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .contact-grid {
        grid-template-columns: 1fr !important;
        gap: 25px;
    }

    .contact-card {
        padding: 30px 25px;
        display: flex;
        flex-direction: column;
    }

    .contact-button {
        width: 100%;
        justify-content: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-form-wrapper {
        padding: 35px 25px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
    }

    .hero-content {
        padding: 120px 20px 60px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .section-header {
        margin-bottom: 50px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .stores-grid {
        grid-template-columns: 1fr;
    }

    .b2b-image {
        grid-template-columns: 1fr;
    }

    .b2b-stat-card:nth-child(3) {
        grid-column: 1;
    }

    .footer-links {
        flex-direction: column;
        gap: 30px;
    }

    .scroll-indicator {
        display: none;
    }
}

@media (max-width: 480px) {
    .navbar .container {
        padding: 15px var(--container-padding);
    }

    .nav-logo {
        font-size: 20px;
    }

    .about-card,
    .store-card {
        padding: 30px 25px;
    }

    .contact-form-wrapper {
        padding: 25px 20px;
    }
}

/* ===== Animations ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

/* Smooth scroll offset for fixed navbar */
section {
    scroll-margin-top: 80px;
}
