:root {
    /* Color Palette */
    --primary-color: #0b5fce;
    --secondary-color: #B70F0E;
    --accent-color: #0B4BB5;
    --bg-color: #F8FAFE;
    --text-color: #1A1A2E;
    --btn-hover: #0B4BB5;
    --white: #ffffff;
    --cream: #EEF2FA;
    --light-gray: #f4f4f4;
    --accent-gold: #C8961E;
    --gold-gradient: linear-gradient(135deg, #C8961E, #E8B830, #C8961E);
    --gold-gradient-right: linear-gradient(90deg, #C8961E, #E8B830, #C8961E);
    
    /* Typography */
    --heading-font: 'Tenor Sans', sans-serif;
    --body-font: 'Open Sans', sans-serif;
    --accent-font: 'Tenor Sans', sans-serif;
    
    /* Transitions */
    --transition: all 0.3s ease;
    
    /* Spacing */
    --container-width: 1200px;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--body-font);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    font-size: clamp(1rem, 1vw + 0.8rem, 1.15rem);
}

h1, h2, h3, h4 {
    font-family: var(--heading-font);
    font-weight: 700;
    color: var(--primary-color);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 100px 0;
}

.bg-cream {
    background-color: var(--cream);
}

/* Header */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: #0b5fce;
    padding: 12px 0;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.main-header.scrolled {
    padding: 8px 0;
    box-shadow: 0 6px 25px rgba(0,0,0,0.25);
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 75px;
    width: auto;
    object-fit: contain;
    border-radius: 12px;
    transition: var(--transition);
    display: block;
}

.logo:hover img {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: var(--white);
    font-weight: 700;
    font-size: 0.95rem;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.btn-call {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-call:hover {
    background-color: transparent;
    border-color: var(--secondary-color);
    color: var(--white);
    transform: scale(1.05);
}

.btn-call i {
    font-size: 1rem;
}

.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background-color: var(--white);
    transition: var(--transition);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--btn-hover);
    transform: translateY(-3px);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--white);
}

.btn-secondary:hover {
    background-color: var(--btn-hover);
    transform: translateY(-3px);
}

/* Hero Section */
.hero {
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--white);
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

/* Page Hero Adjustments */
.page-hero {
    height: 60vh !important;
}

.hero-content h1 {
    font-size: clamp(1.8rem, 5vw, 3.2rem);
    color: var(--white);
    margin-bottom: 16px;
    line-height: 1.15;
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: clamp(1.4rem, 6vw, 1.8rem);
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: clamp(1.2rem, 7vw, 1.5rem);
    }
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 600px;
    margin-inline: auto;
}

.hero-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Section Header */
.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.sub-title {
    display: block;
    color: var(--accent-gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

/* Grids */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

.align-center {
    align-items: center;
}

@media (max-width: 992px) {
    .grid-2 {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

/* Timeline */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    background: var(--accent-color);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
    width: 50%;
    padding-right: 40px;
}

.timeline-item:nth-child(even) {
    margin-left: 50%;
    padding-right: 0;
    padding-left: 40px;
}

.timeline-dot {
    position: absolute;
    top: 0;
    right: -10px;
    width: 20px;
    height: 20px;
    background: var(--secondary-color);
    border-radius: 50%;
    z-index: 1;
}

.timeline-item:nth-child(even) .timeline-dot {
    left: -10px;
}

.timeline-content {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.timeline-content h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .timeline::before {
        left: 20px;
    }
    .timeline-item {
        width: 100%;
        padding-left: 50px;
        padding-right: 0;
    }
    .timeline-item:nth-child(even) {
        margin-left: 0;
    }
    .timeline-dot {
        left: 10px !important;
    }
}

/* Accent Text */
.accent-text {
    font-family: var(--accent-font);
    font-style: italic;
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin: 20px 0;
}

/* Services Page Specific */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.service-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 0.85rem;
    color: var(--secondary-color);
    font-weight: 600;
}

@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.pricing-card {
    background: var(--white);
    padding: 50px 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
    transition: var(--transition);
}

.pricing-card:hover {
    transform: translateY(-10px);
}

.pricing-card.featured {
    background: var(--primary-color);
    color: var(--white);
    transform: scale(1.05);
}

.pricing-card.featured h3, 
.pricing-card.featured .price,
.pricing-card.featured .price span {
    color: var(--white);
}

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.price {
    font-size: 3rem;
    font-family: var(--heading-font);
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-color);
    opacity: 0.6;
}

.pricing-list {
    margin-bottom: 40px;
    text-align: left;
}

.pricing-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-list li.disabled {
    opacity: 0.4;
    text-decoration: line-through;
}

/* Testimonials Page Specific */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.star-rating {
    color: var(--accent-gold);
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.badges-flex {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.badge-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.badge-item i {
    font-size: 3rem;
    color: var(--primary-color);
}

.badge-item span {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

/* Contact Page Specific */
.contact-form {
    margin-top: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input, 
.form-group select, 
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 10px;
    outline: none;
    font-family: var(--body-font);
    background: var(--white);
    transition: var(--transition);
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 10px rgba(212, 163, 115, 0.1);
}

.contact-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.contact-detail-card {
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    text-align: center;
}

.contact-detail-card i {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.contact-detail-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.contact-detail-card p {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* WhatsApp Button */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 2rem;
    z-index: 999;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.whatsapp-btn:hover {
    transform: scale(1.1);
}

@media (max-width: 992px) {
    .contact-card-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .contact-card-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-detail-card {
        padding: 20px;
    }
}

/* Modern Features Style */
.features-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card-modern {
    perspective: 1000px;
}

.card-inner {
    background: var(--white);
    padding: 50px 30px;
    border-radius: 25px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
    box-shadow: 0 10px 40px rgba(26, 77, 62, 0.05);
    border: 1px solid rgba(212, 163, 115, 0.1);
}

.feature-card-modern:hover .card-inner {
    transform: translateY(-15px);
    box-shadow: 0 20px 60px rgba(26, 77, 62, 0.1);
    border-color: var(--secondary-color);
}

.icon-box {
    width: 70px;
    height: 70px;
    background: var(--bg-color);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    margin: 0 auto 25px;
    font-size: 1.8rem;
    transition: var(--transition);
    transform: rotate(45deg);
}

.icon-box i {
    transform: rotate(-45deg);
}

.feature-card-modern:hover .icon-box {
    background: var(--primary-color);
    color: var(--white);
    transform: rotate(0deg);
}

.feature-card-modern:hover .icon-box i {
    transform: rotate(0deg);
}

.feature-card-modern h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-family: var(--heading-font);
}

.feature-card-modern p {
    font-size: 0.95rem;
    opacity: 0.7;
    line-height: 1.6;
}

.card-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gold-gradient-right);
    transform: scaleX(0);
    transition: var(--transition);
}

.feature-card-modern:hover .card-accent {
    transform: scaleX(1);
}

@media (max-width: 480px) {
    .features-grid-modern {
        grid-template-columns: 1fr;
    }
}

/* Service Cards */
.service-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
    height: 100%;
}

.service-img {
    height: 250px;
    overflow: hidden;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-img video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-card:hover .service-img img {
    transform: scale(1.1);
}

.service-info {
    padding: 30px;
}

.service-info h3 {
    margin-bottom: 15px;
}

.read-more {
    color: var(--secondary-color);
    font-weight: 600;
    display: inline-block;
    margin-top: 15px;
}

/* Testimonial Cards */
.testimonial-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    position: relative;
}

.quote-icon {
    font-size: 2rem;
    color: var(--accent-gold);
    margin-bottom: 20px;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 30px;
}

.client-info img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.client-info h4 {
    font-size: 1.1rem;
    margin-bottom: 2px;
}

.client-info span {
    font-size: 0.85rem;
    color: var(--secondary-color);
}

/* FAQ Accordion */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
}

.faq-question {
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-family: var(--heading-font);
    font-size: 1.2rem;
}

.faq-answer {
    padding: 0 30px 20px;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .fa-plus::before {
    content: "\f068";
}

/* Newsletter */
.newsletter-box {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 60px;
    border-radius: 30px;
    text-align: center;
}

.newsletter-box h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 30px auto 0;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 25px;
    border-radius: 50px;
    border: none;
    outline: none;
}

/* Footer */
.main-footer {
    background: var(--primary-color);
    color: var(--white);
}

.main-footer .logo-text {
    color: var(--white);
}

/* Footer */
.main-footer {
    background: var(--primary-color);
    color: var(--white);
    padding-top: 100px;
    padding-bottom: 50px;
}

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

.footer-col h3 {
    color: var(--white);
    font-size: 1.4rem;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 10px;
    font-family: var(--heading-font);
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--secondary-color);
}

.main-footer .logo img {
    height: 90px;
    margin-bottom: 25px;
    border-radius: 12px;
}

.footer-about p {
    margin: 25px 0;
    opacity: 0.8;
    line-height: 1.8;
}

.footer-links ul li {
    margin-bottom: 15px;
}

.footer-links ul li a {
    opacity: 0.8;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.footer-links ul li a i {
    font-size: 0.8rem;
    color: var(--secondary-color);
}

.footer-links ul li a:hover {
    opacity: 1;
    color: var(--secondary-color);
    padding-left: 5px;
}

.contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-item i {
    color: var(--secondary-color);
    margin-top: 5px;
}

.contact-item strong {
    display: block;
    font-size: 0.9rem;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.contact-item p {
    font-size: 0.95rem;
    opacity: 0.8;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.1rem;
    transition: var(--transition);
    color: var(--white);
}

.social-links a:hover {
    background: var(--secondary-color);
    transform: translateY(-5px);
}

.footer-bottom {
    margin-top: 80px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    opacity: 0.6;
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    gap: 30px;
}

.footer-legal li a {
    font-size: 0.9rem;
    opacity: 0.6;
}

.footer-legal li a:hover {
    opacity: 1;
    color: var(--secondary-color);
}

/* Back to Top */
/* Back to Top - New Modern Style */
#backToTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: var(--white);
    border: 2px solid var(--secondary-color);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    z-index: 999;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.5);
    box-shadow: 0 10px 30px rgba(26, 77, 62, 0.2);
}

#backToTop.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

#backToTop:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 15px 40px rgba(212, 163, 115, 0.3);
}

#backToTop i {
    transition: transform 0.3s ease;
}

#backToTop:hover i {
    transform: translateY(-3px);
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 250px;
        height: 100vh;
        background: var(--bg-color);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        box-shadow: -10px 0 30px rgba(0,0,0,0.1);
        transition: 0.5s ease;
        z-index: 1001;
        display: flex;
    }

    .nav-links a {
        color: var(--primary-color);
        font-size: 1.2rem;
        margin: 15px 0;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .hamburger {
        display: flex;
        z-index: 1002;
    }
    
    .hamburger.active span {
        background-color: var(--primary-color);
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 60px 0;
    }
    
    .hero-btns {
        flex-direction: column;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
}


@media (max-width: 576px) { .btn-call span { display: none; } .btn-call { padding: 10px; width: 40px; height: 40px; justify-content: center; } }


@media (max-width: 768px) { .page-hero { height: 40vh !important; } .contact-form-container { padding: 0 10px; } }

/* ===== Royal Packers & Movers Additions ===== */

/* 10 Reasons Grid */
.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 20px;
}

.reason-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: var(--white);
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.04);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.04);
}

.reason-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border-color: var(--secondary-color);
}

.reason-number {
    font-family: var(--heading-font);
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-gold);
    line-height: 1;
    min-width: 45px;
}

.reason-content h3 {
    font-size: 1.1rem;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.reason-content h3 i {
    color: var(--secondary-color);
    font-size: 1rem;
}

.reason-content p {
    font-size: 0.95rem;
    opacity: 0.75;
    line-height: 1.5;
}

@media (max-width: 480px) {
    .reasons-grid {
        grid-template-columns: 1fr;
    }
    .reason-card {
        padding: 20px;
    }
}

/* Service Features */
.service-features {
    font-size: 0.9rem;
    color: var(--text-color);
    margin: 6px 0;
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0.85;
}

.service-features i {
    color: var(--secondary-color);
    font-size: 0.85rem;
}

/* Coverage Grid */
.coverage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.coverage-card {
    background: var(--white);
    padding: 35px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.04);
}

.coverage-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    border-color: var(--secondary-color);
}

.coverage-icon {
    width: 60px;
    height: 60px;
    background: var(--bg-color);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.6rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.coverage-card:hover .coverage-icon {
    background: var(--gold-gradient);
    color: var(--white);
}

.coverage-card h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
}

.coverage-card p {
    font-size: 0.95rem;
    opacity: 0.7;
    line-height: 1.6;
}

/* Travel Table */
.table-wrapper {
    max-width: 700px;
    margin: 0 auto;
    overflow-x: auto;
}

.travel-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.travel-table thead {
    background: var(--primary-color);
    color: var(--white);
}

.travel-table th {
    padding: 18px 25px;
    text-align: left;
    font-family: var(--heading-font);
    font-size: 0.95rem;
    letter-spacing: 1px;
}

.travel-table td {
    padding: 16px 25px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    font-size: 0.95rem;
}

.travel-table td i {
    color: var(--secondary-color);
    margin-right: 8px;
}

.travel-table tbody tr:hover {
    background: var(--cream);
}

.travel-table tbody tr:last-child td {
    border-bottom: none;
}

.time-badge {
    display: inline-block;
    background: var(--gold-gradient-right);
    color: var(--white);
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
}

/* Student Note */
.student-note {
    max-width: 700px;
    margin: 25px auto 0;
    padding: 15px 25px;
    background: var(--white);
    border-radius: 12px;
    border-left: 4px solid var(--accent-gold);
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 0.95rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.04);
}

.student-note i {
    font-size: 1.5rem;
    color: var(--accent-gold);
}

/* Tips Grid */
.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.tip-card {
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
    transition: var(--transition);
}

.tip-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.tip-icon {
    width: 55px;
    height: 55px;
    background: var(--cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 1.4rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.tip-card:hover .tip-icon {
    background: var(--gold-gradient);
    color: var(--white);
}

.tip-card h3 {
    font-size: 1.05rem;
    margin-bottom: 10px;
}

.tip-card p {
    font-size: 0.9rem;
    opacity: 0.7;
    line-height: 1.5;
}

@media (max-width: 480px) {
    .tips-grid {
        grid-template-columns: 1fr;
    }
    .student-note {
        flex-direction: column;
        text-align: center;
    }
}

/* Responsive for coverage grid */
@media (max-width: 480px) {
    .coverage-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== FANCY ANIMATIONS ===== */

/* Keyframes */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 0 0 rgba(15, 95, 217, 0.4); }
    50% { box-shadow: 0 0 30px 10px rgba(15, 95, 217, 0.2); }
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

@keyframes spin-slow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes truck-move {
    0% { transform: translateX(-120%); }
    50% { transform: translateX(0); }
    100% { transform: translateX(120%); }
}

@keyframes count-up {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes scale-in {
    from { transform: scale(0); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

@keyframes slide-up-fade {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes rotate-in {
    from { transform: rotate(-180deg) scale(0); opacity: 0; }
    to { transform: rotate(0deg) scale(1); opacity: 1; }
}

@keyframes border-dance {
    0% { background-position: 0 0, 100% 0, 100% 100%, 0 100%; }
    100% { background-position: 100% 0, 100% 100%, 0 100%, 0 0; }
}

@keyframes wave {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(10deg); }
    75% { transform: rotate(-10deg); }
}

@keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Animation Utility Classes */
.anim-float { animation: float 3s ease-in-out infinite; }
.anim-float-delay { animation: float 3s ease-in-out 1.5s infinite; }
.anim-pulse-glow { animation: pulse-glow 2s ease-in-out infinite; }
.anim-spin-slow { animation: spin-slow 8s linear infinite; }
.anim-wave { animation: wave 2s ease-in-out infinite; display: inline-block; }
.anim-truck { animation: truck-move 4s ease-in-out infinite; }

/* Section Entrance Overrides */
section { overflow: hidden; }

/* Video Hero */
.video-hero {
    position: relative;
    overflow: hidden;
    background: none !important;
}

.hero-video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55));
    z-index: 1;
}

.video-hero .hero-content {
    position: relative;
    z-index: 2;
}

/* Hero Slider */
.hero-slider {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.hero-slider .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.hero-slider .swiper-slide .hero-content {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
    color: var(--white);
}

.hero-pagination {
    bottom: 30px !important;
    z-index: 10;
}

.hero-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255,255,255,0.4);
    opacity: 1;
    transition: all 0.3s ease;
}

.hero-pagination .swiper-pagination-bullet-active {
    background: var(--accent-gold);
    width: 30px;
    border-radius: 6px;
    box-shadow: 0 0 10px rgba(200,150,30,0.4);
}

@media (max-width: 768px) {
    .hero-pagination {
        bottom: 15px !important;
    }
    .hero-pagination .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
    }
    .hero-pagination .swiper-pagination-bullet-active {
        width: 20px;
    }
}

/* Hero Enhancements */
.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(ellipse at center, rgba(200,150,30,0.1) 0%, transparent 70%);
    animation: pulse-glow 3s ease-in-out infinite;
    pointer-events: none;
}

.hero-content h1 {
    animation: slide-up-fade 0.8s ease-out;
}

.hero-content p {
    animation: slide-up-fade 0.8s ease-out 0.2s both;
}

.hero-btns {
    animation: slide-up-fade 0.8s ease-out 0.4s both;
}

.hero-btns .btn {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.hero-btns .btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

/* Animated Button Shimmer */
.btn-primary {
    position: relative;
    overflow: hidden;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 0; left: -200%;
    width: 200%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    animation: shimmer 3s ease-in-out infinite;
}

/* Card Hover 3D Effect */
.feature-card-modern, .service-card, .testimonial-card, .coverage-card, .tip-card, .reason-card {
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.feature-card-modern:hover .card-inner {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 80px rgba(15, 95, 217, 0.12);
}

.service-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0,0,0,0.12);
}

.service-card:hover .service-img img {
    transform: scale(1.15);
}

.testimonial-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

/* Staggered Icon Pop on Cards */
.feature-card-modern .icon-box i,
.coverage-icon i,
.tip-icon i {
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.feature-card-modern:hover .icon-box i {
    transform: rotate(-45deg) scale(1.2);
}

.coverage-card:hover .coverage-icon i,
.tip-card:hover .tip-icon i {
    transform: scale(1.2);
}

/* Contact Detail Card Hover */
.contact-detail-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.contact-detail-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 20px 50px rgba(15, 95, 217, 0.1);
}

.contact-detail-card i {
    transition: all 0.4s ease;
}

.contact-detail-card:hover i {
    transform: scale(1.3) rotate(10deg);
    color: var(--accent-gold);
}

/* FAQ Item Hover */
.faq-item {
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
}

.faq-item.active {
    border-left: 3px solid var(--accent-gold);
}

/* Table Row Animation */
.travel-table tbody tr {
    transition: all 0.3s ease;
}

.travel-table tbody tr:hover {
    transform: scale(1.01);
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

/* NewsLetter Box Glow */
.newsletter-box {
    position: relative;
    overflow: hidden;
}

.newsletter-box::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(200,150,30,0.1) 0%, transparent 60%);
    animation: spin-slow 12s linear infinite;
}

/* Header Logo Hover */
.logo img {
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.logo:hover img {
    transform: scale(1.08) rotate(-2deg);
    box-shadow: 0 8px 30px rgba(0,0,0,0.25);
}

/* Back to Top Enhancement */
#backToTop {
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

#backToTop.visible:hover {
    transform: translateY(-8px) scale(1.15);
    box-shadow: 0 20px 50px rgba(15, 95, 217, 0.3);
}

/* WhatsApp Button Pulse */
.whatsapp-btn {
    animation: pulse-glow 2s ease-in-out infinite;
}

.whatsapp-btn:hover {
    animation: none;
    transform: scale(1.15) rotate(10deg);
}

/* Section Header Decoration */
.section-header h2 {
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--gold-gradient-right);
    margin: 15px auto 0;
    border-radius: 3px;
    animation: float 3s ease-in-out infinite;
}

/* Staggered Card Appear Animation */
[data-aos="fade-up-custom"] {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

[data-aos="fade-up-custom"].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

/* Number Counter Animation Placeholder */
.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: var(--heading-font);
    animation: count-up 1s ease-out both;
}

/* Image Hover Zoom Enhancement */
.philosophy-img img {
    transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.philosophy-img:hover img {
    transform: scale(1.05) rotate(1deg);
}

/* Gradient Button Border Animation for Secondary */
.btn-secondary {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(135deg, var(--secondary-color), #e04040);
    z-index: -1;
    transition: opacity 0.3s ease;
}

.btn-secondary::after {
    content: '';
    position: absolute;
    top: -2px; left: -2px;
    width: calc(100% + 4px); height: calc(100% + 4px);
    border-radius: 50px;
    background: linear-gradient(45deg, var(--accent-gold), var(--secondary-color), var(--primary-color), var(--accent-gold));
    background-size: 400% 400%;
    animation: gradient-shift 3s ease infinite;
    z-index: -2;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-secondary:hover::after {
    opacity: 1;
}

/* Animated border for active nav */
.nav-links a.active::after {
    width: 100%;
    height: 3px;
    background: var(--gold-gradient-right);
    box-shadow: 0 0 12px rgba(200, 150, 30, 0.5);
}

/* Hero decorative floating elements */
.hero-floating-icon {
    position: absolute;
    font-size: 2rem;
    color: rgba(200,150,30,0.2);
    pointer-events: none;
}

.hero-floating-icon:nth-child(1) {
    top: 15%; left: 10%;
    animation: float 4s ease-in-out infinite;
}

.hero-floating-icon:nth-child(2) {
    top: 70%; left: 85%;
    animation: float 5s ease-in-out 1s infinite;
}

.hero-floating-icon:nth-child(3) {
    top: 40%; left: 90%;
    animation: float 3.5s ease-in-out 0.5s infinite;
}

/* Travel Table Staggered Row Animation */
.travel-table tbody tr {
    animation: slide-up-fade 0.5s ease-out both;
}

.travel-table tbody tr:nth-child(1) { animation-delay: 0.1s; }
.travel-table tbody tr:nth-child(2) { animation-delay: 0.2s; }
.travel-table tbody tr:nth-child(3) { animation-delay: 0.3s; }
.travel-table tbody tr:nth-child(4) { animation-delay: 0.4s; }

/* Card border gradient on hover */
.feature-card-modern .card-inner {
    position: relative;
}

.feature-card-modern .card-inner::before {
    content: '';
    position: absolute;
    top: -2px; left: -2px;
    width: calc(100% + 4px); height: calc(100% + 4px);
    border-radius: 27px;
    background: linear-gradient(45deg, transparent, var(--accent-gold), transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
}

.feature-card-modern:hover .card-inner::before {
    opacity: 1;
}

/* List item slide animation */
.footer-links ul li {
    transition: transform 0.3s ease;
}

.footer-links ul li:hover {
    transform: translateX(8px);
}

/* Google Reviews Section */
.google-review-card {
    background: var(--white);
    padding: 35px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0,0,0,0.04);
    height: 100%;
}

.google-review-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    border-color: var(--accent-gold);
}

.google-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.google-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gold-gradient);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    font-family: var(--heading-font);
}

.google-header h4 {
    font-size: 1.05rem;
    margin-bottom: 2px;
}

.google-location {
    font-size: 0.8rem;
    color: var(--secondary-color);
    opacity: 0.7;
}

.google-icon {
    margin-left: auto;
    font-size: 1.5rem;
    color: #4285F4;
}

.google-stars {
    color: var(--accent-gold);
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.google-review-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    opacity: 0.8;
    font-style: italic;
}

.google-reviews-pagination {
    margin-top: 20px;
    position: relative !important;
    bottom: auto !important;
}

.google-reviews-pagination .swiper-pagination-bullet-active {
    background: var(--accent-gold);
}

.google-cta {
    text-align: center;
    margin-top: 40px;
}

.google-cta .btn i {
    margin-right: 8px;
}

/* Responsive: reduce animation on mobile */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
