/* ========================================
   Arabul Teknoloji - Ana Stil Dosyası
   Tema: Navy + Beyaz
   ======================================== */

/* ---- CSS Variables ---- */
:root {
    --navy-dark: #0a1628;
    --navy: #0f2044;
    --navy-light: #1b2a4a;
    --navy-lighter: #243356;
    --accent: #4a9eff;
    --accent-light: #7bb8ff;
    --accent-dark: #2d7dd2;
    --white: #ffffff;
    --gray-light: #f0f4f8;
    --gray: #94a3b8;
    --gray-dark: #64748b;
    --text-primary: #ffffff;
    --text-secondary: #cbd5e1;
    --shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    --shadow-sm: 0 4px 16px rgba(0, 0, 0, 0.2);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --radius: 12px;
    --radius-lg: 20px;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--navy-dark);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    transition: var(--transition);
}

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

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

/* ---- Navbar ---- */
.navbar {
    background: rgba(10, 22, 40, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 15px 0;
    transition: var(--transition);
    border-bottom: 1px solid rgba(74, 158, 255, 0.1);
    z-index: 1050;
}

.navbar.scrolled {
    padding: 8px 0;
    background: rgba(10, 22, 40, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--white) !important;
}

.navbar-brand i {
    color: var(--accent);
}

.nav-link {
    color: var(--text-secondary) !important;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 8px 16px !important;
    border-radius: 8px;
    margin: 0 2px;
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--white) !important;
    background: rgba(74, 158, 255, 0.15);
}

.nav-link.active {
    background: var(--accent);
    color: var(--white) !important;
}

.navbar-toggler {
    color: var(--white);
    padding: 8px 12px;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 3px rgba(74, 158, 255, 0.25);
}

/* ---- Hero Slider ---- */
.hero-section {
    margin-top: 0;
    position: relative;
}

.hero-carousel .carousel-item {
    height: 100vh;
    min-height: 600px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.hero-carousel .carousel-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10, 22, 40, 0.92) 0%, rgba(15, 32, 68, 0.8) 50%, rgba(10, 22, 40, 0.7) 100%);
    z-index: 1;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
    width: 90%;
    max-width: 800px;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 35px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-carousel .carousel-indicators {
    z-index: 3;
}

.hero-carousel .carousel-indicators button {
    width: 40px;
    height: 4px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.4);
    border: none;
    transition: var(--transition);
}

.hero-carousel .carousel-indicators button.active {
    background: var(--accent);
    width: 60px;
}

.hero-carousel .carousel-control-prev,
.hero-carousel .carousel-control-next {
    width: 8%;
    z-index: 3;
    opacity: 0.6;
    transition: var(--transition);
}

.hero-carousel .carousel-control-prev:hover,
.hero-carousel .carousel-control-next:hover {
    opacity: 1;
}

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

.hero-content a {
    position: relative;
    z-index: 5;
}

/* ---- Buttons ---- */
.btn-primary-custom {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: var(--white);
    border: none;
    padding: 14px 36px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.5px;
    transition: var(--transition);
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.btn-primary-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(74, 158, 255, 0.4);
    color: var(--white);
}

.btn-primary-custom::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-primary-custom:hover::after {
    left: 100%;
}

.btn-outline-custom {
    border: 2px solid var(--accent);
    color: var(--accent);
    padding: 12px 34px;
    border-radius: 50px;
    font-weight: 600;
    background: transparent;
    transition: var(--transition);
    display: inline-block;
}

.btn-outline-custom:hover {
    background: var(--accent);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(74, 158, 255, 0.3);
}

/* ---- Section Styles ---- */
.section {
    padding: 100px 0;
    position: relative;
}

.section-dark {
    background: var(--navy);
}

.section-darker {
    background: var(--navy-dark);
}

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

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
    border-radius: 2px;
}

.section-title p {
    color: var(--gray);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 20px auto 0;
}

/* ---- Features Section (Neden Biz) ---- */
.features-section {
    background: var(--navy-dark);
}

.feature-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(74, 158, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    text-align: center;
    height: 100%;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.feature-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(74, 158, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: var(--transition);
    z-index: -1;
}

.feature-box:hover {
    transform: translateY(-8px);
    border-color: rgba(74, 158, 255, 0.3);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.feature-box:hover::before {
    opacity: 1;
}

.feature-box .icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(74, 158, 255, 0.15), rgba(45, 125, 210, 0.05));
    border: 1px solid rgba(74, 158, 255, 0.2);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 25px;
    position: relative;
}

.feature-box h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--white);
}

.feature-box p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Specific Icon Animations on Hover */
.feature-box:hover .pulse-animation i {
    animation: iconPulse 1s infinite alternate;
}

.feature-box:hover .bounce-animation i {
    animation: iconBounce 1s infinite alternate;
}

.feature-box:hover .spin-animation i {
    animation: iconSpin 2s infinite linear;
}

@keyframes iconPulse {
    0% { transform: scale(1); }
    100% { transform: scale(1.15); color: var(--white); }
}

@keyframes iconBounce {
    0% { transform: translateY(0); }
    100% { transform: translateY(-8px); color: var(--white); }
}

@keyframes iconSpin {
    0% { transform: rotateY(0deg); }
    100% { transform: rotateY(360deg); color: var(--white); }
}

/* ---- Stats Section ---- */
.stats-section {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    padding: 60px 0;
    position: relative;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%234a9eff' fill-opacity='0.05'%3E%3Cpath d='m36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.stat-card {
    text-align: center;
    padding: 30px 20px;
    position: relative;
    z-index: 1;
}

.stat-card .stat-icon {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 15px;
}

.stat-card .stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--white);
    display: block;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-card .stat-label {
    color: var(--gray);
    font-size: 0.95rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ---- Brand Slider ---- */
.brand-slider-wrapper {
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}

.brand-slider-wrapper::before,
.brand-slider-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
    pointer-events: none;
}

.brand-slider-wrapper::before {
    left: 0;
    background: linear-gradient(90deg, var(--navy-dark), transparent);
}

.brand-slider-wrapper::after {
    right: 0;
    background: linear-gradient(-90deg, var(--navy-dark), transparent);
}

.brand-slider-track {
    display: flex;
    gap: 60px;
    animation: brandScroll 30s linear infinite;
    width: max-content;
}

.brand-slider-track:hover {
    animation-play-state: paused;
}

.brand-slide {
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(74, 158, 255, 0.1);
    border-radius: var(--radius);
    padding: 20px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
    height: 90px;
    transition: var(--transition);
}

.brand-slide:hover {
    background: rgba(74, 158, 255, 0.1);
    border-color: var(--accent);
    transform: translateY(-5px);
}

.brand-slide img {
    max-height: 50px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.7;
    transition: var(--transition);
}

.brand-slide:hover img {
    opacity: 1;
}

.brand-slide span {
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 1.1rem;
}

@keyframes brandScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ---- Product / Brand Cards ---- */
.product-card,
.brand-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(74, 158, 255, 0.1);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
}

.product-card:hover,
.brand-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent);
    box-shadow: 0 20px 60px rgba(74, 158, 255, 0.15);
}

.product-card .card-img-wrapper,
.brand-card .card-img-wrapper {
    position: relative;
    overflow: hidden;
    height: 220px;
    background: var(--navy-light);
}

.product-card .card-img-wrapper img,
.brand-card .card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .card-img-wrapper img,
.brand-card:hover .card-img-wrapper img {
    transform: scale(1.1);
}

.product-card .card-body,
.brand-card .card-body {
    padding: 24px;
    text-align: center;
}

.product-card .card-body h5,
.brand-card .card-body h5 {
    font-weight: 700;
    font-size: 1.15rem;
    margin-bottom: 8px;
    color: var(--white);
}

.product-card .card-body p {
    color: var(--gray);
    font-size: 0.9rem;
    margin: 0;
}

/* ---- Page Header (Inner Pages) ---- */
.page-header {
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-light) 100%);
    padding: 160px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(74, 158, 255, 0.08) 0%, transparent 70%);
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -20%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(74, 158, 255, 0.06) 0%, transparent 70%);
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.page-header .breadcrumb {
    justify-content: center;
    position: relative;
    z-index: 1;
}

.page-header .breadcrumb-item a {
    color: var(--accent);
}

.page-header .breadcrumb-item.active {
    color: var(--gray);
}

.page-header .breadcrumb-item + .breadcrumb-item::before {
    color: var(--gray-dark);
}

/* ---- About Page ---- */
.about-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(74, 158, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 40px;
    height: 100%;
    transition: var(--transition);
}

.about-card:hover {
    border-color: var(--accent);
    background: rgba(74, 158, 255, 0.05);
}

.about-card .icon-box {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 20px;
}

.about-card h4 {
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.about-card p {
    color: var(--gray);
    font-size: 0.95rem;
    margin: 0;
}

/* Service Cards */
.service-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(74, 158, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 35px 30px;
    text-align: center;
    transition: var(--transition);
    height: 100%;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent);
    box-shadow: 0 20px 50px rgba(74, 158, 255, 0.15);
    background: rgba(74, 158, 255, 0.05);
}

.service-card .service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(74, 158, 255, 0.15), rgba(74, 158, 255, 0.05));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--accent);
    margin: 0 auto 20px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: var(--white);
    transform: rotateY(180deg);
}

.service-card h5 {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 12px;
    color: var(--white);
}

.service-card p {
    color: var(--gray);
    font-size: 0.9rem;
    margin: 0;
}

/* ---- CTA Section ---- */
.cta-section {
    background: linear-gradient(135deg, var(--accent-dark), var(--accent));
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--white);
    position: relative;
    z-index: 1;
}

.cta-section p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.btn-white {
    background: var(--white);
    color: var(--navy-dark);
    padding: 14px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    border: none;
    transition: var(--transition);
    position: relative;
    z-index: 1;
    display: inline-block;
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    color: var(--navy-dark);
}

/* ---- Contact Page ---- */
.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(74, 158, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 40px;
}

.form-control,
.form-select {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(74, 158, 255, 0.2);
    color: var(--white);
    border-radius: var(--radius);
    padding: 14px 18px;
    font-size: 0.95rem;
    transition: var(--transition);
}

.form-control:focus,
.form-select:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(74, 158, 255, 0.15);
    color: var(--white);
}

.form-control::placeholder {
    color: var(--gray-dark);
}

.form-label {
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 8px;
    color: var(--text-secondary);
}

.contact-info-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(74, 158, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 30px;
    margin-bottom: 20px;
    transition: var(--transition);
}

.contact-info-card:hover {
    border-color: var(--accent);
    background: rgba(74, 158, 255, 0.05);
}

.contact-info-card i {
    font-size: 1.5rem;
    color: var(--accent);
    margin-right: 15px;
    width: 50px;
    height: 50px;
    background: rgba(74, 158, 255, 0.1);
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-card h6 {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--gray);
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-info-card p,
.contact-info-card a {
    color: var(--white);
    font-weight: 500;
    margin: 0;
    font-size: 1rem;
}

.contact-info-card a:hover {
    color: var(--accent);
}

.map-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(74, 158, 255, 0.1);
}

.map-wrapper iframe {
    width: 100%;
    height: 250px;
    border: none;
}

/* ---- Footer ---- */
.footer {
    background: linear-gradient(180deg, var(--navy-light) 0%, var(--navy-dark) 100%);
    padding: 80px 0 0;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--accent-light), var(--accent));
}

.footer-title {
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: var(--white);
}

.footer-desc {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.8;
}

.social-links {
    margin-top: 20px;
    display: flex;
    gap: 10px;
}

.social-links a {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: rgba(74, 158, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 1rem;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--accent);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a {
    color: var(--gray);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    color: var(--gray);
    font-size: 0.9rem;
}

.footer-contact li i {
    color: var(--accent);
    margin-right: 12px;
    margin-top: 4px;
    width: 16px;
    flex-shrink: 0;
}

.footer-contact a {
    color: var(--gray);
}

.footer-contact a:hover {
    color: var(--accent);
}

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

.footer-bottom p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--gray);
}

/* ---- Back to Top ---- */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--accent);
    color: var(--white);
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    box-shadow: 0 4px 20px rgba(74, 158, 255, 0.4);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(74, 158, 255, 0.5);
}

/* ---- Product Slider on Home ---- */
.product-slider-wrapper {
    position: relative;
}

.product-slider-wrapper .swiper-button-next,
.product-slider-wrapper .swiper-button-prev {
    color: var(--accent);
}

/* ---- Alert Messages ---- */
.alert-custom {
    background: rgba(74, 158, 255, 0.1);
    border: 1px solid var(--accent);
    color: var(--white);
    border-radius: var(--radius);
    padding: 15px 20px;
}

.alert-success-custom {
    background: rgba(16, 185, 129, 0.1);
    border-color: #10b981;
}

.alert-danger-custom {
    background: rgba(239, 68, 68, 0.1);
    border-color: #ef4444;
}

/* ---- Why Choose Us ---- */
.why-card {
    text-align: center;
    padding: 30px 20px;
}

.why-card .icon-circle {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(74, 158, 255, 0.15), rgba(74, 158, 255, 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: var(--accent);
    transition: var(--transition);
}

.why-card:hover .icon-circle {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: var(--white);
    transform: scale(1.1);
}

.why-card h5 {
    font-weight: 700;
    margin-bottom: 10px;
}

.why-card p {
    color: var(--gray);
    font-size: 0.9rem;
}

/* ---- Animations ---- */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
}

.fade-up.animated {
    opacity: 1;
    transform: translateY(0);
}

/* ---- Responsive ---- */
@media (max-width: 1199.98px) {
    .hero-content h1 {
        font-size: 2.8rem;
    }
    .section-title h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 991.98px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-carousel .carousel-item {
        height: 80vh;
    }

    .section {
        padding: 70px 0;
    }

    .stat-card .stat-number {
        font-size: 2.5rem;
    }

    .navbar-collapse {
        background: var(--navy);
        margin-top: 15px;
        padding: 20px;
        border-radius: var(--radius);
        border: 1px solid rgba(74, 158, 255, 0.1);
    }

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

@media (max-width: 767.98px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .hero-carousel .carousel-item {
        height: 70vh;
        min-height: 500px;
    }

    .section {
        padding: 50px 0;
    }

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

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

    .stat-card .stat-number {
        font-size: 2rem;
    }

    .page-header {
        padding: 130px 0 60px;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .contact-form-wrapper {
        padding: 25px;
    }

    .footer {
        padding: 50px 0 0;
    }

    .cta-section {
        padding: 50px 0;
    }

    .cta-section h2 {
        font-size: 1.6rem;
    }

    .brand-slider-wrapper::before,
    .brand-slider-wrapper::after {
        width: 50px;
    }
    .brand-slider-track {
        gap: 30px;
    }
}

@media (max-width: 575.98px) {
    .hero-content h1 {
        font-size: 1.6rem;
    }

    .brand-slide {
        padding: 15px 25px;
        min-width: 140px;
        height: 70px;
    }

    .brand-slider-wrapper::before,
    .brand-slider-wrapper::after {
        width: 30px;
    }
    .brand-slider-track {
        gap: 20px;
    }

    .btn-primary-custom {
        padding: 12px 28px;
        font-size: 0.9rem;
    }
}
