/* ===========================
   GLOBAL STYLES & VARIABLES
   =========================== */

:root {
    --primary-color: #ffd700;
    --primary-dark: #ffc700;
    --secondary-color: #000000;
    --secondary-light: #1a1a1a;
    --accent-color: #00d4ff;
    --background: #0a0a0a;
    --surface: #1a1a1a;
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --border-color: #333333;
    --glow-color: rgba(255, 215, 0, 0.3);
    --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    height: 100%;
    overflow-x: hidden;
}

body {
    font-family: "Poppins", sans-serif;
    background-color: var(--background);
    color: var(--text-primary);
    line-height: 1.6;
}

/* ===========================
   LOADING SCREEN
   =========================== */

.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    animation: fadeOut 0.8s ease-in-out 2s forwards;
}

.loader-container {
    text-align: center;
}

.loader {
    width: 60px;
    height: 60px;
    border: 3px solid rgba(255, 215, 0, 0.2);
    border-top: 3px solid #ffd700;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 30px;
}

.loading-text {
    font-size: 24px;
    font-weight: 600;
    background: linear-gradient(45deg, #ffd700, #00d4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes fadeOut {
    to {
        opacity: 0;
        visibility: hidden;
    }
}

/* ===========================
   NAVIGATION BAR
   =========================== */

.navbar-blur {
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    animation: slideDown 0.5s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

.navbar-brand {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.brand-icon {
    font-size: 28px;
}

.brand-text {
    background: linear-gradient(45deg, #ffd700, #ffc700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.navbar-brand:hover {
    transform: scale(1.05);
}

.nav-link {
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: var(--transition);
    margin: 0 5px;
    position: relative;
}

.nav-link::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

.btn-login {
    background: linear-gradient(
        45deg,
        var(--primary-color),
        var(--primary-dark)
    );
    padding: 8px 20px !important;
    border-radius: 25px;
    font-weight: 600;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.btn-login:hover {
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
}

/* ===========================
   HERO SECTION
   =========================== */

.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #0a0a0a 100%);
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.animated-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.light-line {
    position: absolute;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, #00d4ff, transparent);
    left: 20%;
    animation: flowDown 3s ease-in-out infinite;
}

.light-line:nth-child(2) {
    left: 50%;
    animation-delay: 0.5s;
}

.light-line:nth-child(3) {
    left: 80%;
    animation-delay: 1s;
}

@keyframes flowDown {
    0% {
        transform: translateY(-100%);
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateY(100%);
        opacity: 0;
    }
}

.hero-section .container {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.gradient-text {
    background: linear-gradient(135deg, #ffd700, #00d4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
    max-width: 500px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 30px;
    border: none;
    transition: var(--transition);
    cursor: pointer;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-primary {
    background: linear-gradient(
        45deg,
        var(--primary-color),
        var(--primary-dark)
    );
    color: #000;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
}

.btn-glow {
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.btn-glow:hover {
    box-shadow: 0 0 40px rgba(255, 215, 0, 0.6);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: #000;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: #000;
}

.hero-car {
    width: 100%;
    max-width: 400px;
}

.hero-car svg {
    width: 100%;
    height: auto;
    animation: carMove 3s ease-in-out infinite;
}

@keyframes carMove {
    0%,
    100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(20px);
    }
}

.car-body {
    animation: dashAnimation 2s ease-in-out infinite;
}

.wheel {
    animation: wheelSpin 1s linear infinite;
    transform-origin: center;
}

@keyframes dashAnimation {
    0%,
    100% {
        stroke-dasharray: 0 100;
    }
    50% {
        stroke-dasharray: 50 100;
    }
}

@keyframes wheelSpin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* ===========================
   FEATURES SECTION
   =========================== */

.features-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #000000 0%, #1a1a1a 100%);
    position: relative;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    letter-spacing: -0.5px;
}

.section-title::after {
    content: "";
    display: block;
    width: 100px;
    height: 4px;
    background: linear-gradient(
        90deg,
        var(--primary-color),
        var(--accent-color)
    );
    margin: 20px auto 0;
}

.feature-card {
    background: rgba(255, 215, 0, 0.05);
    border: 2px solid rgba(255, 215, 0, 0.1);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        circle,
        rgba(255, 215, 0, 0.1) 0%,
        transparent 70%
    );
    animation: glow 4s ease-in-out infinite;
}

@keyframes glow {
    0%,
    100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(25px, 25px);
    }
}

.feature-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.2);
}

.feature-icon {
    font-size: 50px;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: inline-block;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* ===========================
   CTA SECTION
   =========================== */

.cta-section {
    background: linear-gradient(135deg, #ffd700 0%, #00d4ff 100%);
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="100" height="100" fill="none"/><path d="M0 50 Q25 30 50 50 T100 50" stroke="rgba(0,0,0,0.1)" stroke-width="1" fill="none"/></svg>');
    opacity: 0.1;
    animation: slide 20s linear infinite;
}

@keyframes slide {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(100px);
    }
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
}

.cta-section h2 {
    font-size: 2.5rem;
    color: #000;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-section p {
    font-size: 1.1rem;
    color: rgba(0, 0, 0, 0.7);
    margin-bottom: 30px;
}

.cta-section .btn-primary {
    background: #000;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.cta-section .btn-primary:hover {
    background: var(--primary-color);
    color: #000;
}

/* ===========================
   FOOTER
   =========================== */

.footer {
    background: linear-gradient(180deg, #1a1a1a 0%, #000000 100%);
    border-top: 1px solid rgba(255, 215, 0, 0.1);
    color: var(--text-secondary);
}

.footer-title {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.footer-text {
    color: var(--text-secondary);
    line-height: 1.6;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--text-secondary);
    transition: var(--transition);
    text-decoration: none;
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 50%;
    color: var(--primary-color);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-color);
    color: #000;
    transform: translateY(-5px);
}

.footer-divider {
    border-color: rgba(255, 215, 0, 0.1);
}

.footer-copyright {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* ===========================
   ABOUT SECTION
   ====
   ======================= */

.about-hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    padding-top: 80px;
}

.about-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.about-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 500px;
    line-height: 1.6;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.skyline-animation {
    width: 100%;
    max-width: 400px;
}

.skyline-animation svg {
    width: 100%;
    height: auto;
}

.sun {
    animation: sunGlow 3s ease-in-out infinite;
}

@keyframes sunGlow {
    0%,
    100% {
        r: 15;
        filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.3));
    }
    50% {
        r: 18;
        filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.6));
    }
}

.mission-section {
    background: linear-gradient(180deg, #1a1a1a 0%, #000000 100%);
}

.mission-card {
    background: rgba(255, 215, 0, 0.05);
    border: 2px solid rgba(255, 215, 0, 0.1);
    padding: 50px 30px;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
}

.mission-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.2);
}

.mission-icon {
    font-size: 60px;
    color: var(--primary-color);
    margin-bottom: 30px;
    display: inline-block;
}

.mission-card h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.mission-card p {
    color: var(--text-secondary);
    line-height: 1.8;
}

.stats-section {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #0a0a0a 100%);
    padding: 80px 20px;
}

.stat-box {
    background: rgba(255, 215, 0, 0.05);
    border: 2px solid rgba(255, 215, 0, 0.1);
    padding: 40px 20px;
    border-radius: 15px;
    transition: var(--transition);
}

.stat-box:hover {
    border-color: var(--primary-color);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.2);
}

.stat-number {
    font-size: 2.5rem;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 1rem;
}

/* ===========================
   SERVICES SECTION
   =========================== */

.services-hero {
    min-height: 50vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    padding-top: 80px;
}

.services-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    text-align: center;
    width: 100%;
    letter-spacing: -1px;
}

.services-section {
    background: linear-gradient(180deg, #000000 0%, #1a1a1a 100%);
}

.service-card {
    background: rgba(255, 215, 0, 0.05);
    border: 2px solid rgba(255, 215, 0, 0.1);
    padding: 30px;
    border-radius: 15px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-15px);
    box-shadow: 0 30px 50px rgba(255, 215, 0, 0.3);
}

.service-card-top {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.service-card-top i {
    font-size: 40px;
    color: var(--primary-color);
}

.service-card-top h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
}

.service-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-price {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 15px;
}

.btn-small {
    padding: 10px 20px;
    font-size: 0.9rem;
    width: 100%;
    background: linear-gradient(
        45deg,
        var(--primary-color),
        var(--primary-dark)
    );
    color: #000;
    border: none;
    font-weight: 600;
}

.comparison-section {
    background: linear-gradient(180deg, #1a1a1a 0%, #000000 100%);
}

.comparison-card {
    background: rgba(255, 215, 0, 0.05);
    border: 2px solid rgba(255, 215, 0, 0.1);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
}

.comparison-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.2);
}

.comparison-icon {
    font-size: 50px;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: inline-block;
}

.comparison-card h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.comparison-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ===========================
   CONTACT SECTION
   =========================== */

.contact-hero {
    min-height: 50vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    padding-top: 80px;
}

.contact-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    text-align: center;
    width: 100%;
    letter-spacing: -1px;
}

.contact-section {
    background: linear-gradient(180deg, #000000 0%, #1a1a1a 100%);
}

.contact-form-title,
.contact-info-title {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 30px;
}

.contact-form {
    position: relative;
    z-index: 1;
}

.form-label {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 10px;
}

.form-control-glow {
    background: rgba(255, 215, 0, 0.05);
    border: 2px solid rgba(255, 215, 0, 0.2) !important;
    color: var(--text-primary);
    padding: 12px 15px;
    font-size: 1rem;
    transition: var(--transition);
}

.form-control-glow:focus {
    background: rgba(255, 215, 0, 0.1);
    border-color: var(--primary-color) !important;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
    color: var(--text-primary);
}

.form-control-glow::placeholder {
    color: var(--text-secondary);
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card {
    background: rgba(255, 215, 0, 0.05);
    border: 2px solid rgba(255, 215, 0, 0.1);
    padding: 25px;
    border-radius: 15px;
    display: flex;
    gap: 20px;
    transition: var(--transition);
}

.info-card:hover {
    border-color: var(--primary-color);
    transform: translateX(10px);
}

.info-icon {
    font-size: 30px;
    color: var(--primary-color);
    min-width: 50px;
}

.info-content h4 {
    font-weight: 600;
    margin-bottom: 5px;
}

.info-content p {
    color: var(--text-secondary);
    margin: 0;
}

.map-placeholder {
    border-radius: 15px;
    overflow: hidden;
}

.faq-section {
    background: linear-gradient(180deg, #1a1a1a 0%, #000000 100%);
}

.accordion {
    background: transparent;
}

.accordion-item {
    background: rgba(255, 215, 0, 0.05);
    border: 2px solid rgba(255, 215, 0, 0.1);
    margin-bottom: 15px;
    border-radius: 15px;
    transition: var(--transition);
}

.accordion-item:hover {
    border-color: var(--primary-color);
}

.accordion-button {
    background: transparent;
    color: var(--text-primary);
    font-weight: 600;
    border: none;
}

.accordion-button:not(.collapsed) {
    background: rgba(255, 215, 0, 0.1);
    color: var(--primary-color);
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23FFD700' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
}

.accordion-body {
    color: var(--text-secondary);
    background: transparent;
    border: none;
}

/* ===========================
   LOGIN PAGE
   =========================== */

.login-body {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #0a0a0a 100%);
}

.login-container {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.login-bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.light-orb {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(
        circle at 30% 30%,
        rgba(255, 215, 0, 0.3),
        transparent
    );
    filter: blur(40px);
}

.orb-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 10%;
    animation: orbFloat 8s ease-in-out infinite;
}

.orb-2 {
    width: 400px;
    height: 400px;
    bottom: 10%;
    right: 10%;
    animation: orbFloat 10s ease-in-out infinite 1s;
}

.orb-3 {
    width: 200px;
    height: 200px;
    top: 50%;
    left: 50%;
    animation: orbFloat 6s ease-in-out infinite 2s;
}

@keyframes orbFloat {
    0%,
    100% {
        transform: translate(0, 0);
    }
    25% {
        transform: translate(30px, -30px);
    }
    50% {
        transform: translate(-20px, 20px);
    }
    75% {
        transform: translate(20px, 30px);
    }
}

.login-content {
    background: rgba(26, 26, 26, 0.7);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 215, 0, 0.1);
    padding: 50px;
    border-radius: 20px;
    width: 100%;
    max-width: 420px;
    position: relative;
    z-index: 1;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.login-header {
    text-align: center;
    margin-bottom: 40px;
}

.login-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    text-decoration: none;
    color: var(--text-primary);
}

.login-logo:hover {
    opacity: 0.8;
}

.logo {
    height: 70px;
    object-fit: contain;
}

.login-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
    background: linear-gradient(
        45deg,
        var(--primary-color),
        var(--accent-color)
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.login-subtitle {
    color: var(--text-secondary);
    font-size: 1rem;
}

.login-form {
    position: relative;
}

.form-control-login {
    position: relative;
    padding-left: 40px;
    background: rgba(255, 215, 0, 0.05);
    border: 2px solid rgba(255, 215, 0, 0.2);
    height: 48px;
}

.form-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
    pointer-events: none;
}

.forgot-password {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
}

.forgot-password:hover {
    color: var(--accent-color);
}

.btn-login-submit {
    width: 100%;
    height: 48px;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.login-divider {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 30px 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.login-divider::before,
.login-divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: rgba(255, 215, 0, 0.1);
}

.social-login {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.btn-social {
    flex: 1;
    height: 48px;
    background: rgba(255, 215, 0, 0.05);
    border: 2px solid rgba(255, 215, 0, 0.2);
    color: var(--primary-color);
    font-size: 1.2rem;
    border-radius: 10px;
    transition: var(--transition);
}

.btn-social:hover {
    border-color: var(--primary-color);
    background: rgba(255, 215, 0, 0.1);
    transform: translateY(-3px);
}

.login-footer {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.signup-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.signup-link:hover {
    color: var(--accent-color);
}

/* ===========================
   RESPONSIVE DESIGN
   =========================== */

@media (max-width: 768px) {
    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .feature-card {
        padding: 25px 15px;
    }

    .feature-icon {
        font-size: 40px;
    }

    .login-content {
        padding: 30px;
        max-width: 100%;
    }

    .contact-section .row {
        flex-direction: column;
    }

    .footer {
        padding: 30px 0 !important;
    }

    .social-login {
        flex-direction: column;
    }

    .btn-social {
        height: 44px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .mission-card {
        padding: 30px 20px;
    }

    .comparison-card {
        padding: 25px 15px;
    }

    .service-card {
        padding: 20px;
    }

    .py-80 {
        padding: 40px 0 !important;
    }
}

@media (max-width: 480px) {
    .navbar-brand {
        font-size: 18px;
    }

    .brand-text {
        display: none;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .login-content {
        padding: 20px;
    }

    .login-title {
        font-size: 1.5rem;
    }

    .form-label {
        font-size: 0.9rem;
    }

    .footer-title {
        font-size: 1rem;
    }
}
