/* =========================================================================
   BASE STYLES & VARIABLES
   ========================================================================= */
   :root {
    /* Color Palette */
    --primary: #ff7a00;
    --primary-light: #ff9b3d;
    --primary-dark: #cc6200;
    --primary-gradient: linear-gradient(135deg, #ff7a00 0%, #ff9b3d 100%);
    --bg-light: #fff3e6;
    --bg-white: #ffffff;
    --bg-gray: #f8f9fa;
    
    /* Text Colors */
    --text-main: #2b2b2b;
    --text-muted: #6c757d;
    --white: #ffffff;
    
    /* Effects & Shadows */
    --shadow-sm: 0 4px 10px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 30px rgba(255, 122, 0, 0.08);
    --shadow-lg: 0 20px 40px rgba(255, 122, 0, 0.15);
    --shadow-hover: 0 15px 35px rgba(255, 122, 0, 0.25);
    
    /* structural */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-slow: 0.5s ease;
    
    /* Spacing */
    --nav-height: 80px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-white);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.mt-4 {
    margin-top: 2rem;
}

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

/* =========================================================================
   TYPOGRAPHY
   ========================================================================= */
h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-main);
}

h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-main);
}

h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

p {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

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

/* =========================================================================
   UI COMPONENTS
   ========================================================================= */

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-normal);
    border: none;
    outline: none;
}

.btn-primary {
    background: var(--primary-gradient);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(255, 122, 0, 0.3);
}

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

.btn-secondary {
    background-color: var(--bg-light);
    color: var(--primary);
    border: 1px solid var(--primary-light);
}

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

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

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

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-block {
    width: 100%;
}

/* Badges & Dividers */
.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: var(--bg-light);
    color: var(--primary);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.divider {
    height: 4px;
    width: 60px;
    background: var(--primary-gradient);
    border-radius: 2px;
    margin: 1rem auto 2rem;
}

.divider.left {
    margin: 1rem 0 2rem;
}

.section-subtitle {
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.875rem;
    display: block;
    margin-bottom: 0.5rem;
}

/* =========================================================================
   NAVIGATION BAR
   ========================================================================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-sm);
}

.navbar.scrolled {
    height: 70px;
    box-shadow: var(--shadow-md);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-logo {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.company-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    font-weight: 500;
    color: var(--text-main);
    transition: var(--transition-fast);
    position: relative;
}

.nav-links a:not(.btn):hover {
    color: var(--primary);
}

.nav-links a:not(.btn)::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--primary);
    transition: var(--transition-normal);
}

.nav-links a:not(.btn):hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    font-size: 1.5rem;
    color: var(--text-main);
    cursor: pointer;
}

/* =========================================================================
   HERO SECTION
   ========================================================================= */
.hero {
    padding-top: calc(var(--nav-height) + 4rem);
    padding-bottom: 4rem;
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 2rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

.hero-content {
    z-index: 2;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-num {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-main);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

/* Abstract Shape Background */
.blob-bg {
    position: absolute;
    width: 400px;
    height: 400px;
    background: var(--bg-light);
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    animation: morph 8s ease-in-out infinite both alternate;
    z-index: -1;
}

@keyframes morph {
    0% { border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; }
    100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
}

/* Floating Card Animation */
.hero-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: float 4s ease-in-out infinite;
    position: relative;
    z-index: 2;
}

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

.card-text h4 {
    font-size: 1rem;
    margin-bottom: 0px;
}
.card-text p {
    font-size: 0.8rem;
    margin-bottom: 0;
    color: var(--primary);
}

.status-dot {
    width: 12px;
    height: 12px;
    background-color: #28a745;
    border-radius: 50%;
    position: absolute;
    top: -4px;
    right: -4px;
    border: 2px solid white;
}

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

/* =========================================================================
   WHY CHOOSE US
   ========================================================================= */
.why-us {
    padding: 5rem 0;
    background-color: var(--bg-white);
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.highlight-item {
    text-align: center;
    padding: 2rem;
    border-radius: var(--radius-md);
    transition: var(--transition-normal);
}

.highlight-item:hover {
    background-color: var(--bg-gray);
    transform: translateY(-5px);
}

.highlight-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: var(--bg-light);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    transition: var(--transition-normal);
}

.highlight-item:hover .highlight-icon {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.1) rotate(5deg);
}

/* =========================================================================
   ABOUT SECTION
   ========================================================================= */
.about {
    padding: 6rem 0;
    background-color: var(--bg-gray);
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.image-wrapper {
    position: relative;
    padding-right: 2rem;
    padding-bottom: 2rem;
}

.image-wrapper::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 80%;
    height: 80%;
    background-color: var(--primary);
    border-radius: var(--radius-lg);
    z-index: 1;
}

.about-img {
    position: relative;
    border-radius: var(--radius-lg);
    z-index: 2;
    box-shadow: var(--shadow-md);
    width: 100%;
    height: auto;
    object-fit: contain;
    background: white;
    padding: 2rem;
}

.experience-badge {
    position: absolute;
    top: 50%;
    right: -20px;
    transform: translateY(-50%);
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    z-index: 3;
    text-align: center;
    border-left: 4px solid var(--primary);
}

.experience-badge .years {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-main);
}

.about-features {
    margin-top: 1.5rem;
}

.about-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-weight: 500;
}

.about-features i {
    color: var(--primary);
    font-size: 1.25rem;
}

/* =========================================================================
   SERVICES SECTION
   ========================================================================= */
.services {
    padding: 6rem 0;
    background-color: var(--bg-white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 2.5rem 2rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.05);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: var(--primary-gradient);
    z-index: -1;
    transition: var(--transition-normal);
}

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

.service-card:hover::before {
    height: 100%;
}

.service-card:hover h3,
.service-card:hover p,
.service-card:hover .service-link {
    color: var(--white);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--bg-light);
    color: var(--primary);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    transition: var(--transition-normal);
}

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

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-weight: 600;
    color: var(--primary);
    margin-top: 1rem;
}

.service-link i {
    transition: var(--transition-fast);
}

.service-card:hover .service-link i {
    transform: translateX(5px);
}

/* =========================================================================
   CONTACT SECTION
   ========================================================================= */
.contact {
    padding: 6rem 0;
    background-color: var(--bg-light);
    position: relative;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.contact-info {
    padding: 4rem;
    background: var(--primary-gradient);
    color: var(--white);
}

.contact-info h2 {
    color: var(--white);
}

.contact-info p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.info-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.info-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.info-item h4 {
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.info-item p {
    margin-bottom: 0;
    font-size: 0.95rem;
    opacity: 0.9;
}

.contact-form-container {
    padding: 4rem;
}

.contact-form h3 {
    font-size: 1.75rem;
    margin-bottom: 2rem;
    color: var(--text-main);
}

.form-group {
    margin-bottom: 1.5rem;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-main);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid #ddd;
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition-fast);
    background-color: #fafafa;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    background-color: var(--white);
    box-shadow: 0 0 0 3px rgba(255, 122, 0, 0.1);
}

.error-msg {
    color: #e74c3c;
    font-size: 0.8rem;
    margin-top: 5px;
    display: none;
}

.form-group.error input,
.form-group.error textarea {
    border-color: #e74c3c;
}

.form-group.error .error-msg {
    display: block;
}

.form-success {
    display: none;
    padding: 1rem;
    background-color: #d4edda;
    color: #155724;
    border-radius: var(--radius-sm);
    margin-top: 1rem;
    text-align: center;
    font-weight: 500;
}

.form-success.show {
    display: block;
    animation: fadeIn 0.5s ease;
}

/* =========================================================================
   FOOTER
   ========================================================================= */
.footer {
    background-color: var(--text-main);
    color: var(--white);
}

.footer-bottom {
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.25rem;
    font-weight: 600;
}

.footer-img {
    height: 30px;
    filter: brightness(0) invert(1);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

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

.copyright {
    color: rgba(255,255,255,0.6);
    font-size: 0.875rem;
}

/* =========================================================================
   ANIMATIONS & RESPONSIVE DESIGN
   ========================================================================= */

/* Scroll Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-up.appear,
.fade-in-left.appear,
.fade-in-right.appear {
    opacity: 1;
    transform: translate(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* =========================================================================
   MULTI-PAGE EXTENSIONS
   ========================================================================= */

/* Active Navigation State */
.nav-links a.active {
    color: var(--primary);
}
.nav-links a.active::after {
    width: 100%;
}

/* Page Headers */
.page-header {
    padding-top: calc(var(--nav-height) + 4rem);
    padding-bottom: 3rem;
    background-color: var(--bg-light);
    border-bottom: 2px solid rgba(255, 122, 0, 0.1);
}
.page-header h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}
.page-header p {
    font-size: 1.125rem;
    color: var(--text-main);
    max-width: 600px;
    margin: 0 auto;
}
.section-padding {
    padding: 5rem 0;
}
.pt-0 {
    padding-top: 0 !important;
}

/* Service Image Cards */
.img-cards {
    gap: 3rem 2rem;
}
.service-card-img {
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: var(--transition-normal);
    display: flex;
    flex-direction: column;
}
.service-card-img:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}
.card-image-wrapper {
    width: 100%;
    height: 220px;
    overflow: hidden;
}
.service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.service-card-img:hover .service-img {
    transform: scale(1.1);
}
.card-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.card-content h3 {
    color: var(--primary);
}
.card-content p {
    flex-grow: 1;
}

/* CTA Banner */
.cta-banner {
    background: var(--primary-gradient);
    border-radius: var(--radius-md);
    padding: 3rem 2rem;
    color: var(--white);
    position: relative;
    overflow: hidden;
}
.cta-banner h2, .cta-banner p {
    color: var(--white);
    position: relative;
    z-index: 2;
}
.cta-banner::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    z-index: 1;
}

/* Advanced Quote Form */
.quote-form-wrapper {
    background: var(--white);
    padding: 3rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    max-width: 900px;
    margin: 0 auto;
}
.advanced-form .form-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}
.form-section-title h3 {
    font-size: 1.25rem;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0;
}
.form-section-title i {
    color: var(--primary);
}
.advanced-form input,
.advanced-form select,
.advanced-form textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 1rem;
    background-color: #fafafa;
    transition: var(--transition-fast);
}
.advanced-form select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ff7a00' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1em;
}
.advanced-form input:focus,
.advanced-form select:focus,
.advanced-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    background-color: var(--white);
    box-shadow: 0 0 0 3px rgba(255, 122, 0, 0.1);
}

/* =========================================================================
   ADVANCED SERVICES PAGE EXTENSIONS
   ========================================================================= */

.bg-light-mesh {
    background-color: var(--bg-gray);
    background-image: radial-gradient(var(--primary-light) 1px, transparent 1px);
    background-size: 40px 40px;
    background-position: 0 0;
    opacity: 0.95;
}

.advanced-grid {
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 3rem;
}

.service-card-pro {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: var(--transition-slow);
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0,0,0,0.03);
}

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

.card-img-container {
    width: 100%;
    height: 240px;
    position: relative;
    overflow: hidden;
}

.card-img-container .service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

.img-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.4) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.service-card-pro:hover .img-overlay {
    opacity: 1;
}

.service-card-pro .card-content {
    padding: 2.5rem 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    background-color: var(--white);
    position: relative;
    z-index: 2;
    border-top: 3px solid var(--primary);
}

.service-card-pro h3 {
    font-size: 1.4rem;
    color: var(--text-main);
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.service-card-pro:hover h3 {
    color: var(--primary);
}

.btn-gradient-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    position: relative;
    z-index: 1;
    overflow: hidden;
    transition: all 0.4s ease;
}

.btn-gradient-outline::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 0%; height: 100%;
    background: var(--primary-gradient);
    transition: all 0.4s ease;
    z-index: -1;
}

.btn-gradient-outline:hover {
    color: var(--white);
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(255,122,0,0.4);
}

.btn-gradient-outline:hover::before {
    width: 100%;
}

/* Service Area & Industries */
.logistics-details {
    background-color: var(--bg-white);
    border-top: 1px solid rgba(0,0,0,0.05);
}

.details-split {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
}

.section-title {
    font-size: 2rem;
    display: flex;
    align-items: center;
    gap: 15px;
}

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

.service-area-text {
    font-size: 1.1rem;
    color: var(--text-muted);
    font-weight: 500;
}

.city-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2rem;
}

.city-list li {
    font-weight: 600;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 10px;
}

.city-list i {
    color: #28a745;
}

.industry-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.ind-tag {
    background: var(--bg-light);
    color: var(--primary);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition-fast);
    border: 1px solid rgba(255,122,0,0.1);
}

.ind-tag:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-sm);
}

.shadow-pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 122, 0, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(255, 122, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 122, 0, 0); }
}

/* Responsive Breakpoints */
@media (max-width: 992px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 8rem;
    }
    
    .hero-content {
        margin: 0 auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }
    
    .blob-bg {
        width: 300px;
        height: 300px;
    }

    .about-container {
        grid-template-columns: 1fr;
    }

    .about-image {
        order: 2;
        margin-top: 2rem;
    }

    .about-content {
        order: 1;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .details-split {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: var(--nav-height);
        left: -100%;
        width: 100%;
        height: calc(100vh - var(--nav-height));
        background-color: var(--bg-white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: var(--transition-normal);
        box-shadow: var(--shadow-sm);
    }

    .nav-links.active {
        left: 0;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }
    
    .contact-info, .contact-form-container {
        padding: 2rem;
    }
    
    .footer-flex {
        flex-direction: column;
        text-align: center;
    }

    .advanced-form .form-grid-2 {
        grid-template-columns: 1fr;
    }
    .quote-form-wrapper {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
    }
    
    .experience-badge {
        padding: 1rem;
        right: 0;
    }
    
    .experience-badge .years {
        font-size: 2rem;
    }
}