/* ==========================================================================
   MEHRA LOGISTICS PACKERS & MOVERS - DESIGN SYSTEM & COMMON STYLES
   Hyderabad (Telangana) & Interstate Relocation Services
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800;900&family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&display=swap');

:root {
    /* Color Palette */
    --primary: #0f172a;
    /* Slate Navy Dark */
    --primary-light: #1e293b;
    --primary-blue: #1e3a8a;
    /* Rich Royal Blue */
    --accent: #ff0000;
    /* Vivid Logistic Orange */
    --accent-hover: #ea580c;
    --accent-light: #fff7ed;
    --accent-subtle: rgba(255, 107, 0, 0.12);
    --secondary: #2563eb;
    /* Brand Blue */
    --secondary-hover: #1d4ed8;
    --success: #10b981;
    /* Trust Green */
    --success-hover: #059669;
    --whatsapp: #25d366;
    --gold: #f59e0b;

    /* Neutrals */
    --text-main: #1e293b;
    --text-muted: #64748b;
    --text-light: #94a3b8;
    --bg-page: #f8fafc;
    --bg-card: #ffffff;
    --bg-alt: #f1f5f9;
    --border-color: #e2e8f0;
    --border-light: #f1f5f9;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.04);
    --shadow-accent: 0 10px 25px -3px rgba(255, 107, 0, 0.3);
    --shadow-blue: 0 10px 25px -3px rgba(30, 58, 138, 0.25);

    /* Radii */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    /* Typography */
    --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-normal: 0.25s ease;
    --transition-smooth: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Base Reset */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden !important;
    max-width: 100vw !important;
    width: 100% !important;
}

body {
    font-family: var(--font-body);
    line-height: 1.65;
    color: var(--text-main);
    background-color: var(--bg-page);
    overflow-x: hidden !important;
    max-width: 100vw !important;
    width: 100% !important;
    position: relative;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.25;
    color: var(--primary);
    overflow-wrap: break-word;
    word-break: break-word;
}

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

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

/* Container */
.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 16px;
    box-sizing: border-box;
}

/* Sections */
section {
    padding: 85px 0;
    position: relative;
    width: 100%;
    overflow: hidden;
}

.section-title {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 50px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent-subtle);
    color: var(--accent);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.75px;
    margin-bottom: 14px;
    border: 1px solid rgba(255, 107, 0, 0.2);
}

.section-title h2 {
    font-size: 2.4rem;
    color: var(--primary);
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.section-title h2 span {
    color: var(--accent);
    position: relative;
    display: inline-block;
}

.section-title p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: var(--radius-md);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.3px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all var(--transition-smooth);
    text-align: center;
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
    max-width: 100%;
    box-sizing: border-box;
}

.btn-primary {
    background: linear-gradient(135deg, #ff0000 0%, #ff8800 100%);
    color: #ffffff !important;
    box-shadow: var(--shadow-accent);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #ea580c 0%, #ff0000 100%);
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(255, 107, 0, 0.4);
    color: #ffffff !important;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff !important;
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn-secondary:hover {
    background: #ffffff;
    color: var(--primary-blue) !important;
    border-color: #ffffff;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-whatsapp {
    background: #25d366;
    color: #ffffff !important;
    box-shadow: 0 10px 25px -3px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp:hover {
    background: #20ba5a;
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(37, 211, 102, 0.45);
    color: #ffffff !important;
}

.btn-outline-primary {
    background: transparent;
    color: var(--accent);
    border-color: var(--accent);
}

.btn-outline-primary:hover {
    background: var(--accent);
    color: #ffffff;
    transform: translateY(-2px);
}

.btn-sm {
    padding: 9px 18px;
    font-size: 0.9rem;
}

.btn-lg {
    padding: 15px 30px;
    font-size: 1.05rem;
}

/* Floating Action Buttons */
.floating-buttons {
    position: fixed;
    right: 18px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 990;
}

.float-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.35rem;
    box-shadow: var(--shadow-xl);
    transition: all var(--transition-smooth);
    position: relative;
    text-decoration: none;
}

.float-btn:hover {
    transform: scale(1.1);
    color: white;
}

.whatsapp-btn {
    background: #25d366;
}

.call-btn {
    background: var(--accent);
}

.call-btn:hover {
    background: var(--accent-hover);
}

.email-btn {
    background: var(--primary-blue);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    section {
        padding: 65px 0;
    }

    .section-title h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    section {
        padding: 50px 0;
    }

    .section-title {
        margin-bottom: 35px;
    }

    .section-title h2 {
        font-size: 1.75rem;
    }

    .section-title p {
        font-size: 0.95rem;
    }

    .floating-buttons {
        right: 12px;
        bottom: 15px;
        gap: 8px;
    }

    .float-btn {
        width: 46px;
        height: 46px;
        font-size: 1.15rem;
    }
}

@media (max-width: 480px) {
    .btn {
        width: 100%;
    }
}