/* ================================================
   PARQMATIC - PARKING TECHNOLOGY SYSTEMS
   Modern Tech Company Stylesheet
   ================================================ */

/* CSS Variables */
:root {
    --primary: #0EA5E9;          /* Sky Blue - Tech */
    --primary-dark: #0284C7;     /* Darker Blue */
    --primary-light: #38BDF8;    /* Lighter Blue */
    --accent: #22C55E;           /* Green - Available */
    --accent-dark: #16A34A;
    --secondary: #0F172A;        /* Dark Navy */
    --secondary-light: #1E293B;
    --text: #1E293B;
    --text-light: #64748B;
    --text-muted: #94A3B8;
    --white: #ffffff;
    --off-white: #F8FAFC;
    --bg-light: #F1F5F9;
    --bg-dark: #0F172A;
    --gradient: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    --gradient-dark: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
    --font-primary: 'Inter', sans-serif;
    --font-display: 'Space Grotesk', sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow: 0 10px 40px rgba(15, 23, 42, 0.1);
    --shadow-lg: 0 25px 50px rgba(15, 23, 42, 0.15);
    --shadow-primary: 0 10px 40px rgba(14, 165, 233, 0.3);
    --radius: 12px;
    --radius-lg: 20px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    color: var(--secondary);
}

/* ================================================
   HEADER
   ================================================ */
.header-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: var(--transition);
}

.header-main {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 15px 0;
    border-bottom: 1px solid rgba(14, 165, 233, 0.1);
}

.header-main.scrolled {
    box-shadow: var(--shadow);
}

.main-header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.logo-text {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 48px;
    height: 48px;
    background: var(--gradient);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 22px;
    box-shadow: var(--shadow-primary);
}

.logo-name {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 700;
    color: var(--secondary);
    letter-spacing: -0.5px;
}

.logo-name span {
    color: var(--primary);
}

/* Navigation */
.header-nav nav ul {
    display: flex;
    align-items: center;
    gap: 35px;
}

.header-nav nav ul li a.nav-link {
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 8px 0;
    position: relative;
}

.header-nav nav ul li a.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.header-nav nav ul li a.nav-link:hover {
    color: var(--primary);
}

.header-nav nav ul li a.nav-link:hover::after {
    width: 100%;
}

/* Dropdown */
.has-dropdown .submenu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    padding: 12px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    border-radius: var(--radius);
    border-top: 3px solid var(--primary);
}

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

.submenu li a {
    display: block;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
}

.submenu li a:hover {
    color: var(--primary);
    background: var(--bg-light);
}

/* Actions */
.actions-area {
    display: flex;
    align-items: center;
    gap: 20px;
}

.menu-btn {
    display: none;
    cursor: pointer;
    padding: 10px;
}

/* Buttons */
.btn-primary-custom {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: var(--gradient);
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--radius);
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-primary-custom:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-primary);
    color: var(--white);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: transparent;
    color: var(--secondary);
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--radius);
    border: 2px solid var(--secondary);
    transition: var(--transition);
}

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

.btn-outline.light {
    border-color: var(--white);
    color: var(--white);
}

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

/* ================================================
   HERO SECTION
   ================================================ */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.7) 50%, rgba(15, 23, 42, 0.5) 100%);
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(14, 165, 233, 0.2);
    color: var(--primary-light);
    font-size: 13px;
    font-weight: 600;
    border-radius: 50px;
    margin-bottom: 25px;
    border: 1px solid rgba(14, 165, 233, 0.3);
}

.hero-title {
    font-size: 56px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 25px;
}

.hero-title span {
    color: var(--primary);
}

.hero-desc {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 35px;
    max-width: 520px;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 50px;
}

.btn-play {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--white);
}

.play-icon {
    width: 55px;
    height: 55px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 18px;
    transition: var(--transition);
}

.btn-play:hover .play-icon {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
}

.play-text {
    font-weight: 600;
}

.hero-stats {
    display: flex;
    gap: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stats .stat h3 {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 5px;
}

.hero-stats .stat p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* Hero Image */
.hero-image {
    position: relative;
}

.hero-image > img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.floating-card {
    position: absolute;
    background: var(--white);
    padding: 15px 20px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    animation: float 3s ease-in-out infinite;
}

.floating-card i {
    width: 45px;
    height: 45px;
    background: var(--bg-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 20px;
}

.floating-card span {
    font-size: 12px;
    color: var(--text-light);
    display: block;
}

.floating-card strong {
    font-size: 20px;
    font-weight: 700;
    color: var(--secondary);
}

.card-1 {
    top: 20%;
    left: -30px;
}

.card-2 {
    bottom: 20%;
    right: -30px;
    animation-delay: 1.5s;
}

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

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

.scroll-indicator span {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.mouse {
    width: 25px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 15px;
    margin: 0 auto;
    position: relative;
}

.mouse::after {
    content: '';
    width: 4px;
    height: 8px;
    background: var(--primary);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(15px); }
}

/* ================================================
   CLIENTS BAR
   ================================================ */
.clients-bar {
    background: var(--bg-light);
    padding: 25px 0;
}

.clients-wrapper {
    display: flex;
    align-items: center;
    gap: 50px;
}

.clients-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-light);
    white-space: nowrap;
}

.clients-logos {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.client-logo {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-muted);
    opacity: 0.6;
    transition: var(--transition);
}

.client-logo:hover {
    opacity: 1;
    color: var(--primary);
}

/* ================================================
   SOLUTIONS SECTION
   ================================================ */
.solutions-section {
    padding: 120px 0;
    background: var(--white);
}

.title-area-center {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 40px;
}

.badge-label {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(14, 165, 233, 0.1);
    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    margin-bottom: 15px;
}

.title-area-center .title {
    font-size: 42px;
    margin-bottom: 15px;
}

.title-area-center .text {
    font-size: 16px;
    color: var(--text-light);
}

.title-area-center.light .title {
    color: var(--white);
}

.title-area-center.light .text {
    color: rgba(255, 255, 255, 0.7);
}

/* Solution Cards */
.solution-card {
    background: var(--white);
    padding: 35px 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    position: relative;
    border: 1px solid transparent;
}

.solution-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.solution-card.featured {
    border-color: var(--primary);
    background: linear-gradient(180deg, rgba(14, 165, 233, 0.05) 0%, var(--white) 100%);
}

.featured-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 50px;
    text-transform: uppercase;
}

.card-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 28px;
    margin-bottom: 25px;
}

.solution-card h5 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

.solution-card > p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.features-list {
    margin-bottom: 25px;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text);
    margin-bottom: 10px;
}

.features-list li i {
    color: var(--accent);
    font-size: 12px;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
}

.card-link:hover {
    gap: 12px;
}

/* ================================================
   ABOUT SECTION
   ================================================ */
.about-section {
    padding: 120px 0;
    background: var(--bg-light);
}

.about-images {
    position: relative;
}

.img-main {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.img-secondary {
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 250px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    border: 5px solid var(--white);
}

.experience-box {
    position: absolute;
    top: 30px;
    left: -30px;
    background: var(--gradient);
    padding: 25px 30px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow-primary);
}

.experience-box .number {
    display: block;
    font-size: 42px;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}

.experience-box .text {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
}

.about-content {
    padding-left: 30px;
}

.about-content .title {
    font-size: 38px;
    margin-bottom: 20px;
}

.about-content .desc {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.8;
}

.about-features {
    margin-bottom: 35px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: rgba(14, 165, 233, 0.1);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 20px;
    flex-shrink: 0;
}

.feature-text h6 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 5px;
    font-family: var(--font-primary);
}

.feature-text p {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
}

.about-buttons {
    display: flex;
    gap: 15px;
}

/* ================================================
   PROCESS SECTION
   ================================================ */
.process-section {
    padding: 120px 0;
    background: var(--white);
}

.process-card {
    text-align: center;
    padding: 40px 30px;
    position: relative;
}

.step-number {
    font-size: 72px;
    font-weight: 900;
    color: var(--bg-light);
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 0;
    font-family: var(--font-display);
}

.process-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 30px;
    margin: 0 auto 25px;
    position: relative;
    z-index: 1;
}

.process-card h5 {
    font-size: 20px;
    margin-bottom: 15px;
}

.process-card p {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
}

/* ================================================
   PROJECTS SECTION
   ================================================ */
.projects-section {
    padding: 120px 0;
    background: var(--gradient-dark);
}

.project-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.project-image {
    position: relative;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: var(--transition);
}

.project-card:hover .project-image img {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(14, 165, 233, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-link {
    width: 50px;
    height: 50px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 20px;
    transform: scale(0);
    transition: var(--transition);
}

.project-card:hover .project-link {
    transform: scale(1);
}

.project-content {
    padding: 25px;
}

.project-category {
    font-size: 12px;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.project-content h5 {
    font-size: 20px;
    margin: 10px 0;
}

.project-content p {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
}

/* ================================================
   SUPPORT SECTION
   ================================================ */
.support-section {
    padding: 120px 0;
    background: var(--bg-light);
}

.support-content .title {
    font-size: 38px;
    margin-bottom: 20px;
}

.support-content .desc {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.support-options {
    margin-bottom: 35px;
}

.support-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: var(--white);
    border-radius: var(--radius);
    margin-bottom: 15px;
    transition: var(--transition);
}

.support-item:hover {
    box-shadow: var(--shadow);
}

.support-icon {
    width: 55px;
    height: 55px;
    background: var(--gradient);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 22px;
}

.support-text h6 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 3px;
    font-family: var(--font-primary);
}

.support-text p {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
}

.support-image {
    position: relative;
}

.support-image > img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.support-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: var(--accent);
    color: var(--white);
    padding: 15px 25px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.support-badge i {
    font-size: 24px;
}

/* ================================================
   TESTIMONIALS
   ================================================ */
.testimonials-section {
    padding: 120px 0;
    background: var(--white);
}

.testimonial-card {
    background: var(--bg-light);
    padding: 40px;
    border-radius: var(--radius-lg);
    height: 100%;
}

.stars {
    margin-bottom: 20px;
}

.stars i {
    color: #FCD34D;
    font-size: 16px;
}

.testimonial-card > p {
    font-size: 16px;
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 25px;
    font-style: italic;
}

.author-info h6 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 3px;
    font-family: var(--font-primary);
}

.author-info span {
    font-size: 13px;
    color: var(--text-light);
}

/* ================================================
   CTA SECTION
   ================================================ */
.cta-section {
    padding: 80px 0;
    background: var(--gradient);
}

.cta-content {
    background: rgba(255, 255, 255, 0.1);
    padding: 50px;
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
}

.cta-content h2 {
    font-size: 32px;
    color: var(--white);
    margin-bottom: 10px;
}

.cta-content p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.btn-cta {
    display: inline-block;
    padding: 16px 35px;
    background: var(--white);
    color: var(--primary);
    font-size: 15px;
    font-weight: 700;
    border-radius: var(--radius);
    transition: var(--transition);
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* ================================================
   MOBILE SIDEBAR
   ================================================ */
.side-bar {
    position: fixed;
    top: 0;
    left: -320px;
    width: 320px;
    height: 100vh;
    background: var(--white);
    z-index: 9999;
    transition: var(--transition);
    padding: 30px;
    box-shadow: var(--shadow-lg);
}

.side-bar.active {
    left: 0;
}

.close-icon-menu {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--secondary);
    cursor: pointer;
}

.mobile-menu-main {
    margin-top: 30px;
}

.mobile-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 40px;
}

.mobile-logo .logo-icon {
    width: 40px;
    height: 40px;
    font-size: 18px;
}

.mobile-logo .logo-name {
    font-size: 22px;
}

.mainmenu li a {
    display: block;
    padding: 15px 0;
    font-size: 16px;
    font-weight: 600;
    color: var(--text);
    border-bottom: 1px solid var(--bg-light);
}

.mainmenu li a:hover {
    color: var(--primary);
}

.mobile-contact {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--bg-light);
}

.mobile-contact p {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 15px;
}

.mobile-contact p i {
    color: var(--primary);
    width: 20px;
}

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

.footer-top {
    padding: 80px 0 50px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
}

.footer-logo .logo-icon {
    background: var(--primary);
}

.footer-logo .logo-name {
    color: var(--white);
}

.footer-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 25px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary);
}

.widget-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 25px;
    font-family: var(--font-primary);
}

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

.footer-links li a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

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

.contact-info .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 18px;
}

.contact-info .contact-item i {
    color: var(--primary);
    margin-top: 3px;
    width: 16px;
}

.contact-info .contact-item p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

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

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

.footer-bottom a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom a:hover {
    color: var(--primary);
}

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

    .menu-btn {
        display: block;
    }

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

@media (max-width: 991px) {
    .hero-section {
        padding-top: 100px;
    }

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

    .hero-image {
        margin-top: 50px;
    }

    .floating-card {
        display: none;
    }

    .about-images {
        margin-bottom: 50px;
    }

    .img-secondary {
        right: 20px;
        bottom: -20px;
        width: 180px;
    }

    .about-content {
        padding-left: 0;
    }

    .support-image {
        margin-top: 50px;
    }

    .title-area-center .title,
    .about-content .title,
    .support-content .title {
        font-size: 32px;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 32px;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 30px;
    }

    .solutions-section,
    .about-section,
    .process-section,
    .projects-section,
    .support-section,
    .testimonials-section {
        padding: 80px 0;
    }

    .clients-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .clients-logos {
        justify-content: center;
    }

    .cta-content {
        padding: 30px;
        text-align: center;
    }

    .cta-content .text-lg-end {
        text-align: center !important;
        margin-top: 25px;
    }
}

@media (max-width: 575px) {
    .actions-area .btn-primary-custom {
        display: none;
    }

    .logo-name {
        font-size: 20px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .about-buttons {
        flex-direction: column;
    }

    .experience-box {
        left: 20px;
    }
}

/* ================================================
   ANIMATIONS
   ================================================ */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Swiper pagination */
.swiper-pagination-bullet {
    background: var(--text-muted);
    opacity: 0.5;
    transition: var(--transition);
}

.swiper-pagination-bullet-active {
    background: var(--primary);
    opacity: 1;
    width: 30px;
    border-radius: 10px;
}
