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

body {
    font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f6f8;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

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

/* =========================================
   HEADER STYLES (Floating Banner)
   ========================================= */
.site-header {
    margin: 20px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    z-index: 100;
}

.header-banner {
    background: linear-gradient(rgba(10, 35, 66, 0.75), rgba(10, 35, 66, 0.85)), 
                url('https://weatherblazer.com/wp-content/uploads/2024/06/hero-bg.jpg') center/cover no-repeat;
    position: relative;
}

.header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.logo img {
    height: 55px;
    width: auto;
}

.main-nav .nav-menu {
    display: flex;
    align-items: center;
    gap: 35px;
}

.nav-link {
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    padding: 10px 0;
}

.nav-link:hover,
.nav-link.active,
.dropdown.active > .nav-link {
    color: #e2422a;
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #0A2342;
    min-width: 260px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    border-radius: 8px;
    z-index: 100;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    padding: 10px 20px;
    font-size: 13px;
    color: #e0e0e0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.dropdown-item:hover {
    background-color: rgba(226, 66, 42, 0.15);
    color: #e2422a;
    padding-left: 25px;
}

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

.btn-contact {
    background-color: #e2422a;
    color: #ffffff;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 10px rgba(226, 66, 42, 0.3);
}

.btn-contact:hover {
    background-color: #c93520;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(226, 66, 42, 0.4);
}

.mobile-menu-toggle {
    display: none;
    cursor: pointer;
}

/* =========================================
   HERO SECTION
   ========================================= */
.hero-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 80px 0 100px;
    gap: 60px;
}

.hero-content-left {
    flex: 1;
    max-width: 600px;
}

.hero-subtitle {
    font-size: 18px;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.hero-title {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
    margin-bottom: 30px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #e2422a;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(226, 66, 42, 0.4);
}

.btn-primary:hover {
    background-color: #c93520;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(226, 66, 42, 0.5);
}

.btn-secondary {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* =========================================
   CATCHY CONTACT FORM
   ========================================= */
.hero-form-wrapper {
    flex: 0 0 420px;
}

.contact-form-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 35px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.contact-form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #e2422a, #ff8c69, #e2422a);
}

.form-title {
    font-size: 22px;
    font-weight: 700;
    color: #0F1E32;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.catchy-contact-form .form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.catchy-contact-form .form-group {
    position: relative;
}

.catchy-contact-form .form-group input {
    width: 100%;
    padding: 14px 16px;
    font-size: 15px;
    font-family: inherit;
    color: #333;
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    outline: none;
    transition: all 0.3s ease;
}

.catchy-contact-form .form-group input::placeholder {
    color: #999;
    font-weight: 400;
}

.catchy-contact-form .form-group input:focus {
    border-color: #e2422a;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(226, 66, 42, 0.1);
}

.form-submit {
    margin-top: 25px;
    text-align: center;
}

.btn-submit-form {
    width: 100%;
    background: linear-gradient(135deg, #e2422a 0%, #c93520 100%);
    color: #ffffff;
    border: none;
    padding: 16px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(226, 66, 42, 0.3);
}

.btn-submit-form:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(226, 66, 42, 0.4);
}

/* Mobile Navigation */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    height: 100vh;
    background-color: #0A2342;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
    z-index: 1002;
    transition: right 0.3s ease;
    overflow-y: auto;
    padding: 20px;
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav-header img {
    height: 45px;
}

.mobile-menu-close {
    background: none;
    border: none;
    font-size: 32px;
    cursor: pointer;
    color: #ffffff;
}

.mobile-nav-menu li {
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 10px;
}

.mobile-nav-menu a {
    display: block;
    font-size: 15px;
    font-weight: 500;
    color: #ffffff;
    text-transform: uppercase;
    padding: 8px 0;
}

.mobile-nav-menu a:hover {
    color: #e2422a;
}

.mobile-nav-menu .mobile-dropdown ul {
    padding-left: 20px;
    margin-top: 10px;
}

.mobile-nav-menu .mobile-dropdown ul li {
    margin-bottom: 8px;
    border: none;
    padding: 0;
}

.mobile-nav-menu .mobile-dropdown ul a {
    font-size: 13px;
    color: #cccccc;
    text-transform: uppercase;
}

.btn-contact-mobile {
    display: inline-block;
    background-color: #e2422a;
    color: #ffffff !important;
    padding: 12px 20px;
    border-radius: 8px;
    text-align: center;
    margin-top: 15px;
    font-weight: 600;
}

.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* =========================================
   APPLICATIONS SECTION (NEW CATCHY STYLE)
   ========================================= */
.applications-section {
    padding: 100px 0;
    background-color: #f8fafc;
}

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

.section-category {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    color: #e2422a;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 12px;
    background: rgba(226, 66, 42, 0.08);
    padding: 6px 16px;
    border-radius: 20px;
}

.section-main-title {
    font-size: 40px;
    font-weight: 800;
    color: #0F1E32;
    margin: 0;
    line-height: 1.2;
}

.applications-grid-new {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.app-card-new {
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.app-card-new:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border-color: rgba(226, 66, 42, 0.2);
}

.app-card-image-new {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.app-card-image-new img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.app-card-new:hover .app-card-image-new img {
    transform: scale(1.08);
}

.app-card-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(4px);
    color: #e2422a;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 6px 12px;
    border-radius: 8px;
    letter-spacing: 1px;
}

.app-card-content-new {
    padding: 28px;
}

.app-card-content-new h3 {
    font-size: 18px;
    font-weight: 700;
    color: #0F1E32;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.app-card-content-new p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 20px;
}

.read-more-new {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #e2422a;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    transition: gap 0.3s ease;
}

.read-more-new:hover {
    gap: 12px;
}

/* =========================================
   PRODUCTS SECTION
   ========================================= */
.products-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    max-width: 1300px;
    margin: 0 auto;
}

.product-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 380px;
    background-size: cover;
    background-position: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.product-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 30, 50, 0.9) 0%, rgba(15, 30, 50, 0.4) 50%, transparent 100%);
    transition: background 0.3s ease;
}

.product-card:hover .product-overlay {
    background: linear-gradient(to top, rgba(226, 66, 42, 0.9) 0%, rgba(15, 30, 50, 0.6) 60%, transparent 100%);
}

.product-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
}

.product-content h3 {
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 16px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.view-more-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    color: #0F1E32;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 10px 20px;
    border-radius: 8px;
    width: fit-content;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.product-card:hover .view-more-btn {
    background-color: #e2422a;
    color: #ffffff;
    transform: translateX(5px);
}

/* =========================================
   CREATIVE CTA SECTION
   ========================================= */
.creative-cta-section {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, #0a1f3d 0%, #0F1E32 100%);
    overflow: hidden;
}

.cta-bg-overlay {
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    z-index: 0;
}

.cta-container {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.cta-content {
    flex: 1;
    max-width: 600px;
}

.cta-badge {
    display: inline-block;
    background: rgba(226, 66, 42, 0.15);
    color: #ff8c69;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 8px 16px;
    border-radius: 30px;
    margin-bottom: 20px;
    border: 1px solid rgba(226, 66, 42, 0.3);
}

.cta-title {
    font-size: 48px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 24px;
}

.cta-title .text-accent {
    color: #e2422a;
    position: relative;
}

.cta-title .text-accent::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(226, 66, 42, 0.3);
    z-index: -1;
    border-radius: 4px;
}

.cta-description {
    font-size: 18px;
    color: #cbd5e1;
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 550px;
}

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

.btn-cta-primary, .btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.btn-cta-primary {
    background: linear-gradient(135deg, #e2422a 0%, #c93520 100%);
    color: #ffffff;
    box-shadow: 0 8px 25px rgba(226, 66, 42, 0.4);
}

.btn-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(226, 66, 42, 0.5);
}

.btn-cta-primary svg {
    transition: transform 0.3s ease;
}

.btn-cta-primary:hover svg {
    transform: translateX(4px);
}

.btn-cta-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.btn-cta-secondary:hover {
    background: #ffffff;
    color: #0F1E32;
    border-color: #ffffff;
    transform: translateY(-3px);
}

.cta-trust-badges {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #e2e8f0;
}

.cta-image-wrapper {
    flex: 1;
    position: relative;
    max-width: 500px;
}

.cta-image {
    width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-floating-card {
    position: absolute;
    bottom: -20px;
    left: -30px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px 24px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    animation: float 4s ease-in-out infinite;
}

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

.floating-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(226, 66, 42, 0.1);
    border-radius: 12px;
}

.floating-text {
    display: flex;
    flex-direction: column;
}

.floating-number {
    font-size: 22px;
    font-weight: 800;
    color: #0F1E32;
    line-height: 1;
}

.floating-label {
    font-size: 13px;
    font-weight: 600;
    color: #64748b;
    margin-top: 4px;
}

/* =========================================
   SLIDER WRAPPER & DOTS
   ========================================= */
.slider-wrapper {
    position: relative;
    padding-bottom: 40px;
}

.slider-track {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 10px 10px 20px 10px;
    scroll-behavior: smooth;
}

.slider-track::-webkit-scrollbar {
    display: none;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #cbd5e1;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background-color: #e2422a;
    width: 30px;
    border-radius: 5px;
}

/* =========================================
   ESTEEMED CLIENTS SECTION
   ========================================= */
.clients-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.client-item {
    flex: 0 0 220px;
    scroll-snap-align: start;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px;
    padding: 20px;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
    cursor: default;
}

.client-item:hover {
    transform: translateY(-6px);
    background: #ffffff;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    border-color: #e2422a;
}

.client-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.client-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* =========================================
   HIGHLIGHT BUTTON
   ========================================= */
.highlight-button-wrapper {
    text-align: center;
    margin-top: 40px;
}

.btn-highlight {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #e2422a 0%, #c93520 100%);
    color: #ffffff;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(226, 66, 42, 0.3);
    transition: all 0.3s ease;
}

.btn-highlight:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(226, 66, 42, 0.4);
}

/* =========================================
   TESTIMONIALS SECTION
   ========================================= */
.testimonials-section {
    padding: 100px 0;
    background-color: #f8fafc;
}

.testimonial-card {
    flex: 0 0 350px;
    scroll-snap-align: start;
    background: #ffffff;
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: #e2422a;
}

.testimonial-stars {
    color: #fbbf24;
    font-size: 20px;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.7;
    color: #475569;
    margin-bottom: 24px;
    flex-grow: 1;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    border-top: 1px solid #f1f5f9;
    padding-top: 16px;
}

.testimonial-author strong {
    font-size: 16px;
    font-weight: 700;
    color: #0F1E32;
}

.testimonial-author span {
    font-size: 13px;
    color: #64748b;
    margin-top: 4px;
}

/* =========================================
   GOOGLE REVIEW SECTION (GRID)
   ========================================= */
.google-review-section {
    padding: 100px 0;
    background-color: #f8fafc;
}

.google-reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.google-review-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.google-review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    border-color: #e2422a;
}

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

.reviewer-avatar {
    width: 40px;
    height: 40px;
    background: #e2422a;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

.reviewer-info {
    flex: 1;
}

.reviewer-info strong {
    display: block;
    font-size: 15px;
    color: #0F1E32;
}

.review-stars {
    color: #fbbf24;
    font-size: 14px;
    letter-spacing: 1px;
}

.review-google-icon {
    width: 51px;
    height: 29px;
}

.review-text {
    font-size: 14px;
    color: #475569;
    line-height: 1.6;
    font-style: italic;
}

.google-cta-wrapper {
    text-align: center;
    margin-top: 20px;
}

.btn-google-review-main {
    display: inline-flex;
    align-items: center;
    background-color: #ffffff;
    color: #0F1E32;
    border: 2px solid #e2e8f0;
    padding: 14px 28px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-google-review-main:hover {
    background-color: #4285F4;
    color: #ffffff;
    border-color: #4285F4;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(66, 133, 244, 0.3);
}

/* =========================================
   NEW CONTACT SECTION
   ========================================= */
.new-contact-section {
    padding: 100px 0;
    background-color: #e6f7ff;
}

.contact-wrapper {
    display: flex;
    gap: 0;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.contact-info-panel {
    flex: 1;
    background-color: #0F1C3F;
    padding-top: 20px;
    padding-bottom: 0px;
    display: flex;
    flex-direction: column;
    gap: 32px;
    position: relative;
}

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

.contact-item span {
    font-size: 14px;
    color: #cbd5e1;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-item strong {
    font-size: 20px;
    color: #ffffff;
    font-weight: 700;
}

.contact-agent-image {
    margin-top: auto;
    text-align: center;
}

.contact-agent-image img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
}

.contact-form-panel {
    flex: 1.5;
    background-color: #ffffff;
    padding: 48px;
    display: flex;
    flex-direction: column;
}

.form-label {
    font-size: 14px;
    font-weight: 700;
    color: #e2422a;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.form-title {
    font-size: 36px;
    font-weight: 800;
    color: #e2422a;
    text-transform: uppercase;
    margin-bottom: 32px;
    line-height: 1.2;
}

.modern-contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.modern-contact-form input,
.modern-contact-form textarea {
    width: 100%;
    padding: 16px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    color: #333;
    transition: all 0.3s ease;
}

.modern-contact-form input:focus,
.modern-contact-form textarea:focus {
    outline: none;
    border-color: #e2422a;
    box-shadow: 0 0 0 3px rgba(226, 66, 42, 0.1);
}

.btn-form-submit {
    background-color: #e2422a;
    color: #ffffff;
    border: none;
    padding: 16px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(226, 66, 42, 0.3);
}

.btn-form-submit:hover {
    background-color: #c93520;
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(226, 66, 42, 0.4);
}

/* =========================================
   MAIN CONTENT (Newsletter)
   ========================================= */
.main-content {
    padding: 60px 0;
    background-color: #f4f6f8;
}

.forms-container {
    max-width: 900px;
    margin: 0 auto;
}

.newsletter-wrapper {
    background: linear-gradient(135deg, #0F1E32 0%, #1a3a5c 100%);
    border-radius: 16px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: #ffffff;
}

.newsletter-content h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #ffffff;
}

.newsletter-content p {
    font-size: 16px;
    color: #cccccc;
    margin-bottom: 25px;
    max-width: 600px;
}

.newsletter-form {
    width: 100%;
    max-width: 500px;
}

.newsletter-input-group {
    display: flex;
    gap: 10px;
}

.newsletter-input-group input {
    flex: 1;
    padding: 14px 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    font-size: 15px;
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    transition: all 0.3s ease;
}

.newsletter-input-group input::placeholder {
    color: #aaaaaa;
}

.newsletter-input-group input:focus {
    outline: none;
    border-color: #e2422a;
    background-color: rgba(255, 255, 255, 0.15);
}

.btn-newsletter {
    background-color: #e2422a;
    color: #ffffff;
    border: none;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    white-space: nowrap;
}

.btn-newsletter:hover {
    background-color: #c93520;
    transform: translateY(-2px);
}

/* =========================================
   FOOTER STYLES
   ========================================= */
.site-footer {
    background-color: #0F1E32;
    color: #e0e0e0;
    padding-top: 60px;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1.2fr 1.2fr;
    gap: 40px;
    padding-bottom: 50px;
}

.footer-logo {
    max-width: 160px;
    height: auto;
    margin-bottom: 20px;
}

.footer-brand-text {
    font-size: 14px;
    line-height: 1.7;
    color: #a0a0a0;
    margin-top: 15px;
}

.footer-col h3 {
    color: #e2422a;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.footer-links a {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    font-weight: 500;
    color: #e0e0e0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-links a:hover {
    color: #e2422a;
    transform: translateX(5px);
}

.list-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.list-icon svg {
    width: 100%;
    height: 100%;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.6;
    color: #e0e0e0;
}

.contact-icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    margin-top: 3px;
}

.contact-info a {
    color: #e0e0e0;
}

.contact-info a:hover {
    color: #e2422a;
}

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

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

.copyright {
    font-size: 14px;
    color: #a0a0a0;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #e2422a;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: #e2422a;
}

.social-icons a:hover svg {
    stroke: #ffffff;
}

.social-icons svg {
    width: 20px;
    height: 20px;
}

/* =========================================
   RESPONSIVE DESIGN
   ========================================= */
@media (max-width: 1024px) {
    .main-nav {
        display: none;
    }

    .header-actions .btn-contact {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .hero-section {
        flex-direction: column;
        text-align: center;
        padding: 60px 0 80px;
    }

    .hero-content-left {
        max-width: 100%;
    }

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

    .hero-form-wrapper {
        flex: 0 0 auto;
        width: 100%;
        max-width: 500px;
    }

    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .applications-grid-new {
        grid-template-columns: repeat(2, 1fr);
    }

    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .site-header {
        margin: 10px;
        border-radius: 15px;
    }

    .header-top {
        padding: 15px 20px;
    }

    .logo img {
        height: 45px;
    }

    .hero-title {
        font-size: 26px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .contact-form-card {
        padding: 30px 25px;
    }

    .catchy-contact-form .form-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .newsletter-input-group {
        flex-direction: column;
    }

    .btn-newsletter {
        width: 100%;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: left;
    }

    .footer-col-brand {
        text-align: left;
    }

    .footer-col h3 {
        text-align: left;
    }

    .footer-links a {
        justify-content: flex-start;
    }

    .contact-info li {
        justify-content: flex-start;
        text-align: left;
    }

    .contact-icon {
        margin-top: 3px;
    }

    .footer-bottom-container {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .applications-grid-new {
        grid-template-columns: 1fr;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-card {
        height: 300px;
    }

    .cta-container {
        flex-direction: column;
        text-align: center;
        gap: 50px;
    }

    .cta-content {
        max-width: 100%;
    }

    .cta-title {
        font-size: 36px;
    }

    .cta-description {
        margin-left: auto;
        margin-right: auto;
    }

    .cta-actions {
        justify-content: center;
    }

    .cta-trust-badges {
        justify-content: center;
    }

    .cta-image-wrapper {
        max-width: 400px;
    }

    .cta-floating-card {
        left: 50%;
        transform: translateX(-50%);
        bottom: -20px;
        animation: none;
    }

    .slider-track {
        padding: 10px 0 20px 0;
    }

    .client-item {
        flex: 0 0 180px;
        height: 100px;
    }

    .testimonial-card {
        flex: 0 0 300px;
        padding: 24px;
    }

    .google-reviews-grid {
        grid-template-columns: 1fr;
    }

    .google-review-card {
        padding: 24px;
    }

    .review-header {
        flex-direction: column;
        text-align: center;
    }

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

    .contact-wrapper {
        flex-direction: column;
    }

    .contact-info-panel {
        padding: 32px 24px;
    }

    .contact-form-panel {
        padding: 32px 24px;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .form-title {
        font-size: 28px;
    }

    .section-main-title {
        font-size: 28px;
    }
}

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

    .cta-title {
        font-size: 28px;
    }

    .cta-actions {
        flex-direction: column;
    }

    .btn-cta-primary, .btn-cta-secondary {
        width: 100%;
        justify-content: center;
    }
}

/* =========================================
   ABOUT SECTION STYLES
   ========================================= */
.about-section {
    padding: 100px 0;
    background-color: #ffffff;
    overflow: hidden;
}

.about-container {
    display: flex;
    align-items: center;
    gap: 80px;
}

.about-image-wrapper {
    flex: 1;
    position: relative;
    z-index: 1;
}

.image-main {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(15, 30, 50, 0.15);
}

.image-main img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.image-main:hover img {
    transform: scale(1.03);
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: linear-gradient(135deg, #e2422a 0%, #c93520 100%);
    color: #ffffff;
    padding: 25px 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(226, 66, 42, 0.4);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 140px;
}

.badge-number {
    font-size: 42px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 5px;
}

.badge-text {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.3;
}

.decorative-shape {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 120px;
    height: 120px;
    background-color: rgba(226, 66, 42, 0.1);
    border-radius: 50%;
    z-index: -1;
}

.about-content-wrapper {
    flex: 1;
}

.section-subtitle {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    color: #e2422a;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    position: relative;
    padding-left: 40px;
}

.section-subtitle::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 25px;
    height: 3px;
    background-color: #e2422a;
    border-radius: 2px;
}

.section-title {
    font-size: 38px;
    font-weight: 700;
    color: #0F1E32;
    line-height: 1.3;
    margin-bottom: 25px;
}

.section-description {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.8;
}

.feature-list {
    list-style: none;
    margin: 30px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 600;
    color: #0F1E32;
}

.feature-list li svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

.stats-container {
    display: flex;
    gap: 40px;
    margin: 40px 0;
    padding: 30px 0;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

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

.stat-number {
    font-size: 36px;
    font-weight: 800;
    color: #e2422a;
    line-height: 1;
}

.stat-suffix {
    font-size: 36px;
    font-weight: 800;
    color: #e2422a;
    line-height: 1;
}

.stat-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #555;
    margin-top: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-about {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #e2422a;
    color: #ffffff;
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(226, 66, 42, 0.3);
}

.btn-about:hover {
    background-color: #c93520;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(226, 66, 42, 0.4);
}

.btn-about svg {
    transition: transform 0.3s ease;
}

.btn-about:hover svg {
    transform: translateX(5px);
}

.reveal-left, .reveal-right {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal-left {
    transform: translateX(-50px);
}

.reveal-right {
    transform: translateX(50px);
}

.reveal-left.active, .reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

@media (max-width: 1024px) {
    .about-container {
        gap: 50px;
    }
    
    .section-title {
        font-size: 32px;
    }
}

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

    .about-container {
        flex-direction: column;
        gap: 60px;
    }

    .about-image-wrapper {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }

    .experience-badge {
        bottom: -20px;
        right: -10px;
        padding: 20px 25px;
        min-width: 120px;
    }

    .badge-number {
        font-size: 36px;
    }

    .section-title {
        font-size: 28px;
    }

    .feature-list {
        grid-template-columns: 1fr;
    }

    .stats-container {
        flex-direction: column;
        gap: 25px;
    }

    .stat-item {
        text-align: left;
        display: flex;
        align-items: center;
        gap: 15px;
    }

    .stat-label {
        margin-top: 0;
    }
}