/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    background: linear-gradient(135deg, rgba(178, 221, 227, 0.3) 0%, rgba(178, 221, 227, 0.15) 30%, rgba(178, 221, 227, 0.05) 50%, rgba(178, 221, 227, 0.15) 70%, rgba(178, 221, 227, 0.25) 100%);
    background-attachment: fixed;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Color Variables */
:root {
    --primary-color: #8e4a91;
    --secondary-color: #7cb3ba;
    --accent-color: #6b2d6f;
    --text-dark: #0f0f0f;
    --text-light: #333333;
    --white: #ffffff;
    --light-bg: #f8f9fa;
    --shadow: 0 10px 30px rgba(176, 120, 179, 0.1);
    --shadow-hover: 0 15px 40px rgba(176, 120, 179, 0.2);
    --transition: all 0.3s ease;
    --border-radius: 15px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    color: var(--text-dark);
    font-weight: 600;
    line-height: 1.2;
}

/* Enhanced Section Title with Animation */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color), var(--secondary-color));
    background-size: 200% 200%;
    animation: gradientShift 4s ease-in-out infinite;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 9999px;
    opacity: 0.7;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 3rem;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 12px 24px;
    border: none;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    background: rgba(178, 221, 227, 0.08);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(178, 221, 227, 0.15);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-img {
    height: 80px;
    width: 80px;
    border-radius: 50%;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-link.franchise-nav {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white) !important;
    padding: 8px 16px;
    border-radius: 25px;
    margin-left: 0.5rem;
    font-weight: 600;
    transition: var(--transition);
}

.nav-link.franchise-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(176, 120, 179, 0.3);
    color: var(--white) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--primary-color);
    cursor: pointer;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    background: linear-gradient(135deg,
        rgba(176, 120, 179, 0.05) 0%,
        rgba(178, 221, 227, 0.05) 100%);
    position: relative;
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-content {
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.hero-features {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-size: 0.9rem;
}

.feature i {
    color: var(--primary-color);
}

.hero-image {
    position: relative;
    z-index: 2;
}

.waffle-showcase {
    position: relative;
    height: 500px;
}

.waffle-img {
    position: absolute;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    max-width: 250px;
    height: auto;
}

.waffle-1 {
    top: 0;
    left: 0;
    z-index: 3;
    animation: float 3s ease-in-out infinite;
}

.waffle-2 {
    top: 80px;
    right: 20px;
    z-index: 1;
    animation: float 3s ease-in-out infinite 1s;
}

.waffle-3 {
    bottom: 5px;
    left: 5%;
    transform: translateX(-50%);
    z-index: 3;
    animation: float 3s ease-in-out infinite 1s;
}

.waffle-img:hover {
    transform: scale(1.05) !important;
    box-shadow: var(--shadow-hover);
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.hero-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.waffle-drops {
    position: relative;
    width: 100%;
    height: 100%;
}

.drop {
    position: absolute;
    width: 100px;
    height: 100px;
    opacity: 0.7;
    animation: waffleFloat 6s ease-in-out infinite;
    font-size: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    pointer-events: none;
    will-change: transform;
    backface-visibility: hidden;
}

@media (max-width: 768px) {
    .drop {
        width: 70px;
        height: 70px;
        font-size: 60px;
    }
}

.drop::before {
    content: "🧇";
}

.drop-1 { left: 15%; top: 20%; animation-delay: 0.5s; }
.drop-2 { left: 75%; top: 60%; animation-delay: 2.0s; }
.drop-3 { left: 45%; top: 35%; animation-delay: 1.2s; }
.drop-4 { left: 10%; top: 75%; animation-delay: 3.5s; }
.drop-5 { left: 80%; top: 25%; animation-delay: 0.8s; }

@media (min-width: 768px) {
    @keyframes waffleFloat {
        0%, 100% {
            transform: translate(0px, 0px) rotate(0deg) scale(1);
        }
        25% {
            transform: translate(5px, -8px) rotate(5deg) scale(1.05);
        }
        50% {
            transform: translate(-3px, -12px) rotate(-3deg) scale(0.95);
        }
        75% {
            transform: translate(-8px, -5px) rotate(8deg) scale(1.1);
        }
    }
}


/* Order Channels */
.order-channels {
    padding: 80px 0;
    background: rgba(178, 221, 227, 0.08);
}

.channels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

/* Enhanced Channel Card with Shimmer Effect */
.channel-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    text-decoration: none;
    color: var(--text-dark);
    transition: var(--transition);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.channel-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 40%, rgba(255,255,255,0.3) 50%, transparent 60%);
    transform: rotate(45deg);
    transition: all 0.6s;
    opacity: 0;
}

.channel-card:hover::before {
    opacity: 1;
    animation: shimmer 1.5s ease-in-out infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.channel-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-color);
}

.channel-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    color: var(--white);
    position: relative;
    z-index: 1;
}

.getir .channel-icon { background: #5d3ebc; }
.yemeksepeti .channel-icon { background: #ff6600; }
.trendyol .channel-icon { background: #f27a1a; }
.phone .channel-icon { background: var(--primary-color); }

.channel-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.channel-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    position: relative;
    z-index: 1;
}

/* Menu Preview */
.menu-preview {
    padding: 80px 0;
    background: var(--white);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.menu-categories {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.menu-category {
    background: rgba(178, 221, 227, 0.08);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow);
}

.category-title {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
}

.menu-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.menu-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--white);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.menu-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.item-image img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
}

.item-info h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.item-info p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* New Dough Highlight Styles */
.dough-highlight {
    background: linear-gradient(135deg, rgba(178, 221, 227, 0.1), rgba(178, 221, 227, 0.05));
    border-radius: var(--border-radius);
    padding: 2.5rem;
    box-shadow: var(--shadow);
    border: 2px solid var(--secondary-color);
}

.dough-main {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: left;
}

.dough-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: var(--shadow);
    flex-shrink: 0;
}

.dough-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.dough-content p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.dough-varieties {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.variety-tag {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    box-shadow: 0 2px 10px rgba(176, 120, 179, 0.2);
    transition: var(--transition);
}

.variety-tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(176, 120, 179, 0.3);
}

.dough-color {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 3px solid var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.dough-color.pink { background: #ff69b4; }
.dough-color.oreo { background: #2c2c2c; }
.dough-color.hazelnut { background: #8b4513; }
.dough-color.chocolate { background: #8b0000; }

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-item {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.feature-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.feature-item h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.menu-actions {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(178, 221, 227, 0.08);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.qr-info {
    margin-top: 1rem;
    color: var(--text-light);
    font-size: 0.9rem;
}

/* About Section */
.about {
    padding: 80px 0;
    background: rgba(178, 221, 227, 0.08);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-description {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: var(--white);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.about-feature:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow);
}

.about-feature i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 0.2rem;
}

.about-feature h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.about-feature p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.shop-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

/* Beverages Section */
.beverages {
    padding: 80px 0;
    background: linear-gradient(135deg,
        rgba(176, 120, 179, 0.05) 0%,
        rgba(178, 221, 227, 0.05) 100%);
}

.beverages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.beverage-category {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    text-align: center;
    transition: var(--transition);
}

.beverage-category:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.category-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
    font-size: 2rem;
}

.beverage-category h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.beverage-category ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.beverage-category li {
    color: var(--text-light);
    font-size: 0.9rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--light-bg);
}

.beverage-category li:last-child {
    border-bottom: none;
}

/* Location Section */
.location {
    padding: 80px 0;
    background: rgba(178, 221, 227, 0.08);
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.location-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--white);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.info-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.info-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 0.2rem;
}

.info-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.info-item p {
    color: var(--text-light);
    line-height: 1.6;
}

.info-item a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.location-map {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

/* Instagram Feed */
.instagram-feed {
    padding: 80px 0;
    background: var(--white);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.instagram-post {
    background: rgba(178, 221, 227, 0.08);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.instagram-post:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.post-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.post-image {
    position: relative;
    overflow: hidden;
}

.video-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    transition: var(--transition);
}

.instagram-post:hover .video-overlay {
    background: rgba(0, 0, 0, 0.8);
    transform: translate(-50%, -50%) scale(1.1);
}

.instagram-loading,
.instagram-error {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 200px;
    background: rgba(178, 221, 227, 0.08);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.instagram-loading .fa-spinner {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.instagram-follow {
    text-align: center;
    margin-top: 2rem;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: rgba(178, 221, 227, 0.08);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-info p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--white);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border-radius: var(--border-radius);
    text-decoration: none;
    color: var(--text-dark);
    transition: var(--transition);
}

.contact-method:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow);
}

.contact-method i {
    font-size: 1.2rem;
    color: var(--primary-color);
    width: 20px;
}

.contact-info, .contact-form {
    background: var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    padding: 2rem;
    border-radius: var(--border-radius);
}

.contact-form h3 {
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid transparent;
    border-radius: var(--border-radius);
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    background: rgba(178, 221, 227, 0.08);
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(176, 120, 179, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Franchise Form Styles */
.franchise-info {
    color: var(--text-light);
    margin-bottom: 2rem;
    font-style: italic;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group select {
    width: 100%;
    padding: 12px;
    border: 2px solid transparent;
    border-radius: var(--border-radius);
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    background: var(--white);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    transition: var(--transition);
    cursor: pointer;
}

.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(176, 120, 179, 0.1);
}

.form-group select option {
    padding: 10px;
    background: rgba(178, 221, 227, 0.08);
}

.form-terms {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

.form-terms input[type="checkbox"] {
    margin-top: 0.2rem;
    width: auto;
    min-width: 16px;
    accent-color: var(--primary-color);
}

.form-terms label {
    line-height: 1.4;
    cursor: pointer;
}

.franchise-form .btn {
    display: block;
    margin: 0 auto;
    width: fit-content;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer-logo img {
    height: 90px;
    width: 90px;
    border-radius: 50%;
}

.footer-logo h3 {
    color: var(--white);
    font-size: 1.5rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-section li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--white);
    transform: translateX(5px);
}

.footer-section i {
    color: var(--secondary-color);
    width: 15px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
}
.developer-credit {
    text-align:center;
    font-size: 0.8rem;
    margin-top: 0.5rem;
    opacity: 0.8;
}

.developer-link {
    color: #58D68D !important;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.developer-link:hover {
    color: #2E86C1 !important;
    text-decoration: underline;
}
/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(178, 221, 227, 0.08);
        flex-direction: column;
        justify-content: start;
        align-items: center;
        padding-top: 2rem;
        transition: var(--transition);
        box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: block;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-features {
        justify-content: center;
    }

    .waffle-showcase {
        height: 300px;
        margin: 0 auto;
    }

    .waffle-img {
        max-width: 150px;
    }

    .waffle-2 {
        top: 40px;
        right: 10px;
    }

    .waffle-3 {
        bottom: 5px;
        left: 15%;
    }

    .section-title {
        font-size: 2rem;
    }

    .channels-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1rem;
    }

    .menu-items {
        grid-template-columns: 1fr;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .location-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .beverages-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .channels-grid {
        grid-template-columns: 1fr;
    }

    .channel-card {
        padding: 1.5rem;
    }

    .dough-main {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .dough-content h3 {
        font-size: 1.3rem;
    }

    .dough-varieties {
        justify-content: center;
        gap: 0.8rem;
    }

    .variety-tag {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .nav-link.franchise-nav {
        margin: 1rem 2rem;
        padding: 12px 20px;
        border-radius: 25px;
        text-align: center;
    }

    .footer-logo {
        justify-content: center;
    }
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(176, 120, 179, 0.3);
    border-radius: 50%;
    border-top-color: var(--primary-color);
    animation: spin 1s ease-in-out infinite;
    will-change: transform;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Scroll Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Screen Reader Only Class */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--white);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-color);
}