/* ====== CONTACT PAGE STYLES ====== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ====== HEADER STYLES ====== */
.header {
    background-color: #232f3e;
    color: white;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    flex-wrap: wrap;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 22px;
    font-weight: 700;
    color: white;
}

.logo i {
    color: #ff9900;
    font-size: 28px;
}

.search-container {
    flex: 1;
    max-width: 600px;
    margin: 0 20px;
    position: relative;
}

.search-box {
    display: flex;
    background: white;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.search-box input {
    flex: 1;
    padding: 12px 20px;
    border: none;
    outline: none;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
}

.search-box input::placeholder {
    color: #999;
}

.search-box button {
    background-color: #ff9900;
    color: white;
    border: none;
    padding: 0 25px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-box button:hover {
    background-color: #e68900;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cart-container {
    position: relative;
}

.cart-icon {
    font-size: 22px;
    cursor: pointer;
    position: relative;
    padding: 8px;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.cart-icon:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: #ff9900;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}

/* ====== NAVBAR STYLES ====== */
.navbar {
    background-color: #37475a;
    padding: 0 5%;
}

.navbar ul {
    display: flex;
    flex-wrap: wrap;
}

.navbar li {
    position: relative;
}

.navbar a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 15px 20px;
    font-weight: 500;
    transition: background-color 0.3s;
    white-space: nowrap;
}

.navbar a:hover {
    background-color: #485769;
}

.navbar a.active {
    background-color: #ff9900;
    color: white;
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    min-width: 220px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    display: none;
    z-index: 100;
    border-radius: 0 0 8px 8px;
    overflow: hidden;
    animation: dropdownFade 0.3s ease;
}

@keyframes dropdownFade {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-content a {
    color: #333;
    padding: 12px 20px;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    gap: 10px;
}

.dropdown-content a:hover {
    background-color: #f5f5f5;
    color: #ff9900;
}

.dropdown-content a i {
    width: 20px;
    color: #666;
}

.dropdown:hover .dropdown-content {
    display: block;
}
.contact-page {
    padding: 0 5% 60px;
    background-color: #f8f9fa;
}

.contact-container {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

/* Contact Information Side */
.contact-info {
    flex: 1;
    min-width: 300px;
}

.info-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #eee;
    transition: transform 0.3s, box-shadow 0.3s;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.info-card h3 {
    color: #232f3e;
    margin-bottom: 20px;
    font-size: 22px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 15px;
    border-bottom: 2px solid #ff9900;
}

.info-card h3 i {
    color: #ff9900;
}

.guide-steps {
    margin: 25px 0;
}

.step {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #eee;
}

.step:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.step-number {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #ff9900, #ffad33);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
}

.step-content h4 {
    color: #232f3e;
    margin-bottom: 8px;
    font-size: 16px;
}

.step-content p {
    color: #666;
    line-height: 1.6;
    font-size: 14px;
}

.step-content pre {
    margin-top: 10px;
    padding: 15px;
    background-color: #2d2d2d;
    color: #f8f8f2;
    border-radius: 6px;
    overflow-x: auto;
    font-size: 13px;
    line-height: 1.5;
    border: 1px solid #444;
}

.step-content code {
    font-family: 'Courier New', monospace;
}

.important-note {
    background: linear-gradient(to right, #fff8e1, #ffecb3);
    border-left: 4px solid #ff9900;
    padding: 20px;
    border-radius: 6px;
    margin-top: 25px;
}

.important-note h4 {
    color: #232f3e;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
}

.important-note h4 i {
    color: #ff9900;
}

.important-note p {
    color: #5d4037;
    line-height: 1.6;
    font-size: 14px;
}

.contact-details {
    margin-top: 25px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.contact-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.contact-item i {
    color: #ff9900;
    font-size: 20px;
    margin-top: 3px;
    flex-shrink: 0;
    width: 24px;
}

.contact-item h4 {
    color: #232f3e;
    margin-bottom: 5px;
    font-size: 16px;
}

.contact-item p {
    color: #666;
    line-height: 1.5;
    font-size: 14px;
}

/* Contact Form Side */
.contact-form-container {
    flex: 1;
    min-width: 300px;
}

.form-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #eee;
    height: 100%;
}

.form-card h3 {
    color: #232f3e;
    margin-bottom: 15px;
    font-size: 22px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-card h3 i {
    color: #ff9900;
}

.form-card>p {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
    font-size: 15px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: 500;
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    transition: all 0.3s;
    background-color: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff9900;
    box-shadow: 0 0 0 3px rgba(255, 153, 0, 0.1);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23333' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 12px;
    padding-right: 40px;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #ff9900, #ffad33);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

.submit-btn:hover {
    background: linear-gradient(135deg, #e68900, #ff9900);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 153, 0, 0.3);
}

.submit-btn:active {
    transform: translateY(0);
}

.form-note {
    margin-top: 25px;
    padding: 15px;
    background-color: #e8f5e9;
    border-radius: 6px;
    border-left: 4px solid #4CAF50;
}

.form-note p {
    color: #2e7d32;
    font-size: 14px;
    line-height: 1.5;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.form-note i {
    color: #4CAF50;
    margin-top: 2px;
    flex-shrink: 0;
}

/* FAQ Section */
.faq-section {
    background: white;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    margin-top: 40px;
}

.faq-section h2 {
    color: #232f3e;
    text-align: center;
    margin-bottom: 40px;
    font-size: 28px;
    position: relative;
    padding-bottom: 15px;
}

.faq-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, #ff9900, #ffad33);
    border-radius: 2px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.faq-item {
    padding: 25px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #ff9900;
    transition: transform 0.3s;
}

.faq-item:hover {
    transform: translateY(-5px);
}

.faq-item h4 {
    color: #232f3e;
    margin-bottom: 12px;
    font-size: 17px;
    line-height: 1.4;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.faq-item h4::before {
    content: 'Q:';
    color: #ff9900;
    font-weight: bold;
    flex-shrink: 0;
}

.faq-item p {
    color: #666;
    line-height: 1.6;
    font-size: 14px;
    padding-left: 20px;
}

/* Success Message */
.success-message {
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    margin-top: 30px;
    display: none;
    animation: fadeInUp 0.5s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.success-message i {
    font-size: 50px;
    margin-bottom: 15px;
    display: block;
}

.success-message h3 {
    font-size: 22px;
    margin-bottom: 10px;
}
/* ====== FOOTER STYLES ====== */
.footer {
    background-color: #232f3e;
    color: white;
    padding: 50px 5% 20px;
    margin-top: 60px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section {
    flex: 1;
    min-width: 250px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 20px;
}

.footer-logo i {
    color: #ff9900;
    font-size: 24px;
}

.footer-logo h3 {
    font-weight: 600;
}

.footer-description {
    color: #aaa;
    margin-bottom: 25px;
    line-height: 1.6;
    font-size: 14px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #37475a;
    border-radius: 50%;
    font-size: 18px;
    transition: all 0.3s;
}

.social-links a:hover {
    background-color: #ff9900;
    transform: translateY(-3px);
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #ff9900;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: #ff9900;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: #ddd;
    font-size: 14px;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-section ul li a:hover {
    color: #ff9900;
    padding-left: 5px;
}

.footer-section ul li i {
    width: 20px;
    color: #ff9900;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #37475a;
    color: #aaa;
    font-size: 14px;
    line-height: 1.5;
}

/* ====== CART MODAL ====== */
.cart-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    justify-content: flex-end;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.cart-modal-content {
    background-color: white;
    width: 100%;
    max-width: 450px;
    height: 100%;
    display: flex;
    flex-direction: column;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
    }

    to {
        transform: translateX(0);
    }
}

.cart-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #eee;
    background-color: #232f3e;
    color: white;
}

.cart-modal-header h3 {
    font-size: 20px;
    font-weight: 600;
}

.close-cart {
    font-size: 28px;
    cursor: pointer;
    transition: color 0.3s;
    line-height: 1;
    padding: 0 5px;
}

.close-cart:hover {
    color: #ff9900;
}

.cart-modal-body {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
}

.empty-cart {
    text-align: center;
    padding: 60px 20px;
    color: #666;
}

.empty-cart i {
    font-size: 60px;
    color: #ddd;
    margin-bottom: 20px;
}

.empty-cart h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #333;
}

.empty-cart p {
    color: #888;
}

.cart-item {
    display: flex;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    gap: 15px;
}

.cart-item-image {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-details {
    flex: 1;
}

.cart-item-details h4 {
    font-size: 14px;
    margin-bottom: 5px;
    color: #333;
    line-height: 1.4;
}

.cart-item-price {
    font-size: 16px;
    color: #ff9900;
    font-weight: 600;
    margin-bottom: 8px;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 10px;
}

.quantity-btn {
    width: 28px;
    height: 28px;
    background: #f5f5f5;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.quantity-btn:hover {
    background: #e0e0e0;
}

.cart-item-quantity span {
    min-width: 30px;
    text-align: center;
    font-weight: 500;
}

.remove-item {
    background: none;
    border: none;
    color: #ff4444;
    cursor: pointer;
    font-size: 18px;
    padding: 5px;
    transition: color 0.3s;
}

.remove-item:hover {
    color: #cc0000;
}

.cart-modal-footer {
    padding: 20px;
    border-top: 2px solid #eee;
    background: #f9f9f9;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: bold;
    color: #333;
}

.total-amount {
    color: #ff9900;
}

.checkout-btn {
    width: 100%;
    padding: 15px;
    background-color: #ff9900;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.checkout-btn:hover {
    background-color: #e68900;
}

/* Responsive Design for Contact Page */
@media (max-width: 992px) {
    .contact-container {
        flex-direction: column;
    }

    .contact-info,
    .contact-form-container {
        width: 100%;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .contact-page {
        padding: 0 20px 40px;
    }

    .info-card,
    .form-card,
    .faq-section {
        padding: 25px;
    }

    .step {
        flex-direction: column;
        gap: 15px;
    }

    .step-number {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
}

@media (max-width: 576px) {

    .info-card,
    .form-card,
    .faq-section {
        padding: 20px;
    }

    .info-card h3,
    .form-card h3 {
        font-size: 20px;
    }

    .faq-section h2 {
        font-size: 24px;
    }

    .contact-item {
        flex-direction: column;
        gap: 10px;
    }

    .contact-item i {
        font-size: 18px;
    }
}