/* ===== NEW SECTIONS STYLING ===== */

/* Section Header Styling */
.section_header {
    text-align: center;
    margin-bottom: 50px;
}

.section_header h2 {
    font-size: 40px;
    color: #30302e;
    font-weight: 700;
    margin-bottom: 10px;
}

.section_header p {
    font-size: 18px;
    color: #f26522;
    margin: 0;
}

/* Collections Section */
.collections_section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.collections_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.collection_card {
    background: white;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0px 0 20px 5px #f0f0f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 8px;
}

.collection_card:hover {
    transform: translateY(-10px);
    box-shadow: 0px 5px 30px 10px #e8e8e8;
}

.collection_number {
    font-size: 48px;
    font-weight: 700;
    color: #f26522;
    margin-bottom: 15px;
}

.collection_card h3 {
    font-size: 24px;
    color: #30302e;
    margin-bottom: 12px;
    font-weight: 600;
}

.collection_card p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

.view_collection_btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #f26522;
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    font-size: 14px;
    text-transform: uppercase;
}

.view_collection_btn:hover {
    background-color: #d94a10;
    text-decoration: none;
}

/* Why Choose Section */
.why_choose_section {
    padding: 80px 0;
    background-color: white;
}

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

.feature_card {
    background: #f9f9f9;
    padding: 40px 30px;
    text-align: center;
    border-radius: 8px;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.feature_card:hover {
    transform: translateY(-8px);
    background-color: #f0f0f0;
}

.feature_icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.feature_card h3 {
    font-size: 20px;
    color: #30302e;
    margin-bottom: 12px;
    font-weight: 600;
}

.feature_card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* About Section */
.about_section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.about_content {
    max-width: 800px;
    margin: 0 auto;
}

.about_text {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    text-align: center;
    margin-bottom: 40px;
}

.about_values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.value {
    background: white;
    padding: 30px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0px 0 15px 3px #f0f0f0;
}

.value h4 {
    font-size: 20px;
    color: #f26522;
    margin-bottom: 8px;
    font-weight: 600;
}

.value p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

/* Testimonials Section */
.testimonials_section {
    padding: 80px 0;
    background-color: white;
}

.testimonials_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.testimonial_card {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0px 0 15px 3px #f0f0f0;
    transition: transform 0.3s ease;
}

.testimonial_card:hover {
    transform: translateY(-8px);
}

.stars {
    color: #f26522;
    font-size: 18px;
    margin-bottom: 15px;
}

.testimonial_text {
    font-size: 15px;
    color: #666;
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.6;
}

.testimonial_author h4 {
    font-size: 16px;
    color: #30302e;
    margin: 0 0 5px 0;
    font-weight: 600;
}

.testimonial_author p {
    font-size: 13px;
    color: #999;
    margin: 0;
}

/* Enquiry Section */
.enquiry_section {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.enquiry_buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.enquiry_btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 40px;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.enquiry_btn.primary {
    background-color: #f26522;
    color: white;
}

.enquiry_btn.primary:hover {
    background-color: #d94a10;
    transform: translateY(-3px);
}

.enquiry_btn.whatsapp {
    background-color: #25d366;
    color: white;
}

.enquiry_btn.whatsapp:hover {
    background-color: #1fa855;
    transform: translateY(-3px);
}

/* Footer Section */
.footer_section {
    padding: 60px 0 0 0;
    background-color: #2b2a29;
    color: #f1f1f1;
}

.footer_section img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

.footer_content {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer_logo {
    margin-bottom: 20px;
}

.footer_logo img {
    max-width: 150px;
    height: auto;
}

.footer_tagline {
    font-size: 16px;
    color: #f26522;
    margin: 0;
    font-style: italic;
}

.footer_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
    padding: 40px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer_col h4 {
    font-size: 16px;
    color: #f1f1f1;
    margin-bottom: 20px;
    font-weight: 600;
    text-transform: uppercase;
}

.footer_col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer_col ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 14px;
}

.footer_col ul li a:hover {
    color: #f26522;
}

.contact_info li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 14px;
    color: #ccc;
}

.contact_info i {
    color: #f26522;
    font-size: 16px;
}

.contact_info a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact_info a:hover {
    color: #f26522;
}

/* Social Links */
.social_links {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.social_btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: rgba(255, 255, 255, 0.1);
    color: #f1f1f1;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 18px;
}

.social_btn:hover {
    background-color: #f26522;
    color: white;
    transform: translateY(-3px);
}

/* Enquiry Form */
.enquiry_form_section {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.enquiry_form_section h3 {
    color: #f1f1f1;
    font-size: 24px;
    margin-bottom: 25px;
    text-align: center;
    font-weight: 600;
}

.enquiry_form {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.form_group {
    display: flex;
}

.enquiry_form input,
.enquiry_form textarea {
    width: 100%;
    padding: 12px 15px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #f1f1f1;
    font-family: 'Poppins', sans-serif;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.enquiry_form input::placeholder,
.enquiry_form textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.enquiry_form input:focus,
.enquiry_form textarea:focus {
    outline: none;
    background-color: rgba(255, 255, 255, 0.15);
    border-color: #f26522;
}

.enquiry_form textarea {
    grid-column: span 2;
}

.submit_btn {
    grid-column: 1 / -1;
    padding: 15px 30px;
    background-color: #f26522;
    color: white;
    border: none;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.submit_btn:hover {
    background-color: #d94a10;
    transform: translateY(-3px);
}

/* Responsive Adjustments */

/* Tablet - 768px to 991px */
@media (min-width: 768px) and (max-width: 991px) {
    .logo_section {
        min-height: 160px;
    }
    
    .logo img {
        width: 144px;
        height: auto;
        image-rendering: crisp-edges;
    }
}

/* Mobile - below 768px */
@media (max-width: 767px) {
    .logo_section {
        min-height: 140px;
    }
    
    .logo img {
        width: 130px;
        height: auto;
        image-rendering: crisp-edges;
    }
    
    .section_header h2 {
        font-size: 28px;
    }
    
    .section_header p {
        font-size: 14px;
    }
    
    .collections_grid,
    .features_grid,
    .testimonials_grid {
        grid-template-columns: 1fr;
    }
    
    .enquiry_buttons {
        flex-direction: column;
    }
    
    .enquiry_btn {
        width: 100%;
        justify-content: center;
    }
    
    .footer_grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .enquiry_form textarea {
        grid-column: 1 / -1;
    }
}

/* Extra small devices */
@media (max-width: 479px) {
    .logo_section {
        min-height: 120px;
    }
    
    .logo img {
        width: 110px;
        height: auto;
        image-rendering: crisp-edges;
    }
}
