/* =========================================================
   Gravity UPS Rent - Clean Global Style.css
   Components covered:
   - Global variables/reset
   - Sticky header + desktop/mobile navigation
   - Contact section
   - Footer + fixed trust banner
   - Floating call/WhatsApp buttons
   - Power capacity calculator
========================================================= */

/* =========================
   1. Variables
========================= */
:root {
    /* GPS brand variables */
    --gps-primary: #020b18;
    --gps-blue: #0047ab;
    --gps-orange: #ff9800;
    --gps-dark: #1f2937;
    --gps-text: #333333;
    --gps-muted: #6b7280;
    --gps-light: #f5f8ff;
    --gps-white: #ffffff;
    --gps-border: #e5e7eb;
    --gps-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);

    /* Common page variables */
    --primary-blue: #0047ab;
    --accent-orange: #ff9800;
    --light-blue: #e6f0ff;
    --dark-blue: #00264d;
    --dark-gray: #333333;
    --light-gray: #f5f5f5;
    --white: #ffffff;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);

    /* Generic variables used by calculator and older pages */
    --primary: #0047ab;
    --secondary: #00264d;
    --accent: #ff9800;
    --gray: #6b7280;
    --dark: #111827;
    --danger: #e9413a;
    --warning: #ff9800;
    --text-color: #333333;
    --page-bg: #ffffff;
    --accent-purple: #0047ab;

    /* Footer variables */
    --footer-dark: #00264d;
    --footer-dark-2: #001f3f;
    --footer-text: #ffffff;
    --footer-muted: #cbd5e1;
    --footer-orange: #ff9800;
    --footer-red: #e9413a;
    --footer-border: rgba(255, 255, 255, 0.12);
}

/* =========================
   2. Reset / Base
========================= */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    line-height: 1.6;
    font-family: "Poppins", Arial, sans-serif;
    color: var(--gps-text);
    background: var(--page-bg);
    overflow-x: hidden;
}

body.gps-menu-open {
    overflow: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.25s ease;
}

a:hover {
    color: var(--gps-blue);
}

ul,
ol {
    margin: 0;
    padding: 0;
}

ul {
    list-style: none;
}

button,
input,
select,
textarea {
    font-family: inherit;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* =========================
   3. Sticky Header Wrapper
   Important for dynamically loaded header.html
========================= */
#site-header {
    position: sticky !important;
    top: 0 !important;
    z-index: 99999 !important;
    width: 100% !important;
    background: var(--gps-white) !important;
}

/* When header is loaded inside #site-header, wrapper handles sticky */
#site-header .gps-header {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    z-index: 99999 !important;
}

/* Fallback: if header.html is used directly without #site-header */
.gps-header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--gps-white);
    z-index: 1200;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.gps-header-inner {
    max-width: 1200px;
    height: 86px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.gps-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    text-decoration: none;
}

.gps-logo img {
    display: block;
    max-width: 210px;
    max-height: 66px;
    object-fit: contain;
}

.gps-nav {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.gps-menu {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.gps-menu-item {
    position: relative;
}

.gps-link,
.gps-submenu-toggle {
    min-height: 86px;
    padding: 0 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    border: 0;
    background: transparent;
    color: var(--gps-text);
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    white-space: nowrap;
    cursor: pointer;
    text-decoration: none !important;
    transition: color 0.25s ease;
}

.gps-link:hover,
.gps-submenu-toggle:hover,
.gps-link.is-active,
.gps-submenu-toggle.is-active {
    color: var(--gps-blue) !important;
}

/* Remove black underline from menu */
.gps-link::after,
.gps-submenu-toggle::after {
    display: none !important;
    content: none !important;
}

.gps-chevron {
    font-size: 13px;
    line-height: 1;
    transition: transform 0.25s ease;
}

.gps-menu-item:hover .gps-chevron,
.gps-menu-item.is-open .gps-chevron {
    transform: rotate(180deg);
}

/* Desktop dropdown */
.gps-submenu {
    position: absolute;
    top: 100%;
    left: 50%;
    min-width: 270px;
    max-height: calc(100vh - 125px);
    overflow-y: auto;
    padding: 12px 0;
    background: var(--gps-white);
    border-top: 3px solid var(--gps-primary);
    border-radius: 0 0 12px 12px;
    box-shadow: var(--gps-shadow);
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, 10px);
    transition: all 0.25s ease;
    z-index: 1300;
}

.gps-menu-item:hover > .gps-submenu,
.gps-menu-item.is-open > .gps-submenu {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
}

.gps-submenu a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 18px;
    color: #4b5563;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.35;
    text-decoration: none !important;
    transition: all 0.2s ease;
}

.gps-submenu a:hover,
.gps-submenu a.is-active {
    background: var(--gps-light);
    color: var(--gps-blue);
    padding-left: 23px;
}

.gps-submenu-icon {
    width: 18px;
    min-width: 18px;
    color: var(--gps-orange);
    text-align: center;
    font-size: 13px;
}

/* Mobile menu controls hidden on desktop */
.gps-mobile-head,
.gps-menu-btn,
.gps-overlay {
    display: none;
}

.gps-menu-btn {
    width: 44px;
    height: 44px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    flex-shrink: 0;
}

.gps-menu-btn span {
    display: block;
    width: 26px;
    height: 3px;
    margin: 5px auto;
    background: var(--gps-primary);
    border-radius: 5px;
    transition: all 0.25s ease;
}

.gps-menu-btn.is-active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.gps-menu-btn.is-active span:nth-child(2) {
    opacity: 0;
}

.gps-menu-btn.is-active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* =========================
   4. Contact Section
========================= */
.gps-contact-section {
    background: #2c3e50;
    color: #ffffff;
    padding: 70px 0;
}

.gps-contact-wrap {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

.gps-contact-title,
.gps-form-title {
    margin: 0 0 28px;
    color: #ffffff;
    font-size: 32px;
    font-weight: 700;
}

.gps-contact-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.gps-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 22px;
    color: #ffffff;
    font-size: 16px;
    line-height: 1.7;
}

.gps-contact-list i {
    min-width: 20px;
    margin-top: 5px;
    color: var(--footer-red);
    font-size: 17px;
}

.gps-contact-list strong {
    color: #ffffff;
    font-weight: 700;
}

.gps-contact-list a {
    color: #ffffff;
}

.gps-contact-list a:hover {
    color: var(--footer-orange);
}

.gps-contact-form {
    padding: 38px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
}

.gps-form-group {
    margin-bottom: 24px;
}

.gps-form-group label {
    display: block;
    margin-bottom: 9px;
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
}

.gps-form-group input,
.gps-form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.10);
    color: #ffffff;
    border-radius: 7px;
    font-size: 15px;
    outline: none;
}

.gps-form-group input::placeholder,
.gps-form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.65);
}

.gps-form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.gps-form-group input:focus,
.gps-form-group textarea:focus {
    border-color: var(--footer-orange);
    background: rgba(255, 255, 255, 0.14);
}

.gps-form-submit {
    width: 100%;
    padding: 15px 20px;
    border: none;
    border-radius: 7px;
    background: var(--footer-red);
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gps-form-submit:hover {
    background: #d93630;
    transform: translateY(-2px);
}

/* =========================
   5. Footer
========================= */
.gps-footer {
    background: var(--footer-dark);
    color: var(--footer-text);
    padding: 60px 0 58px;
}

.gps-footer-wrap {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 20px;
}

.gps-footer-grid {
    display: grid;
    grid-template-columns: 1.1fr 1.1fr 1.1fr 1.3fr 1.3fr;
    gap: 45px;
    align-items: flex-start;
}

.gps-footer-col h3 {
    position: relative;
    margin: 0 0 28px;
    padding-bottom: 12px;
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
}

.gps-footer-col h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: var(--footer-orange);
}

.gps-footer-col ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.gps-footer-col ul li {
    margin-bottom: 14px;
    color: var(--footer-muted);
    line-height: 1.6;
}

.gps-footer-col ul li a {
    color: var(--footer-muted);
    transition: all 0.3s ease;
}

.gps-footer-col ul li a:hover {
    color: var(--footer-orange);
    padding-left: 5px;
}

.gps-footer-contact li {
    display: flex;
    gap: 13px;
    align-items: flex-start;
}

.gps-footer-contact i {
    min-width: 18px;
    margin-top: 5px;
    color: var(--footer-orange);
}

.gps-footer-contact a {
    color: #ffffff;
}

.gps-footer-newsletter p {
    margin: 0 0 18px;
    color: var(--footer-muted);
    line-height: 1.6;
}

.gps-newsletter-form input {
    width: 100%;
    height: 46px;
    margin-bottom: 12px;
    padding: 0 14px;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    outline: none;
}

.gps-newsletter-form button {
    width: 100%;
    height: 46px;
    border: none;
    border-radius: 5px;
    background: var(--footer-orange);
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gps-newsletter-form button:hover {
    background: #e68900;
}

.gps-social-links {
    display: flex;
    gap: 13px;
    margin-top: 24px;
}

.gps-social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.10);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.gps-social-links a:hover {
    background: var(--footer-orange);
    color: #ffffff;
    transform: translateY(-3px);
}

.gps-footer-bottom {
    margin-top: 45px;
    padding: 18px 0;
    border-top: 1px solid var(--footer-border);
    text-align: center;
    color: var(--footer-muted);
    font-size: 14px;
}

/* =========================
   6. Fixed Trust Banner
========================= */
.gps-trust-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 900;
    min-height: 48px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.96);
    color: #333333;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.10);
    font-size: 14px;
}

.gps-trust-badge {
    display: flex;
    align-items: center;
    gap: 7px;
    white-space: nowrap;
}

.gps-trust-badge i {
    color: var(--footer-orange);
}

.gps-trust-banner .gps-tagline {
    color: var(--gps-blue);
    font-weight: 700;
    white-space: nowrap;
}

/* =========================
   7. Floating Buttons
========================= */
.gps-floating-btn {
    position: fixed;
    z-index: 9999;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 24px;
    text-decoration: none;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
}

.gps-floating-btn:hover {
    transform: scale(1.08);
    color: #ffffff;
}

.gps-floating-call {
    left: 30px;
    bottom: 74px;
    background: #0057c2;
}

.gps-floating-whatsapp {
    right: 30px;
    bottom: 74px;
    background: #25d366;
}

.gps-floating-btn i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.gps-floating-call i {
    transform: rotate(4deg);
}

.gps-floating-whatsapp i {
    transform: rotate(0deg);
}

/* =========================
   8. Power Capacity Calculator
========================= */
.gravity-power-calculator {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.gravity-power-calculator .company-header {
    text-align: center;
    margin-bottom: 40px;
}

.gravity-power-calculator .company-name {
    margin-bottom: 10px;
    color: var(--primary);
    font-size: 2.5rem;
    font-weight: 700;
}

.gravity-power-calculator .company-tagline {
    color: var(--gray);
    font-size: 1.2rem;
    font-weight: 400;
}

.gravity-power-calculator .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.gravity-power-calculator .section-header h1 {
    position: relative;
    display: inline-block;
    margin: 0 0 15px;
    color: var(--primary);
    font-size: 2.5rem;
}

.gravity-power-calculator .section-header h1::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary), var(--accent));
    border-radius: 2px;
    transform: translateX(-50%);
}

.gravity-power-calculator .section-header p {
    max-width: 700px;
    margin: 25px auto 0;
    color: var(--gray);
    font-size: 1.1rem;
}

.gravity-power-calculator .calculator-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    overflow: hidden;
    background: #2b2c2e;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.gravity-power-calculator .calculator-form {
    padding: 40px;
    background: #ffffff;
}

.gravity-power-calculator .calculator-results {
    padding: 40px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.gravity-power-calculator .form-group {
    margin-bottom: 25px;
}

.gravity-power-calculator .form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--dark);
    font-weight: 600;
}

.gravity-power-calculator .form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--light-gray);
    border-radius: 6px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.gravity-power-calculator .form-control:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.2);
}

.gravity-power-calculator .appliance-list {
    margin-top: 10px;
}

.gravity-power-calculator .appliance-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid var(--light-gray);
}

.gravity-power-calculator .appliance-item:last-child {
    border-bottom: none;
}

.gravity-power-calculator .appliance-name {
    flex: 1;
}

.gravity-power-calculator .appliance-watts {
    width: 120px;
}

.gravity-power-calculator .appliance-quantity {
    width: 80px;
}

.gravity-power-calculator .appliance-total {
    width: 100px;
    text-align: right;
    font-weight: 600;
}

.gravity-power-calculator .btn {
    display: inline-block;
    padding: 12px 25px;
    border: none;
    border-radius: 6px;
    background: var(--secondary);
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gravity-power-calculator .btn:hover {
    background: var(--primary);
    color: #ffffff;
    transform: translateY(-2px);
}

.gravity-power-calculator .btn-block {
    display: block;
    width: 100%;
}

.gravity-power-calculator .btn-accent {
    background: var(--accent);
}

.gravity-power-calculator .result-card {
    margin-bottom: 25px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.gravity-power-calculator .result-value {
    margin: 10px 0;
    color: #ffffff;
    font-size: 3rem;
    font-weight: 700;
}

.gravity-power-calculator .result-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

.gravity-power-calculator .recommendation {
    margin-top: 20px;
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.9;
}

.gravity-power-calculator .recommendation strong {
    color: #ffffff;
}

.gravity-power-calculator .faq-section {
    margin-top: 80px;
}

.gravity-power-calculator .faq-title {
    margin-bottom: 40px;
    text-align: center;
    color: var(--primary);
    font-size: 1.8rem;
}

.gravity-power-calculator .faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.gravity-power-calculator .faq-item {
    padding: 25px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.gravity-power-calculator .faq-item h3 {
    margin: 0 0 10px;
    color: var(--primary);
    font-size: 1.2rem;
}

.gravity-power-calculator .faq-item p {
    margin: 0;
    color: var(--gray);
}

.gravity-power-calculator .info-note {
    margin: 20px 0;
    padding: 15px;
    background: #fff9e6;
    border-left: 4px solid var(--warning);
    border-radius: 0 4px 4px 0;
}

.gravity-power-calculator .info-note p {
    margin: 0;
    color: #744210;
}

.gravity-power-calculator .add-appliance-btn {
    margin-top: 10px;
    padding: 8px 15px;
    border: 1px dashed var(--gray);
    border-radius: 4px;
    background: transparent;
    color: var(--gray);
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.gravity-power-calculator .add-appliance-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.gravity-power-calculator .appliance-actions {
    display: flex;
    gap: 10px;
}

.gravity-power-calculator .remove-appliance {
    border: none;
    background: transparent;
    color: var(--danger);
    cursor: pointer;
    font-size: 1.2rem;
}

/* =========================
   9. Responsive
========================= */
@media (max-width: 1100px) {
    .gps-footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1080px) {
    .gps-link,
    .gps-submenu-toggle {
        padding: 0 10px;
        font-size: 15px;
    }

    .gps-logo img {
        max-width: 190px;
    }
}

@media (max-width: 991px) {
    .gps-header-inner {
        height: 72px;
        padding: 0 16px;
    }

    .gps-logo img {
        max-width: 185px;
        max-height: 56px;
    }

    .gps-menu-btn {
        display: block;
    }

    .gps-overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(15, 23, 42, 0.48);
        z-index: 1250;
    }

    .gps-overlay.is-active {
        display: block;
    }

    .gps-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: min(88vw, 370px);
        height: 100vh;
        display: block;
        overflow-y: auto;
        padding-bottom: 25px;
        background: var(--gps-white);
        box-shadow: -8px 0 30px rgba(0, 0, 0, 0.18);
        transition: right 0.3s ease;
        z-index: 1300;
    }

    .gps-nav.is-active {
        right: 0;
    }

    .gps-mobile-head {
        position: sticky;
        top: 0;
        height: 74px;
        padding: 0 16px;
        background: var(--gps-white);
        border-bottom: 1px solid var(--gps-border);
        display: flex;
        align-items: center;
        justify-content: space-between;
        z-index: 2;
    }

    .gps-mobile-head img {
        max-width: 165px;
        max-height: 52px;
        object-fit: contain;
    }

    .gps-close-btn {
        width: 38px;
        height: 38px;
        border: 0;
        border-radius: 50%;
        background: var(--gps-light);
        color: var(--gps-primary);
        font-size: 25px;
        line-height: 1;
        cursor: pointer;
    }

    .gps-menu {
        display: block;
        padding: 12px 0;
    }

    .gps-menu-item {
        border-bottom: 1px solid #f1f1f1;
    }

    .gps-link,
    .gps-submenu-toggle {
        width: 100%;
        min-height: auto;
        padding: 15px 20px;
        justify-content: space-between;
        color: var(--gps-dark);
        font-size: 15px;
    }

    .gps-chevron {
        margin-left: auto;
    }

    .gps-menu-item.is-open > .gps-submenu-toggle .gps-chevron {
        transform: rotate(180deg);
    }

    /* Mobile submenu - single clean version */
    .gps-submenu {
        position: static !important;
        display: none !important;
        min-width: 100% !important;
        max-height: none !important;
        overflow: visible !important;
        padding: 0 !important;
        border: 0 !important;
        border-radius: 0 !important;
        background: #f8fafc !important;
        box-shadow: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
    }

    .gps-menu-item:hover > .gps-submenu {
        display: none !important;
    }

    .gps-menu-item.is-open > .gps-submenu {
        display: block !important;
        padding: 6px 0 10px !important;
    }

    .gps-submenu a {
        display: flex !important;
        align-items: center;
        gap: 10px;
        padding: 12px 24px 12px 36px !important;
        background: #f8fafc !important;
        color: #374151 !important;
        font-size: 14px !important;
        line-height: 1.5 !important;
    }

    .gps-submenu a:hover {
        padding-left: 40px !important;
        background: #eef5ff !important;
        color: var(--gps-blue) !important;
    }

    .gps-submenu-icon {
        width: 18px;
        min-width: 18px;
        color: var(--gps-orange) !important;
        text-align: center;
    }
}
.gps-image-slider-section {
    padding: 50px 0;
    background: var(--page-bg);
}

.gps-slider-container {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

.gps-slider-wrapper {
    width: 100%;
    overflow: hidden;
    background: #ffffff;
    border-radius: 18px;
    padding: 18px;
    box-shadow: var(--shadow);
}

.gps-slider-track {
    --slide-w: 270px;
    --slide-h: 170px;
    --gap: 18px;

    display: flex;
    gap: var(--gap);
    width: max-content;
    animation: gpsAutoSlide 35s linear infinite;
    will-change: transform;
}

.gps-slider-wrapper:hover .gps-slider-track {
    animation-play-state: paused;
}

.gps-slide-card {
    width: var(--slide-w);
    height: var(--slide-h);
    flex: 0 0 auto;
    border-radius: 16px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #dbe7f5;
    box-shadow: 0 6px 18px rgba(0, 47, 108, 0.08);
}

.gps-slide-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.35s ease;
}

.gps-slide-card:hover img {
    transform: scale(1.06);
}

@keyframes gpsAutoSlide {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

@media (max-width: 1024px) {
    .gps-slider-track {
        --slide-w: 240px;
        --slide-h: 155px;
    }
}

@media (max-width: 768px) {
    .gps-image-slider-section {
        padding: 35px 0;
    }

    .gps-slider-container {
        width: calc(100% - 24px);
    }

    .gps-slider-track {
        --slide-w: 220px;
        --slide-h: 145px;
    }
}
@media (max-width: 968px) {
    .gravity-power-calculator .calculator-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {
    .gps-contact-wrap {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .gps-footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .gravity-power-calculator .faq-grid {
        grid-template-columns: 1fr;
    }

    .gravity-power-calculator .section-header h1,
    .gravity-power-calculator .company-name {
        font-size: 2rem;
    }

    .gravity-power-calculator .appliance-item {
        flex-wrap: wrap;
    }

    .gravity-power-calculator .appliance-name,
    .gravity-power-calculator .appliance-watts,
    .gravity-power-calculator .appliance-quantity,
    .gravity-power-calculator .appliance-total {
        width: 100%;
    }

    .gravity-power-calculator .appliance-name,
    .gravity-power-calculator .appliance-watts,
    .gravity-power-calculator .appliance-quantity {
        margin-bottom: 10px;
    }

    .gravity-power-calculator .appliance-total {
        text-align: left;
    }

    .gps-floating-btn {
        width: 54px;
        height: 54px;
        font-size: 22px;
    }

    .gps-floating-call {
        left: 18px;
        bottom: 78px;
    }

    .gps-floating-whatsapp {
        right: 18px;
        bottom: 78px;
    }

    .gps-trust-banner {
        gap: 8px 14px;
        padding: 7px 8px;
        font-size: 12px;
    }
}

@media (max-width: 600px) {
    .gps-contact-section {
        padding: 50px 0;
    }

    .gps-contact-title,
    .gps-form-title {
        font-size: 26px;
    }

    .gps-contact-form {
        padding: 25px 18px;
    }

    .gps-footer {
        padding-top: 45px;
    }

    .gps-footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
}

@media (max-width: 480px) {
    .gps-header-inner {
        height: 68px;
        padding: 0 12px;
    }

    .gps-logo img {
        max-width: 170px;
        max-height: 50px;
    }

    .gps-nav {
        width: 90vw;
    }
}