/* Franchise Section Styles */
.home-franchise {
    width: 100%;
    background-image: url(../img/background-1.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.franchise-section {
    width: 100%;
    padding: 80px 0;
    background: transparent;
}

.franchise-container {
    width: 90%;
    margin: 0 auto;
}

.franchise-title {
    color: #ff0000;
    font-size: 45px;
    text-align: center;
    margin-bottom: 50px;
    font-weight: 700;
    font-family: "Montserrat", sans-serif;
}

.franchise-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}

.franchise-left {
    width: 65%;
    padding-right: 30px;
}

.franchise-right {
    width: 35%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.franchise-subtitle {
    font-size: 34px;
    color: #333;
    margin-bottom: 15px;
    font-weight: 700;
}

.franchise-brand {
    font-size: 28px;
    color: #333;
    margin-bottom: 20px;
    font-weight: 700;
    text-transform: uppercase;
}

.franchise-text {
    color: #333;
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 30px;
    text-align: justify;
}

.franchise-item {
    margin-bottom: 25px;
}

.franchise-item-title {
    font-size: 22px;
    color: #333;
    margin-bottom: 8px;
    font-weight: 700;
}

.franchise-item-text {
    color: #333;
    font-size: 18px;
    line-height: 1.6;
    text-align: justify;
}

.franchise-image {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}

.franchise-img {
    max-width: 100%;
}

/* Icon container for franchise store images */
.franchise-store-icons {
    display: flex;
    justify-content: space-around;
    margin-top: 30px;
}

.franchise-store-icon {
    width: 80px;
    height: 80px;
    margin: 0 10px;
}

/* Responsive styles */
@media screen and (max-width: 1200px) {
    .franchise-container {
        width: 95%;
    }
}

/* Adding new media query for laptop screens */
@media screen and (max-width: 1366px) and (min-width: 993px) {
    .franchise-title {
        font-size: 40px;
        margin-bottom: 40px;
    }
    
    .franchise-subtitle {
        font-size: 30px;
    }
    
    .franchise-brand {
        font-size: 24px;
    }
    
    .franchise-text {
        font-size: 18px;
    }
    
    .franchise-item-title {
        font-size: 20px;
    }
    
    .franchise-item-text {
        font-size: 16px;
    }
    
    .franchise-store-icon {
        width: 70px;
        height: 70px;
    }
    
    .faq-title {
        font-size: 32px;
        margin-bottom: 40px;
    }
    
    .faq-question h3 {
        font-size: 18px;
    }
    
    .faq-answer p {
        font-size: 16px;
    }
    
    .contact-title {
        font-size: 32px;
    }
    
    .contact-subtitle {
        font-size: 18px;
    }
    
    .contact-info-text h3 {
        font-size: 18px;
    }
    
    .contact-info-text p {
        font-size: 15px;
    }
    
    .contact-form-title {
        font-size: 24px;
    }
    
    .form-group input,
    .form-group textarea {
        font-size: 15px;
    }
    
    .form-submit-btn {
        font-size: 16px;
    }
}

@media screen and (max-width: 992px) {
    .franchise-left,
    .franchise-right {
        width: 100%;
        padding-right: 0;
    }
    
    .franchise-right {
        margin-top: 40px;
    }
    
    .franchise-title {
        font-size: 40px;
    }
}

@media screen and (max-width: 768px) {
    .franchise-section {
        padding: 60px 0;
    }
    
    .franchise-title {
        font-size: 35px;
        margin-bottom: 40px;
    }
    
    .franchise-subtitle {
        font-size: 24px;
    }
    
    .franchise-brand {
        font-size: 20px;
    }
    
    .franchise-store-icons {
        flex-wrap: wrap;
    }
    
    .franchise-store-icon {
        margin-bottom: 15px;
    }
}

@media screen and (max-width: 576px) {
    .franchise-container {
        width: 95%;
    }
    
    .franchise-title {
        font-size: 30px;
    }
    
    .franchise-subtitle {
        font-size: 22px;
    }
    
    .franchise-brand {
        font-size: 18px;
    }
    
    .franchise-text,
    .franchise-item-text {
        font-size: 14px;
    }
}

/* FAQ Section Styles */
.faq-section {
    width: 100%;
    padding: 80px 0;
}

.faq-container {
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-title {
    font-size: 36px;
    font-weight: 800;
    color: #333;
    text-align: center;
    margin-bottom: 50px;
    text-transform: uppercase;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.12);
}

.faq-question {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question h3 {
    font-size: 20px;
    font-weight: 600;
    color: #444;
    margin: 0;
}

.faq-icon {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #ff0000;
    transition: all 0.3s ease;
}

.faq-answer {
    max-height: 0;
    padding: 0 25px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-answer p {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
    padding-bottom: 20px;
    margin: 0;
}

.faq-item.active .faq-question {
    background-color: rgba(255, 0, 0, 0.05);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

/* Responsive styles for FAQ section */
@media screen and (max-width: 768px) {
    .faq-title {
        font-size: 30px;
        margin-bottom: 40px;
    }
    
    .faq-question h3 {
        font-size: 18px;
    }
    
    .faq-question {
        padding: 18px 20px;
    }
    
    .faq-answer {
        padding: 0 20px;
    }
}

@media screen and (max-width: 576px) {
    .faq-title {
        font-size: 26px;
        margin-bottom: 30px;
    }
    
    .faq-question h3 {
        font-size: 16px;
    }
    
    .faq-icon {
        width: 24px;
        height: 24px;
        font-size: 16px;
    }
    
    .faq-question {
        padding: 16px 15px;
    }
    
    .faq-answer {
        padding: 0 15px;
    }
    
    .faq-answer p {
        font-size: 14px;
    }
}

/* Contact Section Styles */
.contact-section {
    width: 100%;
    padding: 80px 0;
    background-image: url(../img/background.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    border-top: 2px solid #c7c7c7;
}

.contact-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.contact-left {
    flex: 1;
    min-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.contact-right {
    flex: 1;
    min-width: 300px;
}

.contact-title {
    font-size: 40px;
    font-weight: 800;
    color: #333;
    position: relative;
    padding-bottom: 20px;
}

.contact-title::after {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, #ff0000, #ff5e00);
}

.contact-subtitle {
    font-size: 18px;
    color: #555;
    line-height: 1.6;
    max-width: 100%;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 35px;
    margin-top: 40px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: transform 0.3s ease;
}

.contact-info-item:hover {
    transform: translateX(5px);
}

.contact-info-icon {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff0000, #ff5e00);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.contact-info-item:hover .contact-info-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(255, 0, 0, 0.3);
}

.contact-info-text h3 {
    font-size: 22px;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
}

.contact-info-text p {
    font-size: 17px;
    color: #555;
    line-height: 1.5;
}

.contact-btn-container {
    width: 100%;
}

.contact-btn {
    background: linear-gradient(to right, #e60000, #e65500);
    color: white;
    font-size: 17px;
    font-weight: 600;
    padding: 16px 20px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.4s ease;
    margin-top: 15px;
    box-shadow: 0 4px 10px rgba(255, 0, 0, 0.2);
    text-transform: uppercase;
    letter-spacing: 1px;
    width: 100%;
    border: none;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 7px 15px rgba(255, 0, 0, 0.3);
}

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

.contact-form-container {
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    padding: 40px;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
    overflow: hidden;
    animation: float 6s ease-in-out infinite;
}

.contact-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, #ff0000, #ff5e00);
    z-index: 2;
}

.contact-form-container:hover {
    transform: translateY(-7px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.contact-form-title {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 25px;
    text-align: center;
}

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

.form-group {
    position: relative;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 18px;
    font-size: 16px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    background-color: #f7f7f7;
    color: #333;
    transition: all 0.3s ease;
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.05);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #ff0000;
    box-shadow: 0 0 0 3px rgba(255, 0, 0, 0.1);
    outline: none;
    background-color: #fff;
}

.form-group input::placeholder,
.form-group textarea::placeholder,
.form-group select {
    color: #999;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.form-checkbox input {
    width: auto;
    margin-top: 5px;
}

.form-checkbox label {
    font-size: 14px;
    color: #666;
    line-height: 1.4;
}

.form-submit-btn {
    background: linear-gradient(to right, #ff0000, #ff5e00);
    color: white;
    font-size: 17px;
    font-weight: 600;
    padding: 16px 20px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.4s ease;
    margin-top: 15px;
    box-shadow: 0 4px 10px rgba(255, 0, 0, 0.2);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-submit-btn:hover {
    background: linear-gradient(to right, #e60000, #e65500);
    transform: translateY(-3px);
    box-shadow: 0 7px 15px rgba(255, 0, 0, 0.3);
}

/* Responsive styles for contact section */
@media screen and (max-width: 992px) {
    .contact-container {
        flex-direction: column;
    }
    
    .contact-left,
    .contact-right {
        width: 100%;
    }
    
    .contact-title {
        font-size: 32px;
    }
    
    .contact-info {
        margin-bottom: 40px;
    }
}

@media screen and (max-width: 768px) {
    .contact-title {
        font-size: 28px;
    }
    
    .contact-subtitle {
        font-size: 16px;
    }
    
    .contact-form-container {
        padding: 25px;
    }
    
    .contact-form-title {
        font-size: 22px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px 14px;
    }
}

@media screen and (max-width: 576px) {
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-title {
        font-size: 26px;
    }
    
    .contact-info-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .contact-info-text h3 {
        font-size: 18px;
    }
    
    .contact-info-text p {
        font-size: 14px;
    }
    
    .contact-form-container {
        padding: 20px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 14px;
    }
    
    .form-submit-btn {
        font-size: 15px;
        padding: 12px 18px;
    }
}
