/*
Theme Name: Shiftting - Packers & Movers
Theme URI: https://shiftting.com
Author: Praveen Manchu
Author URI: https://shiftting.com
Description: Professional Packers and Movers WordPress Theme for Shiftting.com - Tirupati's ISO Certified Moving Company
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: shiftting
Tags: packers-movers, logistics, responsive, seo-friendly, fast-loading
*/

/* ================================
   CSS VARIABLES & ROOT
================================ */
:root {
    --primary: #ff6b00;
    --primary-dark: #e55a00;
    --secondary: #ff6b00;
    --accent: #ff6b00;
    --dark: #1a1a1a;
    --light: #f5f5f5;
    --white: #ffffff;
    --gray: #6b7280;
    --gray-light: #e5e7eb;
    --gradient-primary: linear-gradient(135deg, #ff6b00 0%, #ff8c00 100%);
    --gradient-secondary: linear-gradient(135deg, #ff6b00 0%, #ff8c00 100%);
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);
    --radius: 12px;
    --radius-lg: 20px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ================================
   RESET & BASE
================================ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background: var(--light);
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

/* ================================
   UTILITIES
================================ */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center { text-align: center; }
.text-white { color: var(--white); }
.text-primary { color: var(--primary); }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.5);
}

.btn-secondary {
    background: var(--gradient-secondary);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(245, 158, 11, 0.4);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.5);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

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

.btn-whatsapp {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: var(--white);
}

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

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 16px;
    background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: var(--primary);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

/* ================================
   ANIMATIONS
================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-up { animation: fadeInUp 0.8s ease-out forwards; }
.fade-in-left { animation: fadeInLeft 0.8s ease-out forwards; }
.fade-in-right { animation: fadeInRight 0.8s ease-out forwards; }
.float-animation { animation: float 6s ease-in-out infinite; }
.pulse-animation { animation: pulse 2s ease-in-out infinite; }

/* Stagger animations */
.stagger-1 { animation-delay: 0.1s; }
.stagger-2 { animation-delay: 0.2s; }
.stagger-3 { animation-delay: 0.3s; }
.stagger-4 { animation-delay: 0.4s; }
.stagger-5 { animation-delay: 0.5s; }

/* ================================
   TOP BAR
================================ */
.top-bar {
    background: var(--dark);
    color: var(--white);
    padding: 8px 0;
    font-size: 0.875rem;
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    display: flex;
    gap: 24px;
}

.top-bar-right {
    display: flex;
    gap: 16px;
}

.top-bar a {
    color: var(--white);
    transition: var(--transition);
}

.top-bar a:hover {
    color: var(--primary);
}

.top-bar-left i {
    margin-right: 6px;
    color: var(--primary);
}

.top-bar-right a {
    font-size: 1rem;
}

.top-bar-right a:hover {
    color: var(--primary);
    transform: scale(1.2);
    display: inline-block;
}

/* ================================
   HEADER
================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 50px;
    width: auto;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
}

.main-navigation ul {
    display: flex;
    gap: 32px;
    align-items: center;
}

.main-navigation a {
    font-weight: 500;
    color: var(--dark);
    position: relative;
    padding: 8px 0;
}

.main-navigation a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition);
}

.main-navigation a:hover {
    color: var(--primary);
}

.main-navigation a:hover::after {
    width: 100%;
}

.header-cta {
    display: flex;
    gap: 12px;
}

.header-cta .btn {
    padding: 10px 20px;
    font-size: 0.875rem;
}

/* Mobile Menu */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    flex-direction: column;
    gap: 5px;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--dark);
    border-radius: 3px;
    transition: var(--transition);
}

/* ================================
   HERO SECTION
================================ */
.hero-section {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--dark) 0%, #0f172a 50%, var(--primary-dark) 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding-top: 100px;
}

.hero-section::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 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="0.5"/></svg>');
    background-size: 100px 100px;
    animation: float 20s ease-in-out infinite;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    color: var(--white);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.875rem;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-badge .icon {
    color: var(--secondary);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-title .highlight {
    background: linear-gradient(135deg, var(--secondary) 0%, #fbbf24 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 24px;
    max-width: 500px;
}

.hero-trust {
    display: flex;
    gap: 24px;
    margin-bottom: 32px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
}

.trust-item .icon {
    color: var(--accent);
    font-size: 1.25rem;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
}

.hero-stats {
    display: flex;
    gap: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--secondary);
}

.stat-label {
    font-size: 0.875rem;
    opacity: 0.8;
}

/* Hero Form */
.hero-form-container {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    padding: 40px;
}

.hero-form-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--white);
}

.hero-form-subtitle {
    font-size: 0.875rem;
    opacity: 0.8;
    margin-bottom: 24px;
    color: var(--white);
}

.lead-form .form-group {
    margin-bottom: 16px;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 1rem;
    transition: var(--transition);
}

.lead-form input::placeholder,
.lead-form select::placeholder,
.lead-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
    outline: none;
    border-color: var(--secondary);
    background: rgba(255, 255, 255, 0.15);
}

.lead-form .btn {
    width: 100%;
    padding: 16px;
    font-size: 1.125rem;
}

/* ================================
   TRUST BADGES SECTION
================================ */
.trust-badges-section {
    background: var(--white);
    padding: 80px 0;
}

.trust-badges-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.trust-badge {
    text-align: center;
    padding: 30px 15px;
    background: #f8f9fa;
    border-radius: 16px;
    transition: var(--transition);
    border: none;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.trust-badge:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.trust-badge-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.trust-badge-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

.trust-badge h3 {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.3;
}

.trust-badge p {
    font-size: 0.8125rem;
    color: var(--gray);
    line-height: 1.7;
    margin: 0;
    text-align: center;
}

@media (max-width: 1200px) {
    .trust-badges-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .trust-badges-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .trust-badge {
        padding: 25px 12px;
    }
}

/* ================================
   TRUST BAR
================================ */
.trust-bar {
    background: var(--white);
    padding: 30px 0;
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 10;
}

.trust-items {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.trust-bar-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.trust-bar-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
}

.trust-bar-text {
    font-weight: 600;
    color: var(--dark);
}

.trust-bar-subtext {
    font-size: 0.875rem;
    color: var(--gray);
}

/* ================================
   PROBLEM SOLUTION SECTION
================================ */
.problem-solution {
    background: var(--light);
}

.problem-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.problem-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--dark);
}

.problem-content h2 .highlight {
    color: var(--primary);
}

.problem-list {
    margin-top: 30px;
}

.problem-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
    padding: 20px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.problem-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-lg);
}

.problem-icon {
    width: 40px;
    height: 40px;
    background: #fef2f2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ef4444;
    flex-shrink: 0;
}

.solution-box {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
}

.solution-box h3 {
    font-size: 1.75rem;
    margin-bottom: 20px;
}

.solution-features {
    margin-top: 24px;
}

.solution-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.solution-feature .icon {
    color: var(--secondary);
}

/* ================================
   USP SECTION
================================ */
.usp-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
}

.usp-section .section-title {
    background: linear-gradient(135deg, var(--white) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: var(--white);
}

.usp-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.usp-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
}

.usp-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.usp-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 2rem;
    color: var(--white);
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.4);
}

.usp-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.usp-card p {
    font-size: 0.875rem;
    opacity: 0.9;
}

/* ================================
   SERVICES SECTION
================================ */
.services-section {
    background: var(--light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.service-image {
    height: 200px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--white);
}

.service-content {
    padding: 30px;
}

.service-content h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--dark);
}

.service-content p {
    color: var(--gray);
    margin-bottom: 16px;
}

.service-features {
    margin-bottom: 20px;
}

.service-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    color: var(--gray);
    margin-bottom: 8px;
}

.service-feature .icon {
    color: var(--accent);
}

/* ================================
   PRICING SECTION
================================ */
.pricing-section {
    background: var(--white);
}

.pricing-table {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
}

.pricing-header {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 30px;
    text-align: center;
}

.pricing-header h3 {
    font-size: 1.75rem;
    margin-bottom: 8px;
}

.pricing-rows {
    padding: 30px;
}

.pricing-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 20px;
    border-bottom: 1px solid var(--gray-light);
    transition: var(--transition);
}

.pricing-row:hover {
    background: var(--light);
}

.pricing-card {
    background: var(--white);
    border: 2px solid var(--gray-light);
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
    transition: var(--transition);
}

.pricing-card:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.pricing-card:hover h3 {
    color: var(--white);
}

.pricing-card:hover .pricing-amount {
    color: var(--white);
}

.pricing-card:hover .pricing-amount span {
    color: rgba(255,255,255,0.8);
}

.pricing-card:hover .pricing-icon {
    background: rgba(255,255,255,0.2);
    color: var(--white);
}

.pricing-row:last-child {
    border-bottom: none;
}

.home-size {
    font-weight: 600;
    color: var(--dark);
}

.price-range {
    text-align: right;
    font-weight: 700;
    color: var(--primary);
    font-size: 1.125rem;
}

.pricing-note {
    text-align: center;
    padding: 20px 30px;
    background: var(--light);
    color: var(--gray);
    font-size: 0.875rem;
}

/* ================================
   PROCESS SECTION
================================ */
.process-section {
    background: linear-gradient(135deg, var(--light) 0%, var(--white) 100%);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 60px;
    left: 10%;
    right: 10%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    z-index: 0;
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--white);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.4);
    border: 4px solid var(--white);
}

.process-step h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.process-step p {
    color: var(--gray);
    font-size: 0.875rem;
}

/* ================================
   TESTIMONIALS
================================ */
.testimonials-section {
    background: var(--dark);
    color: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 40px;
    transition: var(--transition);
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.testimonial-stars {
    color: var(--secondary);
    font-size: 1.25rem;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--white);
}

.author-info h4 {
    font-weight: 600;
}

.author-info p {
    font-size: 0.875rem;
    opacity: 0.7;
}

/* ================================
   WHY CHOOSE US
================================ */
.why-choose-section {
    background: var(--white);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.why-card {
    display: flex;
    gap: 20px;
    padding: 30px;
    background: var(--light);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.why-card:hover {
    background: var(--white);
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.why-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.why-content h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.why-content p {
    color: var(--gray);
    font-size: 0.875rem;
}

/* ================================
   CTA SECTION
================================ */
.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: float 20s linear infinite;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.cta-section p {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 32px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
}

/* ================================
   FAQ SECTION
================================ */
.faq-section {
    background: var(--light);
}

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

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

.faq-question {
    padding: 24px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--light);
}

.faq-question .icon {
    font-size: 1.5rem;
    color: var(--primary);
    transition: var(--transition);
}

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

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

.faq-item.active .faq-answer {
    padding: 0 30px 24px;
    max-height: 500px;
}

.faq-answer p {
    color: var(--gray);
    line-height: 1.8;
}

/* ================================
   FLOATING BUTTONS
================================ */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    cursor: pointer;
    text-decoration: none;
}

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

.floating-btn.whatsapp {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
}

.floating-btn.call {
    background: var(--gradient-primary);
}

.floating-btn::after {
    content: attr(data-label);
    position: absolute;
    right: 70px;
    background: var(--dark);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 0.875rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.floating-btn:hover::after {
    opacity: 1;
    visibility: visible;
}

/* ================================
   CITIES SECTION
================================ */
.cities-section {
    background: var(--dark);
    color: var(--white);
}

.cities-section .section-title {
    color: var(--white);
}

.cities-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.city-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius);
    padding: 20px;
    text-align: center;
    transition: var(--transition);
    text-decoration: none;
    color: var(--white);
    display: block;
}

.city-card:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-4px);
    color: var(--white);
}

.city-card h4 {
    font-size: 1rem;
    margin-bottom: 8px;
    color: var(--white);
}

.city-card p {
    font-size: 0.75rem;
    opacity: 0.8;
    color: var(--white);
}

/* ================================
   FOOTER
================================ */
.site-footer {
    background: var(--dark);
    color: var(--white);
    padding-top: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .logo {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 20px;
    display: block;
}

.footer-brand p {
    opacity: 0.8;
    margin-bottom: 24px;
    line-height: 1.8;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    opacity: 0.9;
}

.footer-contact-item .icon {
    color: var(--secondary);
}

.footer-title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--white);
}

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

.footer-links a {
    opacity: 0.8;
    transition: var(--transition);
}

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

.footer-cities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 40px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-city-column h4 {
    font-size: 1rem;
    margin-bottom: 16px;
    color: var(--secondary);
}

.footer-city-column ul li {
    margin-bottom: 8px;
    font-size: 0.875rem;
}

.footer-city-column ul li a {
    opacity: 0.7;
}

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

.footer-bottom {
    padding: 30px 0;
    text-align: center;
    opacity: 0.7;
    font-size: 0.875rem;
}

/* ================================
   RESPONSIVE
================================ */
@media (max-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .usp-grid,
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-steps::before {
        display: none;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .main-navigation,
    .header-cta {
        display: none;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .hero-trust {
        flex-wrap: wrap;
    }
    
    .usp-grid,
    .services-grid,
    .why-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .problem-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid,
    .footer-cities-grid {
        grid-template-columns: 1fr;
    }
    
    .floating-buttons {
        bottom: 20px;
        right: 20px;
    }
    
    .floating-btn {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
}

/* ================================
   LOADING ANIMATION
================================ */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader {
    width: 60px;
    height: 60px;
    border: 4px solid var(--gray-light);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ================================
   IMAGE HOVER EFFECTS & ANIMATIONS
================================ */

/* Image Hover Zoom Effect */
.insurance-image img,
.international-image img,
.home-shifting-image img,
.packing-image img,
.happy-customers-image img,
.why-image img {
    transition: var(--transition-slow);
    will-change: transform;
}

.insurance-image:hover img,
.international-image:hover img,
.home-shifting-image:hover img,
.packing-image:hover img,
.happy-customers-image:hover img,
.why-image:hover img {
    transform: scale(1.03);
}

/* Float Animation for Images */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.float-animation {
    animation: float 3s ease-in-out infinite;
}

/* Pulse Glow Effect for Important Elements */
@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255, 107, 0, 0.4); }
    50% { box-shadow: 0 0 20px 10px rgba(255, 107, 0, 0.2); }
}

.pulse-glow {
    animation: pulse-glow 2s ease-in-out infinite;
}

/* Shine Effect on Hover for Cards */
@keyframes shine {
    0% { left: -100%; }
    100% { left: 100%; }
}

.shine-effect {
    position: relative;
    overflow: hidden;
}

.shine-effect::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: none;
}

.shine-effect:hover::after {
    animation: shine 0.8s ease-in-out;
}

/* Bounce Animation */
@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.bounce {
    animation: bounce 1s ease-in-out infinite;
}

/* Rotate Animation for Icons */
@keyframes rotate-slow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.rotate-slow {
    animation: rotate-slow 8s linear infinite;
}

/* Scale In Animation */
@keyframes scale-in {
    0% { transform: scale(0.8); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

.scale-in {
    animation: scale-in 0.5s ease-out forwards;
}

/* Slide Up Fade Animation */
@keyframes slide-up-fade {
    0% { transform: translateY(30px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}

.slide-up-fade {
    animation: slide-up-fade 0.6s ease-out forwards;
}

/* Hover Lift Effect for Cards */
.hover-lift {
    transition: var(--transition);
}

.hover-lift:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

/* Image Border Glow on Hover */
.img-glow-hover {
    transition: var(--transition);
}

.img-glow-hover:hover {
    box-shadow: 0 0 30px rgba(255, 107, 0, 0.3);
}

/* Gradient Border Animation */
@keyframes gradient-border {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.gradient-border {
    background: linear-gradient(90deg, var(--primary), #ff8c00, var(--primary));
    background-size: 200% 200%;
    animation: gradient-border 3s ease infinite;
}

/* Stagger Animation Delays */
.stagger-1 { animation-delay: 0.1s; }
.stagger-2 { animation-delay: 0.2s; }
.stagger-3 { animation-delay: 0.3s; }
.stagger-4 { animation-delay: 0.4s; }
.stagger-5 { animation-delay: 0.5s; }

/* Parallax Scroll Effect */
.parallax {
    transform: translateZ(0);
    will-change: transform;
}

/* Smooth Image Loading */
img {
    transition: opacity 0.3s ease;
}

img[loading="lazy"] {
    opacity: 0;
}

img[loading="lazy"].loaded {
    opacity: 1;
}
