/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
}

h3 {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
}

p {
    margin-bottom: 1rem;
    color: #666;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
}

.btn-secondary {
    background: #25d366;
    color: white;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.btn-outline {
    background: transparent;
    color: #e74c3c;
    border: 2px solid #e74c3c;
}

.btn-outline:hover {
    background: #e74c3c;
    color: white;
}

.btn-large {
    padding: 16px 32px;
    font-size: 18px;
    width: 100%;
    justify-content: center;
}

@media (max-width: 768px) {
    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .btn-large {
        padding: 14px 28px;
        font-size: 16px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fadeInUp {
    animation: fadeInUp 0.8s ease-out forwards;
}

.animate-slideInUp {
    animation: slideInUp 0.8s ease-out forwards;
}

.animate-fadeIn {
    animation: fadeIn 0.6s ease-out forwards;
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}

.fade-in-up.delay-1 {
    animation-delay: 0.2s;
}

.fade-in-up.delay-2 {
    animation-delay: 0.4s;
}

.fade-in-up.delay-3 {
    animation-delay: 0.6s;
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    transition: all 0.3s ease;
}

.sticky-cta.hidden {
    opacity: 0;
    transform: translateY(100px);
    pointer-events: none;
}

.sticky-btn {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    box-shadow: 0 4px 20px rgba(231, 76, 60, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.sticky-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 25px rgba(231, 76, 60, 0.5);
}

@media (max-width: 768px) {
    .sticky-cta {
        bottom: 16px;
        right: 16px;
    }
    
    .sticky-btn {
        padding: 10px 16px;
        font-size: 14px;
    }
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grain)"/></svg>') repeat;
    animation: parallax 20s ease-in-out infinite;
}

@keyframes parallax {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(231, 76, 60, 0.1), rgba(192, 57, 43, 0.1)), url('WEB-01.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-logo {
    max-width: 280px;
    height: auto;
    margin-bottom: 0rem;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
}

.hero-logo:hover {
    transform: scale(1.05);
}

.hero-title {
    color: white;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

/* Hero Franchise Showcase */
.hero-franchise-showcase {
    margin: 2rem 0 3rem 0;
}

.hero-advantages-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.hero-advantages-left,
.hero-advantages-right {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hero-advantage-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 1rem;
    transition: all 0.3s ease;
}

.hero-advantage-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.hero-advantage-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.hero-advantage-content h4 {
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    margin: 0 0 0.25rem 0;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.hero-advantage-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.8rem;
    margin: 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.hero-franchise-image {
    position: relative;
    max-width: 280px;
    margin: 0 auto;
}

.hero-franchise-img {
    width: 100%;
    height: auto;
    max-height: 200px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.hero-franchise-img:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.hero-image-overlay {
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
}

.hero-image-badge {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.4);
    white-space: nowrap;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .hero-section {
        min-height: 80vh;
        padding: 2rem 0;
    }
    
    .hero-overlay {
        background-position: inherit;
    }
    
    .hero-logo {
        max-width: 200px;
        margin-bottom: 0.5rem;
    }
    
    .hero-franchise-showcase {
        margin: 1.5rem 0 1rem 0;
    }
    
    .hero-advantages-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto auto;
        gap: 0.8rem;
        max-width: 100%;
        grid-template-areas: 
            "left1 right1"
            "left2 right2"
            "image image";
    }
    
    .hero-advantages-left {
        display: contents;
    }
    
    .hero-advantages-left .hero-advantage-item:nth-child(1) {
        grid-area: left1;
    }
    
    .hero-advantages-left .hero-advantage-item:nth-child(2) {
        grid-area: left2;
    }
    
    .hero-advantages-right {
        display: contents;
    }
    
    .hero-advantages-right .hero-advantage-item:nth-child(1) {
        grid-area: right1;
    }
    
    .hero-advantages-right .hero-advantage-item:nth-child(2) {
        grid-area: right2;
    }
    
    .hero-advantages-right .hero-advantage-item:nth-child(3) {
        grid-area: right2;
        margin-top: 0.8rem;
    }
    
    .hero-franchise-image {
        grid-area: image;
        max-width: 200px;
        margin: 0.8rem auto 0 auto;
    }
    
    .hero-advantage-item {
        flex-direction: row;
        text-align: left;
        padding: 0.8rem;
        font-size: 0.85rem;
    }
    
    .hero-advantage-icon {
        width: 36px;
        height: 36px;
        margin-bottom: 0;
        margin-right: 0.6rem;
    }
    
    .hero-advantage-content h4 {
        font-size: 0.8rem;
        margin-bottom: 0.1rem;
    }
    
    .hero-advantage-content p {
        font-size: 0.7rem;
        line-height: 1.3;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
        margin-top: 1.5rem;
    }
    
    .hero-cta .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .hero-advantages-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.6rem;
        grid-template-areas: 
            "left1 right1"
            "left2 right2"
            "right3 image";
    }
    
    .hero-advantages-right .hero-advantage-item:nth-child(3) {
        grid-area: right3;
        margin-top: 0;
    }
    
    .hero-franchise-image {
        grid-area: image;
        max-width: 160px;
        margin: 0.6rem auto 0 auto;
    }
    
    .hero-advantage-item {
        padding: 0.6rem;
        flex-direction: column;
        text-align: center;
    }
    
    .hero-advantage-icon {
        width: 32px;
        height: 32px;
        margin-right: 0;
        margin-bottom: 0.3rem;
    }
    
    .hero-advantage-content h4 {
        font-size: 0.75rem;
    }
    
    .hero-advantage-content p {
        font-size: 0.65rem;
    }
    
    .hero-franchise-img {
        max-height: 120px;
    }
}

/* Story Section */
.story-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.05), rgba(192, 57, 43, 0.05));
}

.story-tabs {
    max-width: 1000px;
    margin: 0 auto;
}

.tab-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.tab-btn {
    background: white;
    border: 2px solid #e9ecef;
    color: #666;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.tab-btn.active,
.tab-btn:hover {
    background: #e74c3c;
    color: white;
    border-color: #e74c3c;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

.tab-content {
    position: relative;
    min-height: 400px;
}

.tab-pane {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
    pointer-events: none;
}

.tab-pane.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.tab-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.tab-text h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.tab-text p {
    font-size: 1.1rem;
    line-height: 1.7;
}

.tab-image {
    position: relative;
}

.tab-img {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.tab-img:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.image-placeholder {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    padding: 3rem 2rem;
    border-radius: 12px;
    text-align: center;
    font-weight: 500;
    box-shadow: 0 10px 30px rgba(231, 76, 60, 0.2);
}

@media (max-width: 768px) {
    .story-section {
        padding: 2.5rem 0;
        max-height: none;
        overflow: visible;
    }
    
    .tab-buttons {
        gap: 0.5rem;
        margin-bottom: 1rem;
    }
    
    .tab-btn {
        padding: 8px 16px;
        font-size: 14px;
        margin: 0;
    }
    
    .tab-inner {
        grid-template-columns: 1fr;
        gap: 1rem;
        text-align: center;
    }
    
    .tab-content {
        min-height: auto;
        position: relative;
    }
    
    .tab-pane {
        position: relative;
        max-height: none;
        overflow: visible;
        margin-bottom: 0;
        padding-top: 0;
    }
    
    .tab-pane.active {
        position: relative;
        margin-top: 0;
        padding-top: 0;
    }
    
    /* Köklerimiz tab - altındaki boşluğu kaldır */
    .tab-pane#kokler {
        margin-bottom: 0;
        padding-bottom: 0;
    }
    
    .tab-pane#kokler .tab-text {
        margin-bottom: 1rem;
    }
    
    /* Gelişimimiz tab - başı ve sonundaki boşlukları minimize et */
    .tab-pane#gelisim {
        margin-top: 0;
        margin-bottom: 0;
        padding-top: 0;
        padding-bottom: 0;
    }
    
    .tab-pane#gelisim .tab-text {
        margin-top: 0;
        margin-bottom: 1rem;
    }
    
    /* Bugün tab - başındaki uzun boşluğu minimize et */
    .tab-pane#bugun {
        margin-top: 0;
        padding-top: 0;
    }
    
    .tab-pane#bugun .tab-text {
        margin-top: 0;
        margin-bottom: 1rem;
    }
    
    .tab-text {
        max-height: none;
        overflow: visible;
        margin-bottom: 1rem;
        margin-top: 0;
        padding-top: 0;
    }
    
    .tab-text h3 {
        margin-top: 0;
        margin-bottom: 0.5rem;
    }
    
    .tab-text p {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 1rem;
        margin-top: 0;
        overflow: visible;
        word-wrap: break-word;
    }
    
    .tab-image {
        max-height: 300px;
        overflow: hidden;
        margin-top: 0;
    }
    
    .tab-img {
        max-height: 250px;
        width: 100%;
        object-fit: cover;
    }
}

/* Values Section */
.values-section {
    padding: 4rem 0;
    background: white;
}

.section-title {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 3rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.value-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid #f1f3f4;
    opacity: 1;
    transform: translateY(0);
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.value-card:hover::before {
    transform: scaleX(1);
}

.card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.value-card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
}

.value-card h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.value-card > p {
    color: #666;
    margin-bottom: 1rem;
}

.card-detail {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    padding-top: 0;
    border-top: 1px solid transparent;
}

.value-card:hover .card-detail {
    opacity: 1;
    max-height: 100px;
    padding-top: 1rem;
    border-top-color: #f1f3f4;
}

.card-detail p {
    font-size: 0.9rem;
    color: #888;
    margin: 0;
}

@media (max-width: 768px) {
    .values-section {
        padding: 2.5rem 0;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .value-card {
        padding: 1.5rem;
    }
    
    .card-icon {
        width: 60px;
        height: 60px;
    }
}

/* Franchise Advantages Section */
.franchise-advantages-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.franchise-advantages-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    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="25" cy="25" r="1" fill="%23e74c3c" opacity="0.05"/><circle cx="75" cy="75" r="1" fill="%23c0392b" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.franchise-advantages-section .container {
    position: relative;
    z-index: 1;
}

.franchise-advantages-section .section-title {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
}

.franchise-advantages-section .section-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 3rem;
    font-size: 1.1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Franchise Image Container */
.franchise-image-container {
    text-align: center;
    margin-bottom: 3rem;
}

.franchise-main-image {
    max-width: 800px;
    width: 100%;
    height: auto;
}

/* New Advantages Grid - 2+2+1 Layout */
.advantages-grid-new {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.advantage-card-full {
    grid-column: 1 / -1;
    max-width: 500px;
    margin: 0 auto;
}

/* Original advantages grid for other sections */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.advantage-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(231, 76, 60, 0.1);
    opacity: 1;
    transform: translateY(0);
}

.advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.02), rgba(192, 57, 43, 0.02));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.advantage-card:hover::before {
    opacity: 1;
}

.advantage-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 50px rgba(231, 76, 60, 0.15);
    border-color: rgba(231, 76, 60, 0.2);
}

.advantage-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.advantage-icon img {
    width: 48px;
    height: 48px;
    filter: brightness(0) invert(1);
    transition: all 0.4s ease;
}

.advantage-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: all 0.4s ease;
    transform: translate(-50%, -50%);
}

.advantage-card:hover .advantage-icon::before {
    width: 100%;
    height: 100%;
}

.advantage-card:hover .advantage-icon {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 10px 25px rgba(231, 76, 60, 0.3);
}

.advantage-card h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 600;
}

.advantage-main {
    color: #e74c3c !important;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.5rem !important;
    line-height: 1.4;
}

.advantage-sub {
    color: #666 !important;
    font-size: 0.95rem;
    margin-bottom: 0 !important;
    line-height: 1.5;
    font-style: italic;
}

@media (max-width: 1200px) {
    .advantages-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .franchise-advantages-section {
        padding: 3rem 0;
    }
    
    .franchise-image-container {
        margin-bottom: 2rem;
    }
    
    .franchise-main-image {
        max-width: 450px;
    }
    
    .advantages-grid-new {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .advantage-card-full {
        grid-column: 1;
        max-width: none;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .advantage-card {
        padding: 2rem 1.5rem;
        border-radius: 16px;
    }
    
    .advantage-icon {
        width: 70px;
        height: 70px;
    }
    
    .advantage-icon img {
        width: 40px;
        height: 40px;
    }
    
    .advantage-card h3 {
        font-size: 1.2rem;
    }
    
    .advantage-main {
        font-size: 1rem !important;
    }
    
    .advantage-sub {
        font-size: 0.9rem !important;
    }
}

/* Timeline */
.timeline-section {
    margin-top: 3rem;
    text-align: center;
}

.timeline-section h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    text-align: center;
    color: #2c3e50;
}

.timeline-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #34495e;
    text-align: center;
    margin-bottom: 2.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.timeline {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.1), rgba(192, 57, 43, 0.1));
    z-index: 1;
}

.timeline::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 0%;
    height: 2px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    z-index: 2;
    animation: timelineProgress 2s ease-out forwards;
    animation-delay: 0.5s;
}

@keyframes timelineProgress {
    to {
        width: 100%;
    }
}

.timeline-item {
    position: relative;
    z-index: 10;
    text-align: center;
    opacity: 1;
    visibility: visible;
}

.timeline-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #e9ecef;
    margin: 0 auto 1rem;
    position: relative;
    transition: all 0.3s ease;
    z-index: 15;
}

.timeline-dot.active {
    background: #e74c3c;
    box-shadow: 0 0 0 4px rgba(231, 76, 60, 0.2);
}

.timeline-content {
    position: relative;
    z-index: 12;
    opacity: 1;
    visibility: visible;
}

.timeline-content h4 {
    font-size: 1rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

@media (max-width: 768px) {
    .timeline {
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        overflow-y: hidden;
        padding: 20px 0;
        gap: 20px;
        justify-content: flex-start;
        align-items: center;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
    }
    
    .timeline::-webkit-scrollbar {
        height: 4px;
    }
    
    .timeline::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 2px;
    }
    
    .timeline::-webkit-scrollbar-thumb {
        background: #e74c3c;
        border-radius: 2px;
    }
    
    .timeline-item {
        flex: 0 0 auto;
        min-width: 180px;
        margin: 0;
        text-align: center;
    }
    
    .timeline-dot {
        position: relative;
        margin: 0 auto 10px;
    }
    
    .timeline::before {
        top: 50%;
        left: 0;
        width: 100%;
        height: 2px;
        transform: none;
    }
    
    .timeline::after {
        top: 50%;
        left: 0;
        width: 0%;
        height: 2px;
        transform: none;
        animation: timelineProgress 2s ease-out forwards;
        animation-delay: 0.5s;
    }
}

@keyframes timelineProgressVertical {
    to {
        height: 100%;
    }
}

/* Form Section */
.form-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.08) 0%, rgba(192, 57, 43, 0.12) 100%);
}

.form-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Process Steps */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.step {
    text-align: center;
    padding: 2rem 1rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.step-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
    transition: all 0.3s ease;
}

.step:hover .step-icon {
    transform: scale(1.1);
}

.step h4 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.step p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

/* Form Container */
.form-container {
    max-width: 1000px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.franchise-form {
    width: 100%;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.form-group {
    position: relative;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #2c3e50;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #e74c3c;
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

.form-group input.error,
.form-group select.error {
    border-color: #dc3545;
}

.error-message {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: block;
    min-height: 1.2rem;
}

/* Checkbox */
.checkbox-group {
    margin: 2.5rem 0;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    cursor: pointer;
    font-size: 1rem;
    line-height: 1.6;
    padding: 1rem;
    margin: -0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 25px;
    height: 25px;
    min-width: 25px;
    min-height: 25px;
    border: 2px solid #ddd;
    border-radius: 6px;
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-top: 2px;
    background: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    display: inline-block;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: #e74c3c;
    border-color: #e74c3c;
    box-shadow: 0 2px 8px rgba(231, 76, 60, 0.3);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 0px;
    width: 9px;
    height: 16px;
    border: solid white;
    border-width: 0 3px 3px 0;
    transform: rotate(45deg);
}

.checkbox-text {
    flex: 1;
    color: #2c3e50;
    font-weight: 500;
}

.checkbox-text a {
    color: #e74c3c;
    text-decoration: none;
    font-weight: 600;
}

.checkbox-text a:hover {
    text-decoration: underline;
}

.checkmark:hover {
    border-color: #e74c3c;
    transform: scale(1.08);
    box-shadow: 0 4px 8px rgba(231, 76, 60, 0.2);
}

.checkbox-label:hover {
    background: rgba(231, 76, 60, 0.05);
}

.checkbox-label:hover .checkbox-text {
    color: #1a252f;
}

.checkbox-label:active {
    background: rgba(231, 76, 60, 0.1);
    transform: scale(0.98);
}

/* Button Loading State */
.btn-loading {
    display: flex;
    align-items: center;
    gap: 8px;
}

.spinner {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 768px) {
    .form-section {
        padding: 2.5rem 0;
    }
    
    .form-container {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Mobile Checkbox Optimizations */
    .checkbox-group {
        margin: 2rem 0;
        padding: 1.25rem;
    }
    
    .checkbox-label {
        gap: 18px;
        font-size: 1.1rem;
        line-height: 1.7;
        padding: 1.5rem;
        margin: -0.75rem;
        min-height: 60px;
        align-items: center;
    }
    
    .checkmark {
        width: 25px;
        height: 25px;
        margin-top: 2px;
        min-width: 25px;
        min-height: 25px;
        border-width: 2px;
    }
    
    .checkbox-label input[type="checkbox"]:checked + .checkmark::after {
        left: 5px;
        top: 0px;
        width: 9px;
        height: 16px;
        border-width: 0 3px 3px 0;
    }
    
    .checkbox-text {
        font-size: 1.1rem;
        touch-action: manipulation;
    }
}

/* Thank You Page */
.thank-you-page {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 1;
    transition: all 0.3s ease;
}

.thank-you-page.hidden {
    opacity: 0;
    pointer-events: none;
}

.thank-you-content {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    text-align: center;
    max-width: 500px;
    width: 90%;
    position: relative;
    transform: scale(1);
    transition: all 0.3s ease;
}

.thank-you-page.hidden .thank-you-content {
    transform: scale(0.9);
}

.thank-you-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: #28a745;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.thank-you-content h2 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.thank-you-content p {
    color: #666;
    margin-bottom: 1rem;
}

.thank-you-subtitle {
    font-weight: 500;
    color: #2c3e50 !important;
}

.thank-you-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.close-thank-you {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: #999;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.close-thank-you:hover {
    background: #f8f9fa;
    color: #666;
}

@media (max-width: 768px) {
    .thank-you-content {
        padding: 2rem 1.5rem;
    }
    
    .thank-you-actions {
        gap: 0.75rem;
    }
}

/* Footer */
.footer {
    background: linear-gradient(135deg, rgba(169, 50, 38, 0.8), rgba(146, 43, 33, 0.8)), url('WEB-02.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    padding: 3rem 0 1rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.footer .container {
    position: relative;
    z-index: 2;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-logo {
    max-width: 160px;
    height: auto;
    margin-bottom: 0.5rem;
    filter: brightness(1.1) drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
}

.footer-logo:hover {
    transform: scale(1.05);
}

.footer-brand h3 {
    color: white;
    margin-bottom: 0.5rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

/* Footer Social Media Icons */
.footer-social {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 1;
}

.social-icon svg {
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.social-icon.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
}

.social-icon.instagram:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(240, 148, 51, 0.4);
}

.social-icon.facebook {
    background: #1877f2;
    color: white;
}

.social-icon.facebook:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(24, 119, 242, 0.4);
    background: #166fe5;
}

.social-icon.tiktok {
    background: #000;
    color: white;
}

.social-icon.tiktok:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    background: #333;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .footer {
        padding: 2rem 0 1rem;
        background-attachment: scroll;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    .footer-logo {
        max-width: 130px;
    }
    
    .footer-links {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* Animation Classes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.animate-fadeInUp {
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.animate-fadeIn {
    animation: fadeIn 0.6s ease-out forwards;
}

/* AOS Animation Classes */
[data-aos] {
    opacity: 0;
    transition: all 0.6s ease;
}

[data-aos].aos-animate {
    opacity: 1;
}

[data-aos="fade-up"] {
    transform: translateY(30px);
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
}

[data-aos="fade-right"] {
    transform: translateX(-30px);
}

[data-aos="fade-right"].aos-animate {
    transform: translateX(0);
}

/* Utility Classes */
.hidden {
    display: none !important;
}

.text-center {
    text-align: center;
}

.mb-0 {
    margin-bottom: 0 !important;
}

.mt-2 {
    margin-top: 1rem;
}

.mb-2 {
    margin-bottom: 1rem;
}

/* Loading States */
.loading {
    pointer-events: none;
    opacity: 0.7;
}

/* Focus Styles for Accessibility */
.btn:focus,
input:focus,
select:focus,
button:focus {
    outline: 2px solid #e74c3c;
    outline-offset: 2px;
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    .btn-primary {
        background: #000;
        border: 2px solid #fff;
    }
    
    .value-card {
        border: 2px solid #000;
    }
}

/* Print Styles */
@media print {
    .sticky-cta,
    .hero-bg,
    .thank-you-page {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    .container {
        max-width: none;
        padding: 0;
    }
}

/* Form Message Styles */
.form-message {
    margin-bottom: 1.5rem;
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    position: relative;
}

.form-message.show {
    opacity: 1;
    transform: translateY(0);
}

.form-message-success {
    background-color: #d4edda;
    border-color: #28a745;
    color: #155724;
}

.form-message-error {
    background-color: #f8d7da;
    border-color: #dc3545;
    color: #721c24;
}

.message-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
}

.message-text {
    flex: 1;
    font-weight: 500;
    line-height: 1.4;
}

.message-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    font-weight: bold;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.form-message-success .message-close {
    color: #155724;
}

.form-message-success .message-close:hover {
    background-color: rgba(21, 87, 36, 0.1);
}

.form-message-error .message-close {
    color: #721c24;
}

.form-message-error .message-close:hover {
    background-color: rgba(114, 28, 36, 0.1);
}

@media (max-width: 768px) {
    .form-message {
        padding: 0.75rem;
        margin-bottom: 1rem;
    }
    
    .message-content {
        gap: 0.75rem;
    }
    
    .message-text {
        font-size: 0.9rem;
    }
    
    .message-close {
        font-size: 1.25rem;
        width: 20px;
        height: 20px;
    }
    
    /* Active tab override for mobile */
    .tab-pane.active {
        display: block !important;
        opacity: 1 !important;
        transform: translateY(0) !important;
        pointer-events: all !important;
        position: relative !important;
    }
    
    /* Ensure non-active tabs are hidden */
    .tab-pane:not(.active) {
        display: none !important;
    }
}

/* Phone Float Button */
.phone-float {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 55px;
    height: 55px;
    background: #007bff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(0, 123, 255, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
}

.phone-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(0, 123, 255, 0.4);
    color: white;
    text-decoration: none;
    background: #0056b3;
}

.phone-float svg {
    width: 28px;
    height: 28px;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
    animation: whatsappPulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
    color: white;
    text-decoration: none;
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
}

@keyframes whatsappPulse {
    0% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    }
    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3), 0 0 0 10px rgba(37, 211, 102, 0.1);
    }
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    }
}

@media (max-width: 768px) {
    .phone-float {
        width: 45px;
        height: 45px;
        bottom: 75px;
        right: 15px;
    }
    
    .phone-float svg {
        width: 24px;
        height: 24px;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 15px;
        right: 15px;
    }
    
    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }
    
    .footer-social {
        gap: 0.75rem;
        justify-content: center;
    }
    
    .social-icon {
        width: 40px;
        height: 40px;
    }
    
    .social-icon svg {
        width: 20px;
        height: 20px;
    }
}