html {
    scroll-behavior: smooth;
}

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

:root {
    --primary-blue: #2563eb;
    --primary-blue-dark: #1e40af;
    --primary-blue-light: #3b82f6;
    --secondary-blue: #1e3a8a;
    --accent-color: #f59e0b;
    --accent-red: #ef4444;
    --bg-dark: #0f172a;
    --bg-light: #1e293b;
    --text-light: #ffffff;
    --text-gray: #cbd5e1;
    --text-dark: #1e293b;
    --card-bg: #1e293b;
    --border-color: #334155;
    --success-green: #10b981;
    --banner-gradient: linear-gradient(135deg, #2563eb 0%, #1e40af 50%, #1e3a8a 100%);
    --banner-gradient-alt: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    min-height: 100vh;
}

/* Banner Section */
.banner-section {
    background: var(--banner-gradient);
    position: relative;
    overflow: hidden;
    padding-bottom: 80px;
    min-height: 600px;
}

.banner-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3Cpattern id='restaurant' x='0' y='0' width='100' height='100' patternUnits='userSpaceOnUse'%3E%3Ccircle cx='50' cy='50' r='2' fill='%23BFDBFE' opacity='0.1'/%3E%3C/pattern%3E%3C/defs%3E%3Crect width='100' height='100' fill='url(%23restaurant)'/%3E%3C/svg%3E");
    opacity: 0.3;
    z-index: 1;
}

.wave-pattern-brochure {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23ffffff' fill-opacity='1' d='M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,154.7C960,171,1056,181,1152,165.3C1248,149,1344,107,1392,85.3L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E") no-repeat bottom;
    background-size: cover;
    z-index: 2;
}

/* Centered Logo */
.banner-logo-center {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    z-index: 5;
}

.logo-container-center {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    flex-direction: column;
}

.logo-icon-center {
    display: flex;
    justify-content: center;
}

.icon-square-center {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.focus-brackets-center {
    width: 40px;
    height: 40px;
    position: relative;
}

.bracket-center {
    position: absolute;
    border: 2px solid #1a3a5f;
    width: 12px;
    height: 12px;
}

.bracket-center.bracket-tl {
    top: 0;
    left: 0;
    border-right: none;
    border-bottom: none;
}

.bracket-center.bracket-tr {
    top: 0;
    right: 0;
    border-left: none;
    border-bottom: none;
}

.bracket-center.bracket-bl {
    bottom: 0;
    left: 0;
    border-right: none;
    border-top: none;
}

.bracket-center.bracket-br {
    bottom: 0;
    right: 0;
    border-left: none;
    border-top: none;
}

.number-one {
    position: absolute;
    font-size: 1.8rem;
    font-weight: 900;
    color: #1a3a5f;
    z-index: 2;
}

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

.logo-main-center {
    font-size: 2.5rem;
    font-weight: 900;
    color: #1a3a5f;
    margin: 0;
    letter-spacing: 2px;
}

.logo-tagline-center {
    font-size: 1rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 5px 0 0 0;
    letter-spacing: 1px;
}

/* Navigation Bar */
.top-nav {
    padding: 20px 40px;
    position: relative;
    z-index: 10;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.nav-logo {
    display: flex;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.logo-link:hover {
    transform: scale(1.05);
}

.logo-icon-small {
    flex-shrink: 0;
}

.icon-square-small {
    width: 50px;
    height: 50px;
    background: #2a2a2a;
    border-radius: 8px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.focus-brackets-small {
    width: 30px;
    height: 30px;
    position: relative;
}

.bracket-small {
    position: absolute;
    border: 2px solid #888;
    width: 10px;
    height: 10px;
}

.bracket-small.bracket-tl {
    top: 0;
    left: 0;
    border-right: none;
    border-bottom: none;
}

.bracket-small.bracket-tr {
    top: 0;
    right: 0;
    border-left: none;
    border-bottom: none;
}

.bracket-small.bracket-bl {
    bottom: 0;
    left: 0;
    border-right: none;
    border-top: none;
}

.bracket-small.bracket-br {
    bottom: 0;
    right: 0;
    border-left: none;
    border-top: none;
}

.nav-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-main-text {
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 2px;
    color: #1a3a5f;
    text-shadow: 
        -1px -1px 0 #4a7ba7,
        1px -1px 0 #4a7ba7,
        -1px 1px 0 #4a7ba7,
        1px 1px 0 #4a7ba7;
    text-transform: uppercase;
}

.logo-tagline-text {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: #c41e3a;
    text-shadow: 
        -1px -1px 0 #e85c7a,
        1px -1px 0 #e85c7a,
        -1px 1px 0 #e85c7a,
        1px 1px 0 #e85c7a;
    text-transform: uppercase;
    margin-top: 2px;
}

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

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.95rem;
    transition: opacity 0.3s ease;
}

.nav-links a:hover {
    opacity: 0.8;
}

.nav-link-special {
    font-weight: 600;
}

.nav-link-btn {
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 600;
}

.nav-link-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    opacity: 1;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    font-size: 1.3rem;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.social-icon:hover {
    transform: scale(1.2);
}

/* Banner Slider */
.banner-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.slider-container {
    position: relative;
    width: 100%;
    min-height: 500px;
}

.slide {
    display: none;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 60px 40px;
}

.slide.active {
    display: block;
    opacity: 1;
    position: relative;
}

/* Slider Navigation Buttons */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: var(--text-light);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 2rem;
    cursor: pointer;
    z-index: 15;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.slider-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.8);
    transform: translateY(-50%) scale(1.1);
}

.prev-btn {
    left: 20px;
}

.next-btn {
    right: 20px;
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 15;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.dot:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: scale(1.2);
}

.dot.active {
    background: var(--text-light);
    width: 30px;
    border-radius: 6px;
    border-color: rgba(255, 255, 255, 0.8);
}

/* Banner Slider */
.banner-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    display: none;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 60px 40px;
}

.slide.active {
    display: block;
    opacity: 1;
    position: relative;
}

/* Banner Content */
.banner-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 5;
}

.banner-left-brochure {
    color: #1a3a5f;
}

.banner-headline-brochure {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #1a3a5f;
}

.banner-description-brochure {
    font-size: 1.3rem;
    line-height: 1.8;
    color: #4B5563;
    max-width: 500px;
}

.banner-right-brochure {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

/* Phone Mockup - Brochure Style */
.phone-mockup-brochure {
    width: 280px;
    height: 560px;
    background: #1a1a1a;
    border-radius: 35px;
    padding: 12px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
    transform: rotate(-5deg);
    position: relative;
    z-index: 3;
}

.phone-screen-brochure {
    width: 100%;
    height: 100%;
    background: #ffffff;
    border-radius: 25px;
    overflow: hidden;
    padding: 20px 15px;
}

.menu-category {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.menu-section {
    font-size: 0.9rem;
    font-weight: 600;
    color: #6b7280;
    margin-bottom: 15px;
}

.menu-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.menu-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px;
    background: #f9fafb;
    border-radius: 8px;
}

.menu-item-image {
    font-size: 2rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border-radius: 8px;
}

.menu-item-info {
    flex: 1;
}

.menu-item-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 3px;
}

.menu-item-price {
    font-size: 0.85rem;
    font-weight: 700;
    color: #059669;
}

/* QR Stand */
.qr-stand {
    position: relative;
    z-index: 4;
    transform: rotate(2deg);
}

.qr-code-brochure {
    width: 150px;
    height: 150px;
    background: #ffffff;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    margin-bottom: 10px;
}

.qr-pattern-brochure {
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(0deg, #000 0px, #000 6px, transparent 6px, transparent 12px),
        repeating-linear-gradient(90deg, #000 0px, #000 6px, transparent 6px, transparent 12px);
    background-size: 15px 15px;
}

.qr-banner {
    background: #FBBF24;
    color: #1a1a1a;
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 0.75rem;
    font-weight: 700;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

/* Floating Icons */
.floating-icons {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.floating-icon {
    position: absolute;
    font-size: 2rem;
    opacity: 0.6;
    animation: float 3s ease-in-out infinite;
}

.icon-1 { top: 10%; left: 5%; animation-delay: 0s; }
.icon-2 { top: 20%; right: 10%; animation-delay: 0.5s; }
.icon-3 { top: 50%; left: 0%; animation-delay: 1s; }
.icon-4 { top: 60%; right: 5%; animation-delay: 1.5s; }
.icon-5 { bottom: 30%; left: 8%; animation-delay: 2s; }
.icon-6 { bottom: 20%; right: 12%; animation-delay: 2.5s; }
.icon-7 { top: 40%; right: 0%; animation-delay: 3s; }

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

/* Three Panel Section */
.brochure-panels {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0;
    background: #ffffff;
}

.panel {
    padding: 40px 30px;
    min-height: 500px;
    display: flex;
    flex-direction: column;
}

.panel-features {
    background: #ffffff;
}

.panel-offers {
    background: var(--panel-yellow);
}

.panel-pricing {
    background: var(--panel-blue);
}

.panel-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
}

.features-header {
    background: var(--primary-blue);
}

.offers-header {
    background: #F59E0B;
}

.pricing-header {
    background: var(--primary-blue);
}

.panel-icon {
    font-size: 1.3rem;
}

.panel-content {
    flex: 1;
}

.panel-list {
    list-style: none;
    padding: 0;
}

.panel-list li {
    padding: 12px 0;
    font-size: 1rem;
    color: #1a1a1a;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.check-green {
    color: #059669;
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* Offer Banner */
.offer-banner {
    background: #10B981;
    color: #ffffff;
    padding: 15px 20px;
    border-radius: 8px;
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.arrow-right {
    font-size: 1.5rem;
    color: #FBBF24;
}

.offer-text {
    flex: 1;
}

.offer-text-main {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 3px;
}

.offer-text-sub {
    font-size: 0.85rem;
    opacity: 0.95;
}

/* Pricing Tiers */
.pricing-tier {
    margin-bottom: 25px;
    position: relative;
}

.best-deal-badge {
    background: #FBBF24;
    color: #1a1a1a;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 10px;
}

.pricing-box {
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 10px;
    text-align: center;
}

.unlimited-box {
    background: var(--primary-blue);
    color: #ffffff;
}

.free-box {
    background: var(--panel-blue);
    color: #1a1a1a;
}

.pricing-label {
    font-size: 1.3rem;
    font-weight: 700;
}

.pricing-amount {
    font-size: 1.5rem;
    font-weight: 900;
    color: #1a1a1a;
    text-align: center;
}

.pricing-details {
    text-align: center;
    font-size: 0.95rem;
    color: #1a1a1a;
    line-height: 1.6;
}

/* Contact Brochure Style */
.contact-brochure {
    background: #ffffff;
    padding: 40px 20px;
    text-align: center;
}

.contact-banner {
    background: #FBBF24;
    color: #1a1a1a;
    padding: 20px;
    font-size: 1.2rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
}

.contact-phone-icon {
    font-size: 1.5rem;
}

.contact-website {
    color: #1a1a1a;
    font-size: 1rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.contact-tagline {
    background: #1a3a5f;
    color: #ffffff;
    padding: 20px;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.thumbs-up {
    font-size: 1.5rem;
}

.banner-left {
    color: var(--text-light);
}

.banner-headline {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 25px;
    color: var(--text-light);
}

.banner-description {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 35px;
    color: rgba(255, 255, 255, 0.95);
    max-width: 550px;
}

.banner-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.demo-btn {
    background: var(--accent-color);
    color: var(--text-light);
    padding: 15px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
}

.demo-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.6);
    background: #f97316;
}

.check-icon {
    background: rgba(255, 255, 255, 0.3);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.download-link {
    color: var(--text-light);
    text-decoration: none;
    font-size: 1rem;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.download-link:hover {
    opacity: 1;
    text-decoration: underline;
}

.banner-rating {
    margin-top: 20px;
}

.stars {
    font-size: 1.5rem;
    color: #FBBF24;
    letter-spacing: 3px;
}

/* Phone Mockup */
.banner-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-mockup {
    width: 320px;
    height: 640px;
    background: #1a1a1a;
    border-radius: 40px;
    padding: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    position: relative;
}

.phone-mockup::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 25px;
    background: #1a1a1a;
    border-radius: 0 0 15px 15px;
    z-index: 1;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #ffffff;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
}

.phone-header {
    background: #f3f4f6;
    padding: 15px 20px;
    text-align: center;
    font-weight: 700;
    font-size: 1.1rem;
    color: #1a1a1a;
    border-bottom: 1px solid #e5e7eb;
}

.phone-content {
    padding: 20px;
    background: #ffffff;
    height: calc(100% - 60px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.phone-logo {
    font-size: 0.9rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.phone-image-placeholder {
    width: 100%;
    height: 120px;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.food-icon {
    font-size: 3rem;
}

.phone-instructions {
    text-align: center;
    margin-bottom: 20px;
}

.phone-instructions p {
    color: #1a1a1a;
    font-size: 0.85rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.phone-subtext {
    font-size: 0.7rem !important;
    color: #6b7280 !important;
    font-weight: 400 !important;
    line-height: 1.4;
}

.google-icon {
    font-size: 0.9rem;
}

.phone-qr {
    width: 180px;
    height: 180px;
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.qr-placeholder {
    width: 160px;
    height: 160px;
    background: #ffffff;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qr-pattern {
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(0deg, #000 0px, #000 8px, transparent 8px, transparent 16px),
        repeating-linear-gradient(90deg, #000 0px, #000 8px, transparent 8px, transparent 16px);
    background-size: 20px 20px;
    opacity: 0.3;
}

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

.phone-link p {
    color: #1a1a1a;
    font-size: 0.85rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.phone-url {
    font-size: 0.7rem !important;
    color: #6b7280 !important;
    font-weight: 400 !important;
    word-break: break-all;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Header Styles */
.header {
    text-align: center;
    padding: 40px 20px;
    margin-bottom: 40px;
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.logo-icon {
    flex-shrink: 0;
}

.icon-square {
    width: 80px;
    height: 80px;
    background: #2a2a2a;
    border-radius: 8px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.focus-brackets {
    width: 50px;
    height: 50px;
    position: relative;
}

.bracket {
    position: absolute;
    border: 2px solid #888;
    width: 15px;
    height: 15px;
}

.bracket-tl {
    top: 0;
    left: 0;
    border-right: none;
    border-bottom: none;
}

.bracket-tr {
    top: 0;
    right: 0;
    border-left: none;
    border-bottom: none;
}

.bracket-bl {
    bottom: 0;
    left: 0;
    border-right: none;
    border-top: none;
}

.bracket-br {
    bottom: 0;
    right: 0;
    border-left: none;
    border-top: none;
}

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

.logo-main {
    font-size: 3.5rem;
    font-weight: 900;
    letter-spacing: 2px;
    color: var(--primary-blue);
    text-shadow: 
        -1px -1px 0 #3b82f6,
        1px -1px 0 #3b82f6,
        -1px 1px 0 #3b82f6,
        1px 1px 0 #3b82f6;
    margin-bottom: 5px;
    line-height: 1;
}

.logo-tagline {
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--accent-color);
    text-shadow: 
        -1px -1px 0 #fbbf24,
        1px -1px 0 #fbbf24,
        -1px 1px 0 #fbbf24,
        1px 1px 0 #fbbf24;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 40px 20px;
    margin-bottom: 60px;
}

.hero-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--text-light);
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-gray);
    max-width: 800px;
    margin: 0 auto;
}

/* Features Section */
.features {
    margin-bottom: 60px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    padding: 20px;
}

.feature-card {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.feature-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--text-light);
}

.feature-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

/* Outlets Section */
.outlets {
    margin-bottom: 60px;
}

.section-title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 15px;
    color: var(--text-light);
}

.section-subtitle {
    text-align: center;
    color: var(--text-gray);
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.outlets-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    padding: 20px;
}

.outlet-card {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 25px;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

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

.outlet-name {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
    color: var(--text-light);
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qr-code {
    width: 180px;
    height: 180px;
    background: white;
    padding: 10px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qr-code img {
    max-width: 100%;
    max-height: 100%;
    border-radius: 4px;
}

.outlet-link {
    display: inline-block;
    padding: 12px 24px;
    background: var(--primary-blue);
    color: var(--text-light);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s ease;
    text-align: center;
    word-break: break-all;
    font-size: 0.9rem;
}

.outlet-link:hover {
    background: #2a5a8a;
}

.outlet-link.highlight {
    background: var(--accent-color);
}

.outlet-link.highlight:hover {
    background: #f97316;
}

/* What We Provide Section */
.what-we-provide {
    margin-bottom: 60px;
}

/* What We Offer Section */
.what-we-offer {
    margin-bottom: 60px;
    background: var(--bg-light);
    padding: 40px 20px;
    border-radius: 12px;
}

.offer-list {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.offer-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: var(--card-bg);
    border-radius: 8px;
    border: 1px solid var(--border-color);
    font-size: 1.1rem;
    color: var(--text-light);
}

.offer-item strong {
    color: var(--accent-color);
}

.offer-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
}

/* Packages Section */
.packages {
    margin-bottom: 60px;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.package-card {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 35px;
    border: 2px solid var(--border-color);
    text-align: center;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.package-card.free-plan {
    border-color: var(--primary-blue);
}

.package-card.silver-plan {
    border-color: var(--accent-color);
    border-width: 3px;
}

.package-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--accent-color);
    color: var(--text-dark);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.free-plan .package-badge {
    background: var(--primary-blue);
}

.package-name {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--text-light);
}

.package-price {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--text-light);
    margin-bottom: 25px;
}

.package-price .price-period {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-gray);
}

.package-features {
    list-style: none;
    text-align: left;
    margin-top: 25px;
}

.package-features li {
    padding: 12px 0;
    color: var(--text-gray);
    border-bottom: 1px solid var(--border-color);
    position: relative;
    padding-left: 30px;
}

.package-features li:last-child {
    border-bottom: none;
}

.package-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-blue);
    font-weight: bold;
    font-size: 1.2rem;
}

.silver-plan .package-features li::before {
    color: var(--accent-color);
}

/* Contact Section */
.contact {
    text-align: center;
    padding: 60px 20px;
    background: var(--bg-light);
    border-radius: 12px;
    margin-bottom: 40px;
}

.contact-subtitle {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 30px;
    margin-top: 10px;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    background: var(--card-bg);
    color: var(--text-light);
    text-decoration: none;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, background 0.3s ease;
    font-size: 1.1rem;
}

.contact-link:hover {
    transform: translateY(-3px);
    background: var(--primary-blue);
    border-color: var(--primary-blue-light);
}

.contact-icon {
    font-size: 1.5rem;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .banner-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .banner-right {
        order: -1;
    }

    .phone-mockup {
        width: 280px;
        height: 560px;
    }
}

@media (max-width: 768px) {
    .top-nav {
        padding: 15px 20px;
    }

    .nav-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-logo {
        width: 100%;
    }

    .logo-main-text {
        font-size: 1.2rem;
    }

    .logo-tagline-text {
        font-size: 0.65rem;
    }

    .icon-square-small {
        width: 40px;
        height: 40px;
    }

    .focus-brackets-small {
        width: 24px;
        height: 24px;
    }

    .nav-links {
        width: 100%;
        justify-content: flex-start;
        gap: 15px;
        font-size: 0.85rem;
    }

    .slide {
        padding: 40px 20px;
    }

    .banner-content {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0;
    }

    .banner-right {
        order: -1;
    }

    .banner-headline {
        font-size: 2.2rem;
    }

    .banner-description {
        font-size: 1rem;
    }

    .phone-mockup {
        width: 240px;
        height: 480px;
    }

    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }

    .prev-btn {
        left: 10px;
    }

    .next-btn {
        right: 10px;
    }

    .slider-dots {
        bottom: 20px;
    }

    .logo-main {
        font-size: 2.5rem;
    }

    .logo-tagline {
        font-size: 1rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

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

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

    .contact-info {
        flex-direction: column;
        align-items: center;
    }

    .contact-link {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

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

    .offer-item {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .logo-container {
        flex-direction: column;
    }

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

    .logo-main {
        font-size: 2rem;
    }
}

