/* ========================================
   SEO Consultation and Service - Main Styles
   Orange & Dark Theme
   ======================================== */

/* ========================================
   Reset & Base Styles
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: #ff6b35;
    transition: all 0.3s ease;
}

a:hover {
    color: #d84315;
}

/* ========================================
   Header & Navigation
   ======================================== */
.site-header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: bold;
    color: #ff6b35;
}

.logo i {
    font-size: 2rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    color: #333;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    background: #ff6b35;
    color: #fff;
}

.cart-link {
    position: relative;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #dc3545;
    color: #fff;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: bold;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #333;
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
    background: linear-gradient(135deg, #ff6b35 0%, #ff9148 100%);
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========================================
   Buttons
   ======================================== */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-primary {
    background: #ff6b35;
    color: #fff;
    border-color: #ff6b35;
}

.btn-primary:hover {
    background: #d84315;
    border-color: #d84315;
    color: #fff;
}

.btn-secondary {
    background: transparent;
    color: #ff6b35;
    border-color: #ff6b35;
}

.btn-secondary:hover {
    background: #ff6b35;
    color: #fff;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-block {
    display: block;
    width: 100%;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

/* ========================================
   Sections
   ======================================== */
section {
    padding: 60px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
}

/* ========================================
   Features Section
   ======================================== */
.features {
    background: #f8f9fa;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 3rem;
    color: #ff6b35;
    margin-bottom: 1rem;
}

.feature-card h3 {
    margin-bottom: 0.5rem;
    color: #333;
}

.feature-card p {
    color: #666;
}

/* ========================================
   Packages/Services
   ======================================== */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.package-card {
    background: #fff;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.package-card:hover {
    border-color: #ff6b35;
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.2);
}

.package-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.package-price {
    text-align: center;
    margin: 1.5rem 0;
}

.price-label {
    display: block;
    font-size: 0.9rem;
    color: #666;
}

.price {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
    color: #ff6b35;
    margin: 0.5rem 0;
}

.price-unit {
    display: block;
    font-size: 0.9rem;
    color: #666;
}

.package-features {
    list-style: none;
    margin: 1.5rem 0;
}

.package-features li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.package-features i {
    color: #ff6b35;
}

.package-delivery {
    padding: 1rem 0;
    border-top: 1px solid #e9ecef;
    color: #666;
    text-align: center;
}

/* ========================================
   Services Detail Page
   ======================================== */
.page-header {
    background: linear-gradient(135deg, #ff6b35 0%, #ff9148 100%);
    color: #fff;
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.packages-list {
    margin-top: 2rem;
}

.package-detail-card {
    background: #fff;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    margin-bottom: 2rem;
    overflow: hidden;
}

.package-header {
    background: #f8f9fa;
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
}

.package-price-badge {
    background: #ff6b35;
    color: #fff;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    text-align: center;
    min-width: 150px;
}

.package-price-badge .price {
    font-size: 2rem;
    color: #fff;
}

.package-body {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    padding: 2rem;
}

.features-list {
    list-style: none;
}

.features-list li {
    padding: 0.75rem 0;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.features-list i {
    color: #ff6b35;
    margin-top: 0.25rem;
}

.package-meta {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e9ecef;
}

.meta-item {
    display: flex;
    gap: 0.5rem;
    padding: 0.5rem 0;
    color: #666;
}

.meta-item i {
    color: #ff6b35;
}

.package-order {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 1rem 0;
}

.qty-btn {
    background: #ff6b35;
    color: #fff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.qty-btn:hover {
    background: #d84315;
}

.quantity-input {
    width: 80px;
    text-align: center;
    padding: 0.75rem;
    border: 2px solid #e9ecef;
    border-radius: 5px;
    font-size: 1rem;
}

.total-price {
    margin: 1.5rem 0;
    padding: 1rem;
    background: #fff;
    border-radius: 5px;
    text-align: center;
}

.total-amount {
    display: block;
    font-size: 2rem;
    color: #ff6b35;
    font-weight: bold;
    margin-top: 0.5rem;
}

/* ========================================
   Testimonials
   ======================================== */
.testimonials {
    background: #f8f9fa;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.testimonial-rating {
    color: #ffc107;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-style: italic;
    color: #666;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.testimonial-author strong {
    display: block;
    color: #333;
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    color: #666;
    font-size: 0.9rem;
}

/* ========================================
   CTA Section
   ======================================== */
.cta {
    background: linear-gradient(135deg, #ff6b35 0%, #ff9148 100%);
    color: #fff;
    text-align: center;
    padding: 80px 0;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========================================
   Shopping Cart
   ======================================== */
.cart-table-wrapper {
    overflow-x: auto;
    margin: 2rem 0;
}

.cart-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
}

.cart-table thead {
    background: #f8f9fa;
}

.cart-table th {
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    color: #333;
}

.cart-table td {
    padding: 1.5rem 1rem;
    border-top: 1px solid #e9ecef;
}

.package-info h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.package-desc {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.delivery-time {
    color: #ff6b35;
    font-size: 0.9rem;
}

.quantity-input-cart {
    width: 80px;
    padding: 0.5rem;
    border: 2px solid #e9ecef;
    border-radius: 5px;
    text-align: center;
}

.btn-remove {
    background: #dc3545;
    color: #fff;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
}

.btn-remove:hover {
    background: #c82333;
}

.cart-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 2rem 0;
}

.cart-actions-left,
.cart-actions-right {
    display: flex;
    gap: 1rem;
}

.cart-summary {
    max-width: 400px;
    margin: 2rem auto;
}

.summary-box {
    background: #fff;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 2rem;
}

.summary-box h2 {
    margin-bottom: 1.5rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid #e9ecef;
}

.total-row {
    font-size: 1.2rem;
    border-bottom: none;
    border-top: 2px solid #333;
    margin-top: 0.5rem;
    padding-top: 1rem;
}

.security-badges {
    text-align: center;
    margin-top: 1.5rem;
    color: #666;
    font-size: 0.9rem;
}

.security-badges i {
    color: #ff6b35;
}

.empty-cart {
    text-align: center;
    padding: 60px 20px;
}

.empty-cart-icon {
    font-size: 5rem;
    color: #e9ecef;
    margin-bottom: 1rem;
}

/* ========================================
   Checkout
   ======================================== */
.checkout-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.checkout-form-wrapper,
.order-summary-wrapper {
    background: #fff;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

.form-control {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e9ecef;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: #ff6b35;
}

.form-group small {
    display: block;
    margin-top: 0.5rem;
    color: #666;
    font-size: 0.9rem;
}

.required {
    color: #dc3545;
}

.stripe-element {
    padding: 1rem;
    border: 2px solid #e9ecef;
    border-radius: 5px;
    background: #fff;
    margin: 1rem 0;
}

.payment-error {
    color: #dc3545;
    margin-top: 0.5rem;
}

.terms-agreement {
    margin: 1.5rem 0;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.order-summary-box h2 {
    margin-bottom: 1.5rem;
}

.summary-items {
    margin-bottom: 1.5rem;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid #e9ecef;
}

.summary-divider {
    border-top: 2px solid #333;
    margin: 1rem 0;
}

/* ========================================
   Forms
   ======================================== */
.contact-form,
.add-to-cart-form {
    background: #fff;
}

.contact-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.contact-form-wrapper,
.contact-info-wrapper {
    background: #fff;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 2rem;
}

.contact-info-items {
    margin-top: 2rem;
}

.contact-info-item {
    display: flex;
    gap: 1rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid #e9ecef;
}

.contact-icon {
    font-size: 1.5rem;
    color: #ff6b35;
    min-width: 40px;
}

/* ========================================
   Alerts
   ======================================== */
.alert {
    padding: 1rem 1.5rem;
    border-radius: 5px;
    margin-bottom: 1.5rem;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* ========================================
   Footer
   ======================================== */
.site-footer {
    background: #212529;
    color: #fff;
    padding: 40px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: #ff6b35;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    padding: 0.5rem 0;
}

.footer-section a {
    color: #adb5bd;
}

.footer-section a:hover {
    color: #ff6b35;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #343a40;
    border-radius: 50%;
    color: #fff;
    font-size: 1.2rem;
}

.social-links a:hover {
    background: #ff6b35;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #343a40;
    color: #adb5bd;
}

.admin-link a {
    color: #6c757d;
    font-size: 0.9rem;
}

/* ========================================
   FAQ Section
   ======================================== */
.faq-list {
    max-width: 800px;
    margin: 2rem auto;
}

.faq-item {
    background: #fff;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f8f9fa;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #e9ecef;
}

.faq-question i {
    color: #ff6b35;
    transition: transform 0.3s ease;
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer.active {
    max-height: 500px;
}

.faq-answer p {
    padding: 1.5rem;
    color: #666;
}

/* FAQ Categories Section */
.faq-categories {
    margin: 60px 0;
    padding-top: 40px;
    border-top: 2px solid #e9ecef;
}

.faq-categories h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem;
    color: #333;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.category-card {
    background: #fff;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.category-card:hover {
    border-color: #ff6b35;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.15);
    transform: translateY(-5px);
}

.category-card i {
    font-size: 3rem;
    color: #ff6b35;
    margin-bottom: 20px;
    display: block;
}

.category-card h3 {
    color: #333 !important;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.category-card p {
    color: #666 !important;
    margin-bottom: 20px;
    line-height: 1.6;
}

.category-card .btn {
    opacity: 1 !important;
    visibility: visible !important;
    display: inline-block !important;
    color: #ff6b35 !important;
    border-color: #ff6b35 !important;
    background: transparent !important;
}

.category-card .btn:hover {
    background: #ff6b35 !important;
    color: #fff !important;
}

/* ========================================
   Package Modal
   ======================================== */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.6);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: #fff;
    margin: 50px auto;
    padding: 0;
    border-radius: 12px;
    width: 90%;
    max-width: 700px;
    position: relative;
    animation: slideInBottom 0.3s ease;
    box-shadow: 0 10px 50px rgba(0,0,0,0.3);
}

.modal-close {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 28px;
    font-weight: bold;
    color: #666;
    cursor: pointer;
    z-index: 10;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: #f0f0f0;
    color: #ff6b35;
}

.modal-package-header {
    background: linear-gradient(135deg, #ff6b35 0%, #ff9148 100%);
    color: white;
    padding: 40px 30px 30px;
    border-radius: 12px 12px 0 0;
}

.modal-package-header h2 {
    margin: 0 0 15px;
    font-size: 1.8rem;
}

.modal-package-header p {
    margin: 0 0 20px;
    opacity: 0.95;
}

.modal-package-price {
    background: rgba(255,255,255,0.2);
    padding: 15px;
    border-radius: 8px;
    display: inline-block;
}

.modal-package-price .price {
    font-size: 2.5rem;
    font-weight: bold;
    display: block;
}

.modal-package-price .price-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

.modal-package-body {
    padding: 30px;
}

.modal-package-body h3 {
    color: #333;
    margin-bottom: 20px;
    font-size: 1.4rem;
}

.features-list-modal {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
}

.features-list-modal li {
    padding: 10px 0;
    color: #666;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.features-list-modal i {
    color: #ff6b35;
    margin-top: 3px;
}

.package-meta-modal {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
}

.package-meta-modal .meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.package-meta-modal i {
    color: #ff6b35;
    font-size: 1.2rem;
}

.modal-add-form .quantity-selector {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.modal-add-form .total-price {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.modal-add-form .total-label {
    font-size: 1.1rem;
    color: #666;
}

.modal-add-form .total-amount {
    font-size: 1.8rem;
    font-weight: bold;
    color: #ff6b35;
}

/* Compact Package Features */
.package-features-compact {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    text-align: left;
}

.package-features-compact li {
    padding: 8px 0;
    color: #666;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.package-features-compact i {
    color: #ff6b35;
    font-size: 0.85rem;
}

.package-features-compact .more-features {
    color: #ff6b35;
    font-weight: 500;
}

.package-description-short {
    color: #666;
    font-size: 0.95rem;
    margin: 10px 0 15px;
    min-height: 45px;
}

.quick-add-form {
    margin-bottom: 10px;
}

.view-details-btn {
    margin-top: 0 !important;
    opacity: 1 !important;
    visibility: visible !important;
    color: #ff6b35 !important;
    border-color: #ff6b35 !important;
    background: transparent !important;
}

.view-details-btn:hover {
    background: #ff6b35 !important;
    color: #fff !important;
}

.package-delivery {
    color: #666;
    font-size: 0.9rem;
    margin: 15px 0;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.package-delivery i {
    color: #ff6b35;
}

/* ========================================
   Policy Pages
   ======================================== */
.policy-content {
    background: #f8f9fa;
}

.policy-wrapper {
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    padding: 3rem;
    border-radius: 10px;
}

.policy-wrapper h2 {
    color: #ff6b35;
    margin: 2rem 0 1rem;
}

.policy-wrapper h3 {
    color: #333;
    margin: 1.5rem 0 0.75rem;
}

.policy-wrapper ul {
    margin: 1rem 0 1rem 2rem;
}

.policy-wrapper li {
    margin: 0.5rem 0;
}

.contact-box {
    background: #f8f9fa;
    padding: 1.5rem;
    border-left: 4px solid #ff6b35;
    margin: 2rem 0;
}

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .features-grid,
    .packages-grid {
        grid-template-columns: 1fr;
    }
    
    .package-body,
    .checkout-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .cart-actions {
        flex-direction: column;
    }
    
    .cart-actions-left,
    .cart-actions-right {
        width: 100%;
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
}

/* ========================================
   Utility Classes
   ======================================== */
.text-center {
    text-align: center;
}

.text-muted {
    color: #6c757d;
}

.text-green {
    color: #ff6b35;
}

.no-data {
    text-align: center;
    padding: 3rem;
    color: #666;
}

/* ========================================
   Enhanced Dynamic Components
   ======================================== */

/* Page Load Progress Bar */
.page-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff6b35 0%, #ff9148 100%);
    width: 0%;
    transition: width 0 .3s, opacity 0.5s;
    z-index: 9999;
}

/* Enhanced Header with Scroll Effect */
.site-header {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.site-header.scrolled {
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    background: rgba(255, 255, 255, 0.98);
backdrop-filter: blur(10px);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #ff6b35;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: #d84315;
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.6);
}

/* Notification System */
.notification {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: white;
    padding: 15px 20px;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 9998;
    min-width: 300px;
}

.notification-success {
    border-left: 4px solid #28a745;
}

.notification-error {
    border-left: 4px solid #dc3545;
}

.notification i {
    font-size: 1.5rem;
}

.notification-success i {
    color: #28a745;
}

.notification-error i {
    color: #dc3545;
}

.notification-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #666;
    margin-left: auto;
}

/* Tooltip System */
.tooltip {
    position: absolute;
    background: #333;
    color: white;
    padding: 8px 12px;
    border-radius: 5px;
    font-size: 0.875rem;
    white-space: nowrap;
    z-index: 10000;
    pointer-events: none;
    opacity: 0.95;
    animation: fadeIn 0.2s ease;
}

.tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: #333;
}

/* Enhanced Package Cards */
.package-card,
.package-detail-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.package-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff6b35, #ff9148);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.package-card:hover::before {
    transform: scaleX(1);
}

/* Stats Counter Section */
.stats-section {
    background: linear-gradient(135deg, #ff6b35 0%, #ff9148 100%);
    color: white;
    padding: 80px 0;
    margin: 60px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    text-align: center;
}

.stat-item {
    padding: 2rem;
}

.stat-item .counter {
    font-size: 3.5rem;
    font-weight: bold;
    color: white;
    display: block;
    margin-bottom: 0.5rem;
}

.stat-item .stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Enhanced Hero Section */
.hero {
    background: linear-gradient(135deg, #ff6b35 0%, #ff9148 50%, #ffb366 100%);
    background-size: 200% 200%;
    animation: gradientShift 15s ease infinite;
    position: relative;
    overflow: hidden;
}

.hero::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 1440 320"><path fill="rgba(255,255,255,0.1)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,154.7C960,171,1056,181,1152,165.3C1248,149,1344,107,1392,85.3L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
    opacity: 0.3;
}

.hero > * {
    position: relative;
    z-index: 1;
}

/* Testimonial Slider */
.testimonials-slider {
    position: relative;
    max-width: 800px;
    margin: 3rem auto;
}

.testimonial-card {
    display: none;
}

.testimonial-card.active {
    display: block;
    animation: fadeInUp 0.6s ease;
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.testimonial-prev,
.testimonial-next {
    background: #ff6b35;
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-prev:hover,
.testimonial-next:hover {
    background: #d84315;
    transform: scale(1.1);
}

/* Feature Cards Animation */
.feature-card {
    animation: fadeInUp 0.6s ease;
    animation-fill-mode: both;
}

.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }
.feature-card:nth-child(4) { animation-delay: 0.4s; }
.feature-card:nth-child(5) { animation-delay: 0.5s; }
.feature-card:nth-child(6) { animation-delay: 0.6s; }

/* Form Loading State */
button.loading {
    pointer-events: none;
    opacity: 0.7;
}

button.loading .spinner {
    display: inline-block;
    width: 14px;
    height: 14px;
    margin-right: 8px;
}

/* Input Focus Effects */
.form-control {
    position: relative;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: #ff6b35;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
    transform: translateY(-2px);
}

.form-control.valid {
    border-color: #28a745;
}

.form-control.invalid {
    border-color: #dc3545;
    animation: shake 0.3s ease;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-10px); }
    75% { transform: translateX(10px); }
}

/* Loading Skeleton */
.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: 4px;
}

/* Price Highlight Animation */
.price {
    transition: all 0.3s ease;
}

.price.highlight {
    animation: pulse 0.6s ease;
}

/* Badge Pulse */
.cart-count {
    animation: pulse 0.5s ease;
}

/* Success Checkmark Animation */
@keyframes checkmark {
    0% {
        transform: scale(0) rotate(45deg);
    }
    50% {
        transform: scale(1.2) rotate(45deg);
    }
    100% {
        transform: scale(1) rotate(45deg);
    }
}

.success-checkmark {
    display: inline-block;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #28a745;
    color: white;
    position: relative;
}

.success-checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
    animation: checkmark 0.5s ease;
}

/* Mobile Menu Enhancements */
.menu-open {
    overflow: hidden;
}

.nav-menu.active {
    animation: slideInBottom 0.3s ease;
}

@media (max-width: 768px) {
    .back-to-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
    }
    
    .notification {
        right: 10px;
        left: 10px;
        bottom: 10px;
        min-width: auto;
    }
}

/* ========================================
   About Page Card Enhancements
   ======================================== */

/* About Info Cards */
.about-cards-section {
    margin: 40px 0;
}

.about-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.about-info-card {
    background: #fff;
    border: 2px solid #f0f0f0;
    border-radius: 12px;
    padding: 30px;
    transition: all 0.3s ease;
}

.about-info-card:hover {
    border-color: #ff6b35;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.15);
}

.about-info-card .card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #ff6b35, #ff9148);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.about-info-card .card-icon i {
    font-size: 2rem;
    color: #fff;
}

.about-info-card h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

/* Services Offer Section */
.services-offer-section {
    margin: 50px 0;
    padding: 40px 0;
    background: linear-gradient(135deg, #fff5f0 0%, #ffffff 100%);
    border-radius: 12px;
}

.services-offer-section h3 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 10px;
}

.services-offer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.service-offer-card {
    background: #fff;
    border: 2px solid #f0f0f0;
    border-radius: 10px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
}

.service-offer-card:hover {
    border-color: #ff6b35;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.15);
}

.service-offer-card i {
    font-size: 2rem;
    color: #ff6b35;
    min-width: 40px;
}

.service-offer-card span {
    font-weight: 500;
    color: #333;
    font-size: 1rem;
}

/* About Stats Section */
.about-stats-section {
    margin: 60px 0;
    padding: 50px 0;
    background: linear-gradient(135deg, #ff6b35 0%, #d84315 100%);
    border-radius: 12px;
    color: #fff;
}

.about-stats-section h3 {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 40px;
}

.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    padding: 0 20px;
}

.about-stat-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.3s ease;
    margin: 0 5px;
}

.about-stat-card:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.about-stat-icon {
    width: 60px;
    height: 60px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.about-stat-icon i {
    font-size: 1.8rem;
    color: #ff6b35;
}

.about-stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: #fff !important;
    margin: 15px 0;
}

/* Ensure counter text is always white on orange background */
.about-stat-card .counter {
    color: #fff !important;
}

.about-stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* Why Choose Cards */
.why-choose-section {
    margin: 60px 0;
}

.why-choose-section h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5rem;
    color: #333;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
}

.why-choose-card {
    background: #fff;
    border: 2px solid #f0f0f0;
    border-radius: 12px;
    padding: 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.why-choose-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #ff6b35, #ff9148);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.why-choose-card:hover::before {
    transform: scaleX(1);
}

.why-choose-card:hover {
    border-color: #ff6b35;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.15);
}

.why-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff6b35, #ff9148);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.why-icon i {
    font-size: 1.8rem;
    color: #fff;
}

.why-choose-card h4 {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.why-choose-card p {
    color: #666;
    line-height: 1.7;
}

/* Values Section Enhancements */
.values-section {
    margin: 60px 0;
}

.values-section h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5rem;
    color: #333;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.value-card {
    background: #fff;
    border: 2px solid #f0f0f0;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.value-card:hover {
    border-color: #ff6b35;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.15);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #ff6b35, #ff9148);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.value-icon i {
    font-size: 2rem;
    color: #fff;
}

.value-card h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.value-card p {
    color: #666;
    line-height: 1.7;
}

/* Responsive About Page */
@media (max-width: 768px) {
    .about-cards-grid,
    .services-offer-grid,
    .about-stats-grid,
    .why-choose-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .about-stat-number {
        font-size: 2.5rem;
    }
    
    .about-stats-section,
    .services-offer-section {
        padding: 30px 15px;
    }
}

/* Print Styles */
@media print {
    .site-header,
    .site-footer,
    .back-to-top,
    .notification,
    .cart-link {
        display: none !important;
    }
}
