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

body {
    font-family: 'Poppins', 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fefefe;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgb(255, 255, 255);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(139, 69, 19, 0.1);
}

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

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

.logo-img {
    height: 80px;
    width: auto;
    object-fit: contain;
    
}

.nav-logo h2 {
    color: #333;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1rem;
    font-size: 13px;
}

.nav-link {
    text-decoration: none;
    color: #555;
    font-weight: 400;
    transition: color 0.3s ease;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-link:hover {
    color: #8b4513;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #8b4513;
    transition: width 0.3s ease;
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
/* Story Section */
.story-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f1f3f4 100%);
    position: relative;
    overflow: hidden;
    margin-top: 100px;
}

.story-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 177, 153, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 40% 40%, rgba(120, 119, 198, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.story-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.story-title {
    font-family: 'Playfair Display', 'Georgia', serif;
    font-size: 4.2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #2c3e50 0%, #8b4513 50%, #2c3e50 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 50px;
    text-shadow: 0 6px 12px rgba(0,0,0,0.15);
    letter-spacing: -0.5px;
    position: relative;
    line-height: 1.2;
}

.story-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #d4a574, #8b4513, #d4a574, transparent);
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(212, 165, 116, 0.3);
}

.story-text {
    text-align: left;
    max-width: 800px;
    margin: 0 auto;
}

.story-text p {
    font-family: 'Inter', 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 25px;
    text-align: justify;
    letter-spacing: 0.3px;
}

.story-promise {
    text-align: center !important;
    font-size: 1.3rem !important;
    color: #2c3e50 !important;
    margin-top: 40px !important;
    padding: 30px;
    background: rgba(212, 165, 116, 0.1);
    border-radius: 15px;
    border-left: 4px solid #8b4513;
}

/* Read More Button Styles */
.read-more-container {
    text-align: center;
    margin: 2rem 0;
}

.read-more-btn {
    background: linear-gradient(135deg, #8B4513 0%, #D2691E 50%, #CD853F 100%);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.2);
    position: relative;
    overflow: hidden;
}

.read-more-btn::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 ease;
}

.read-more-btn:hover::before {
    left: 100%;
}

.read-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 69, 19, 0.3);
}

.read-more-btn:active {
    transform: translateY(0);
}

.btn-icon {
    transition: transform 0.3s ease;
    font-size: 0.8rem;
}

.story-continuation {
    animation: fadeIn 0.5s ease-in-out;
}

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

/* Responsive Design for Read More Button */
@media (max-width: 768px) {
    .read-more-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

/* Brands Section */
.brands {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f1f3f4 100%);
    position: relative;
    overflow: hidden;
}

.brands-header {
    text-align: center;
    margin-bottom: 60px;
}

.handwritten {
    font-family: 'Dancing Script', cursive;
    font-size: 3.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.handwritten::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #d4a574, transparent);
    border-radius: 2px;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    align-items: center;
    justify-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.brand-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px;
    background: transparent;
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    max-width: 220px;
    height: 120px;
    position: relative;
    overflow: hidden;
}

.brand-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 165, 116, 0.1), transparent);
    transition: left 0.6s ease;
}

.brand-item:hover::before {
    left: 100%;
}

.brand-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(212, 165, 116, 0.3);
    backdrop-filter: blur(10px);
}

.brand-item img {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.7);
    transition: all 0.3s ease;
}

.brand-item:hover img {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.05);
}

.brands-footer {
    text-align: center;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(212, 165, 116, 0.2);
}

.handwritten-quote {
    font-family: 'Dancing Script', cursive;
    font-size: 2.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
    font-style: italic;
    opacity: 0.8;
}



/* Gallery Slider */
.gallery-slider {
    position: relative;
    max-width: 1400px;
    margin: 60px auto;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15), 0 10px 30px rgba(0, 0, 0, 0.1);
    background: white;
    transform: perspective(1000px) rotateX(2deg);
    transition: transform 0.3s ease;
}

.gallery-slider:hover {
    transform: perspective(1000px) rotateX(0deg) scale(1.02);
}

.slider-container {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: all 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(1.1);
}

.slide.active {
    opacity: 1;
    transform: scale(1);
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0,0,0,0.3) 0%, transparent 50%, rgba(0,0,0,0.2) 100%);
    z-index: 1;
}

.slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.9));
    color: white;
    padding: 80px 50px 40px;
    text-align: center;
    z-index: 2;
    transform: translateY(20px);
    animation: slideContentUp 0.8s ease-out forwards;
}

@keyframes slideContentUp {
    to {
        transform: translateY(0);
    }
}

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

.slide-content h3 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 0 4px 8px rgba(0,0,0,0.7);
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

.slide-content p {
    font-size: 1.2rem;
    opacity: 0.95;
    margin: 0 auto;
    line-height: 1.8;
    max-width: 700px;
    font-weight: 300;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

/* Slider Navigation */
.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 20px;
    z-index: 10;
    padding: 20px;
}

.dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 8px;
    height: 8px;
    background: #d4a574;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.dot.active {
    background: rgba(212, 165, 116, 0.2);
    border-color: #d4a574;
    transform: scale(1.3);
}

.dot.active::before {
    transform: translate(-50%, -50%) scale(1);
}

.dot:hover {
    background: rgba(212, 165, 116, 0.3);
    border-color: #d4a574;
    transform: scale(1.2);
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    color: #333;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15), 0 4px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background: white;
    transform: translateY(-50%) scale(1.15);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2), 0 6px 15px rgba(0, 0, 0, 0.15);
    border-color: #d4a574;
    color: #d4a574;
}

.slider-btn:active {
    transform: translateY(-50%) scale(1.05);
}

.prev-btn {
    left: 30px;
}

.next-btn {
    right: 30px;
}

/* Journey Stats */
.journey-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 800px;
    margin: 60px auto 0;
}

.stat-item {
    padding: 30px 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.stat-item h3 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 10px;
    font-weight: 700;
}

.stat-item p {
    color: #666;
    font-size: 1rem;
    margin: 0;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background-color: #3498db;
    color: white;
    border-color: #3498db;
}

.btn-primary:hover {
    background-color: transparent;
    color: #3498db;
    border-color: #3498db;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: white;
    border-color: white;
}

.btn-secondary:hover {
    background-color: white;
    color: #8b4513;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #8b4513;
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Experience Section */
.experience {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f1f3f4 100%);
    position: relative;
    overflow: hidden;
}

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

.experience-text h2 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.experience-subtitle {
    font-size: 1.3rem;
    color: #6c757d;
    margin-bottom: 50px;
    font-style: italic;
}

.experience-features {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.experience-item {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.experience-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.95);
}

.experience-number {
    font-size: 2rem;
    font-weight: 700;
    color: #d4a574;
    min-width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #d4a574, #c19a5b);
    color: white;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(212, 165, 116, 0.3);
}

.experience-info h4 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #2c3e50;
}

.experience-info p {
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
}

.experience-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.coffee-animation {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.coffee-cup {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #8B4513, #A0522D);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.coffee-cup::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 80px;
    background: linear-gradient(135deg, #3E2723, #5D4037);
    border-radius: 50%;
}

.coffee-cup::after {
    content: '';
    position: absolute;
    top: -10px;
    right: -30px;
    width: 40px;
    height: 60px;
    border: 8px solid #8B4513;
    border-left: none;
    border-radius: 0 50px 50px 0;
}

.coffee-steam {
    position: absolute;
    width: 4px;
    height: 40px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 2px;
    animation: steam 2s ease-in-out infinite;
}

.coffee-steam:nth-child(1) {
    left: 70px;
    top: -20px;
    animation-delay: 0s;
}

.coffee-steam:nth-child(2) {
    left: 90px;
    top: -25px;
    animation-delay: 0.5s;
}

.coffee-steam:nth-child(3) {
    left: 110px;
    top: -20px;
    animation-delay: 1s;
}

@keyframes steam {
    0%, 100% {
        opacity: 0;
        transform: translateY(0) scale(1);
    }
    50% {
        opacity: 1;
        transform: translateY(-20px) scale(1.1);
    }
}

.experience-stats {
    display: flex;
    gap: 40px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-width: 120px;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #d4a574;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    color: #8b4513;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.about-text p {
    color: #666;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

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

.stat {
    text-align: center;
}

.stat h3 {
    color: #8b4513;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat p {
    color: #666;
    font-weight: 500;
}

.about-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(139, 69, 19, 0.2);
}

/* Services Section */
.services {
    background-color: #f9f7f4;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(139, 69, 19, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(139, 69, 19, 0.1);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(139, 69, 19, 0.2);
}

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

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

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-content {
    padding: 2rem;
}

.service-content h3 {
    color: #8b4513;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-content p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-link {
    color: #8b4513;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
}

.service-link:hover {
    gap: 1rem;
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #8b4513, #a0522d);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.contact-details h4 {
    color: #8b4513;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-details p {
    color: #666;
}

.contact-form {
    background: #f9f7f4;
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(139, 69, 19, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid rgba(139, 69, 19, 0.1);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #8b4513;
}

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

/* Franchise Call to Action */
.franchise-cta {
    background: linear-gradient(135deg, #8b4513 0%, #a0522d 50%, #d2691e 100%);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.franchise-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="80" cy="40" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="40" cy="80" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
    opacity: 0.3;
}

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

.franchise-cta h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: -1px;
}

.franchise-cta p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    font-weight: 300;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.franchise-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #ffffff;
    color: #8b4513;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    border: 3px solid transparent;
}

.franchise-btn:hover {
    background: transparent;
    color: #ffffff;
    border-color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

.franchise-btn i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.franchise-btn:hover i {
    transform: scale(1.1);
}

/* Footer */
.footer {
    background: #ffffff;
    color: #2c3e50;
    padding: 60px 0 0;
    border-top: 1px solid #f1f3f4;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.05);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 40px;
    align-items: start;
}

.franchise-highlight {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 30px;
    border-radius: 15px;
    border: 2px solid #d4a574;
    position: relative;
    overflow: hidden;
}

.franchise-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.05) 0%, rgba(212, 165, 116, 0.1) 100%);
    pointer-events: none;
}

.franchise-highlight h4 {
    color: #2c3e50;
    font-size: 1.4rem;
    margin-bottom: 15px;
    text-align: center;
}

.franchise-highlight p {
    color: #4a5568;
    text-align: center;
    margin-bottom: 25px;
    font-weight: 500;
}

.franchise-footer-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #d4a574, #c19a5b);
    color: white;
    padding: 15px 25px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.3);
    width: 100%;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.franchise-footer-btn:hover {
    background: linear-gradient(135deg, #c19a5b, #a0845a);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 165, 116, 0.4);
    color: white;
}

.franchise-footer-btn i {
    font-size: 1.1rem;
}

.footer-brand {
    padding-right: 30px;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.footer-logo img {
    width: 60px;
    height: 60px;
    border-radius: 10px;
}

.footer-menu-center {
    text-align: center;
}

.footer-menu-center ul {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-menu-center ul li {
    text-align: center;
}

.footer-section h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 25px;
    color: #2c3e50;
    position: relative;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 3px;
    background: linear-gradient(135deg, #d4a574, #c19a5b);
    border-radius: 2px;
}

.footer-section p {
    margin-bottom: 20px;
    line-height: 1.7;
    color: #6c757d;
    font-size: 0.95rem;
}

.footer-section p,
.footer-section li {
    color: #6c757d;
    margin-bottom: 0.5rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

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

.footer-section ul li a {
    color: #6c757d;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
}

.footer-section a {
    color: #6c757d;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #d4a574;
    padding-left: 5px;
}

.footer-section a:hover {
    color: #d4a574;
}

.footer-contact {
    text-align: left;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #6c757d;
    font-size: 0.95rem;
}

.contact-item i {
    color: #d4a574;
    width: 18px;
    text-align: center;
    font-size: 1rem;
}

.contact-item span {
    color: #6c757d;
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.contact-info i {
    color: #d4a574;
    width: 16px;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 25px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border: 2px solid #e9ecef;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c757d;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.social-links a:hover {
    background: linear-gradient(135deg, #d4a574, #c19a5b);
    border-color: #d4a574;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 165, 116, 0.3);
}

.newsletter {
    display: flex;
    margin-bottom: 20px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.newsletter input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    background: #f8f9fa;
    color: #2c3e50;
    font-size: 0.9rem;
}

.newsletter input::placeholder {
    color: #6c757d;
}

.newsletter button {
    padding: 12px 18px;
    background: linear-gradient(135deg, #d4a574, #c19a5b);
    border: none;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter button:hover {
    background: linear-gradient(135deg, #c19a5b, #a0845a);
}

.footer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.badge {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    color: #6c757d;
    border: 1px solid #e9ecef;
}

.footer-bottom {
    background: #f8f9fa;
    padding: 25px 10px;
    border-top: 1px solid #e9ecef;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    margin: 0;
    color: #6c757d;
    font-size: 0.9rem;
}

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

.footer-links a {
    color: #6c757d;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #d4a574;
}



/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        z-index: 999;
    }

    .container {
        padding: 0 0px;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 15px 0;
    }

    .hamburger {
        display: block;
        cursor: pointer;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .story-section {
        padding: 80px 0;
        margin-top: 80px;
    }

    .story-title {
        font-size: 2.8rem;
    }

    .story-text {
        padding: 0 20px;
    }

    .story-text p {
        font-size: 1rem;
        text-align: left;
        margin-bottom: 20px;
    }

    .story-promise {
        font-size: 1rem !important;
        padding: 20px;
        margin: 30px 20px 0 20px !important;
    }

    .gallery-slider {
        margin: 40px 20px;
    }

    .slider-container {
        height: 350px;
    }

    .slide-content {
        padding: 40px 20px 20px;
    }

    .slide-content h3 {
        font-size: 1.5rem;
    }

    .slide-content p {
        font-size: 1rem;
    }

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

    .prev-btn {
        left: 10px;
    }

    .next-btn {
        right: 10px;
    }

    .journey-stats {
        grid-template-columns: 1fr;
        gap: 20px;
        margin: 40px 20px 0;
    }

    .experience {
        padding: 80px 0;
    }

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

    .experience-text h2 {
        font-size: 2.5rem;
    }

    .experience-subtitle {
        font-size: 1.1rem;
    }

    .experience-item {
        padding: 20px;
        gap: 20px;
    }

    .experience-number {
        min-width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .experience-info h4 {
        font-size: 1.2rem;
    }

    .coffee-cup {
        width: 150px;
        height: 150px;
    }

    .experience-stats {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }

    .stat-item {
        min-width: 100px;
    }

    .stat-number {
        font-size: 2rem;
    }

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

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

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-stats {
        justify-content: center;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .logo-img {
        height: 60px;
    }

    section {
        padding: 0px 0;
    }

    .section-header h2 {
        font-size: 2rem;
    }


    

}

@media (max-width: 480px) {
    .journey-content h1 {
        font-size: 1.8rem;
    }

    .slider-container {
        height: 280px;
    }

    .slide-content h3 {
        font-size: 1.3rem;
    }

    .slide-content p {
        font-size: 0.9rem;
    }

    .stat-item {
        padding: 20px 15px;
    }

    .stat-item h3 {
        font-size: 2rem;
    }
    
    .about-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    
    .franchise-highlight {
        padding: 25px 20px;
        margin: 0 10px;
    }
    
    .franchise-highlight h4 {
        font-size: 1.2rem;
    }
    
    .franchise-footer-btn {
        padding: 12px 20px;
        font-size: 0.95rem;
    }
    
    /* Brands responsive */
    .handwritten {
        font-size: 2.5rem;
    }
    
    .brands-grid {
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
        gap: 20px;
    }
    
    .brand-item {
        max-width: 160px;
        height: 90px;
        padding: 15px;
    }
    
    .brand-item:hover {
        transform: translateY(-5px) scale(1.01);
    }
    
    .handwritten-quote {
        font-size: 1.8rem;
    }

    .franchise-cta {
        padding: 60px 0;
    }

    .franchise-cta h2 {
        font-size: 2.2rem;
        margin-bottom: 15px;
    }

    .franchise-cta p {
        font-size: 1.1rem;
        margin-bottom: 30px;
        padding: 0 20px;
    }

    .franchise-btn {
        padding: 15px 30px;
        font-size: 1rem;
    }

    .footer {
        padding: 60px 0 0;
    }

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

    .footer-brand {
        padding-right: 0;
    }

    .footer-logo {
        justify-content: center;
        width: 60%;
        margin: auto;
    }

    .footer-section h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .social-links {
        justify-content: center;
    }

    .newsletter {
        max-width: 300px;
        margin: 0 auto 20px;
    }

    .footer-badges {
        justify-content: center;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }

    .footer-contact {
        text-align: center;
    }

    .contact-info {
        align-items: center;
    }

    /* Locations responsive for mobile */
    .locations-stats {
        grid-template-columns: 1fr;
    }

    .map-container {
        height: 250px;
    }

    .location-badge {
        font-size: 0.7rem;
        padding: 5px 12px;
    }

    .location-icon {
        width: 45px;
        height: 45px;
    }

    .location-icon i {
        font-size: 18px;
    }
    

}

/* Mobile Bottom Navigation */
.mobile-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100vw;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    display: none;
    padding: 8px 0 calc(8px + env(safe-area-inset-bottom));
    z-index: 1000;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
    overflow-x: hidden;
    box-sizing: border-box;
}

.mobile-bottom-nav .nav-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 8px 2px;
    text-decoration: none;
    color: #6c757d;
    transition: all 0.3s ease;
    border-radius: 12px;
    margin: 0 2px;
    position: relative;
    min-width: 0;
    box-sizing: border-box;
}

.mobile-bottom-nav .nav-item i {
    font-size: 1.2rem;
    margin-bottom: 4px;
    transition: all 0.3s ease;
}

.mobile-bottom-nav .nav-item span {
    font-size: 0.65rem;
    font-weight: 500;
    transition: all 0.3s ease;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
    text-align: center;
}

.mobile-bottom-nav .nav-item.active {
    color: #d4a574;
    background: rgba(212, 165, 116, 0.1);
}

.mobile-bottom-nav .nav-item.active i {
    transform: scale(1.1);
}

.mobile-bottom-nav .nav-item:hover:not(.active) {
    color: #d4a574;
    background: rgba(212, 165, 116, 0.05);
}

.mobile-bottom-nav .nav-item::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(135deg, #d4a574, #c19a5b);
    border-radius: 0 0 3px 3px;
    transition: width 0.3s ease;
}

.mobile-bottom-nav .nav-item.active::before {
    width: 30px;
}

/* Show mobile nav only on mobile devices */
@media (max-width: 768px) {
    .mobile-bottom-nav {
        display: flex;
    }
    
    body {
        padding-bottom: 80px;
    }
}

/* More Menu Overlay */
.more-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

.more-menu {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    border-radius: 20px 20px 0 0;
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.2);
    max-height: 50vh;
}

.more-menu-overlay.active .more-menu {
    transform: translateY(0);
}

.more-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.more-menu-header h3 {
    margin: 0;
    color: #8b4513;
    font-size: 18px;
    font-weight: 600;
}

.close-more-menu {
    background: none;
    border: none;
    font-size: 20px;
    color: #666;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.close-more-menu:hover {
    background: #f5f5f5;
    color: #8b4513;
}

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

.more-menu-item {
    display: flex;
    align-items: center;
    padding: 15px;
    text-decoration: none;
    color: #333;
    border-radius: 12px;
    transition: all 0.2s ease;
    font-size: 16px;
}

.more-menu-item:hover {
    background: #f8f4f0;
    color: #8b4513;
    transform: translateX(5px);
}

.more-menu-item i {
    font-size: 18px;
    margin-right: 15px;
    width: 20px;
    text-align: center;
    color: #8b4513;
}

.more-menu-item span {
    font-weight: 500;
}



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

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Loading Animation */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.pulse {
    animation: pulse 2s infinite;
}