:root {
    --primary: #ef7814;
    --primary-dark: #d56a10;
    --primary-light: #ff9a3c;
    --secondary: #6bb42c;
    --secondary-dark: #5a9a24;
    --secondary-light: #7ecc3a;
    --dark: #1a1a2e;
    --dark-light: #2d2d44;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --text: #333333;
    --text-light: #666666;
    --text-muted: #999999;
    --border: #e0e0e0;
    --shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12);
    --radius: 12px;
    --radius-sm: 8px;
    --transition: all 0.3s ease;
    --font: 'Poppins', sans-serif;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    scrollbar-gutter: stable;
}

body {
    font-family: var(--font);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
    margin-bottom: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    color: var(--dark);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
}


.section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(239, 120, 20, 0.1), rgba(107, 180, 44, 0.1));
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 6px 20px;
    border-radius: 50px;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}


.btn-primary-custom {
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    font-family: var(--font);
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary-custom:hover {
    background: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(239, 120, 20, 0.35);
}

.btn-secondary-custom {
    background: transparent;
    color: var(--dark);
    border: 2px solid var(--border);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    font-family: var(--font);
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-secondary-custom:hover {
    border-color: var(--secondary);
    color: var(--secondary);
    transform: translateY(-2px);
}

.btn-white-custom {
    background: var(--white);
    color: var(--primary);
    border: none;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    font-family: var(--font);
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-white-custom:hover {
    background: var(--light-bg);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}


.wave-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 5;
}

.wave-divider svg {
    display: block;
    width: 100%;
    height: 60px;
}

.wave-divider-top {
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 5;
}

.wave-divider-top svg {
    display: block;
    width: 100%;
    height: 60px;
}


.hero-deco {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.hero-deco-1 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(239, 120, 20, 0.08), transparent 70%);
    top: 10%;
    right: 5%;
    animation: hero-float 8s ease-in-out infinite;
}

.hero-deco-2 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(107, 180, 44, 0.08), transparent 70%);
    bottom: 25%;
    left: 3%;
    animation: hero-float-reverse 10s ease-in-out infinite;
}

.hero-deco-3 {
    width: 150px;
    height: 150px;
    border: 2px solid rgba(239, 120, 20, 0.08);
    top: 25%;
    right: 35%;
    animation: hero-float 12s ease-in-out infinite;
    animation-delay: -3s;
}

.hero-deco-4 {
    width: 80px;
    height: 80px;
    background: rgba(107, 180, 44, 0.06);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    top: 65%;
    left: 12%;
    animation: hero-morph 8s ease-in-out infinite;
}

.hero-deco-5 {
    width: 120px;
    height: 120px;
    background: rgba(239, 120, 20, 0.05);
    top: 15%;
    left: 35%;
    animation: hero-float 15s ease-in-out infinite;
    animation-delay: -5s;
}

@keyframes hero-float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-25px) rotate(5deg); }
}

@keyframes hero-float-reverse {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(20px) rotate(-5deg); }
}

@keyframes hero-morph {
    0%, 100% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
    50% { border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%; }
}


.navbar-main {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1050;
    padding: 22px 0;
    transition: var(--transition);
    background: transparent;
}

.navbar-main.scrolled {
    background: var(--white);
    padding: 12px 0;
    box-shadow: var(--shadow);
}

.navbar-main .navbar-brand img {
    height: 52px;
    transition: var(--transition);
}

.navbar-main.scrolled .navbar-brand img {
    height: 44px;
}

.navbar-main .nav-link {
    color: var(--dark) !important;
    font-weight: 500;
    font-size: 1rem;
    padding: 10px 20px !important;
    position: relative;
    transition: var(--transition);
}

.navbar-main .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
    border-radius: 2px;
}

.navbar-main .nav-link:hover::after,
.navbar-main .nav-link.active::after {
    width: 60%;
}

.navbar-main .nav-link:hover {
    color: var(--primary) !important;
}

.navbar-main .btn-nav-cta {
    background: var(--primary);
    color: var(--white) !important;
    padding: 12px 28px !important;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    margin-left: 12px;
    transition: var(--transition);
}

.navbar-main .btn-nav-cta::after {
    display: none;
}

.navbar-main .btn-nav-cta:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(239, 120, 20, 0.3);
}


.mobile-menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    z-index: 1060;
}

.hamburger-line {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--dark);
    border-radius: 2px;
    transition: var(--transition);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}


.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 1070;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}


.mobile-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    max-width: 85vw;
    height: 100%;
    background: var(--white);
    z-index: 1080;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.15);
}

.mobile-sidebar.active {
    transform: translateX(0);
}

.mobile-sidebar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
}

.mobile-sidebar-logo {
    height: 32px;
}

.mobile-sidebar-close {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-light);
    padding: 4px;
    border-radius: 8px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-sidebar-close:hover {
    background: var(--light-bg);
    color: var(--dark);
}

.mobile-nav-links {
    list-style: none;
    padding: 16px 0;
    margin: 0;
    flex: 1;
}

.mobile-nav-links li {
    padding: 0;
}

.mobile-nav-link {
    display: block;
    padding: 14px 24px;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text);
    transition: var(--transition);
    position: relative;
}

.mobile-nav-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 0;
    background: var(--primary);
    border-radius: 0 3px 3px 0;
    transition: var(--transition);
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    color: var(--primary);
    background: rgba(239, 120, 20, 0.04);
}

.mobile-nav-link:hover::before,
.mobile-nav-link.active::before {
    height: 60%;
}

.mobile-sidebar-cta {
    padding: 0 24px 20px;
}

.mobile-sidebar-footer {
    padding: 16px 24px;
    border-top: 1px solid var(--border);
}

.mobile-sidebar-contact {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 0.82rem;
    color: var(--text-muted);
}


body.sidebar-open {
    overflow: hidden;
}


.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    background: linear-gradient(135deg, #fff9f3 0%, #f0fae8 100%);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(239, 120, 20, 0.06) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(107, 180, 44, 0.06) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--dark);
}

.hero-content h1 span {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content p {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 35px;
    max-width: 500px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-image-wrapper {
    position: relative;
    z-index: 2;
}

.hero-image-wrapper img {
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    width: 100%;
    height: 480px;
    object-fit: cover;
}

.hero-badge {
    position: absolute;
    background: var(--white);
    border-radius: var(--radius);
    padding: 15px 20px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 3;
}

.hero-badge-1 {
    bottom: 30px;
    left: -20px;
}

.hero-badge-2 {
    top: 30px;
    right: -20px;
}

.hero-badge .badge-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
}

.hero-badge .badge-icon.orange {
    background: rgba(239, 120, 20, 0.12);
    color: var(--primary);
}

.hero-badge .badge-icon.green {
    background: rgba(107, 180, 44, 0.12);
    color: var(--secondary);
}

.hero-badge .badge-text strong {
    display: block;
    font-size: 0.95rem;
    color: var(--dark);
}

.hero-badge .badge-text span {
    font-size: 0.8rem;
    color: var(--text-muted);
    background: none;
    -webkit-text-fill-color: initial;
}


.how-it-works {
    background: var(--white);
    position: relative;
}


.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    display: none;
}

.timeline-progress {
    position: absolute;
    left: 26px;
    width: 3px;
    border-radius: 3px;
    overflow: hidden;
}

.timeline-progress-bar {
    width: 100%;
    height: 0;
    background: linear-gradient(180deg, var(--primary) 0%, var(--secondary) 50%, var(--primary) 100%);
    transition: height 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.timeline-item {
    position: relative;
    display: flex;
    gap: 25px;
    padding-bottom: 40px;
    align-items: center;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-marker {
    width: 55px;
    min-width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: relative;
}

.timeline-marker.orange {
    background: var(--primary);
    color: var(--white);
}

.timeline-marker.green {
    background: var(--secondary);
    color: var(--white);
}

.timeline-content {
    flex: 1;
    background: var(--light-bg);
    border-radius: var(--radius);
    padding: 25px 30px;
    transition: var(--transition);
    border: 1px solid transparent;
}

.timeline-content:hover {
    background: var(--white);
    border-color: rgba(239, 120, 20, 0.12);
    box-shadow: var(--shadow);
    transform: translateX(5px);
}

.timeline-content h4 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.timeline-content p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 0;
    line-height: 1.6;
}


.services-section {
    background: var(--light-bg);
}

.service-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    height: 340px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    cursor: default;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.service-card-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-card-img {
    transform: scale(1.08);
}

.service-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.65) 100%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
    transition: var(--transition);
    z-index: 1;
}

.service-card:hover .service-card-overlay {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.75) 100%);
}

.service-card-overlay h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.service-card-overlay p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0;
    line-height: 1.6;
}

.service-card-label {
    display: inline-block;
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--white);
    align-self: flex-start;
}

.service-card-label.orange {
    background: var(--primary);
}

.service-card-label.green {
    background: var(--secondary);
}


.parallax-band {
    position: relative;
    height: 350px;
    background-image: url('https://images.unsplash.com/photo-1497366216548-37526070297c?w=1600&q=80');
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.parallax-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.85), rgba(26, 26, 46, 0.7));
}

.parallax-content {
    position: relative;
    z-index: 2;
    color: var(--white);
}

.parallax-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}

.parallax-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
}


.why-us-section {
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.feature-card {
    background: var(--light-bg);
    border-radius: var(--radius);
    padding: 35px 25px;
    text-align: left;
    transition: var(--transition);
    height: 100%;
    border: 1px solid transparent;
}

.feature-card:hover {
    background: var(--white);
    border-color: rgba(239, 120, 20, 0.15);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 70px;
    height: 70px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 20px;
    font-size: 1.8rem;
}

.feature-icon.orange {
    background: rgba(239, 120, 20, 0.1);
    color: var(--primary);
}

.feature-icon.green {
    background: rgba(107, 180, 44, 0.1);
    color: var(--secondary);
}

.feature-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0;
    line-height: 1.6;
}


.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}


.section-deco {
    position: absolute;
    pointer-events: none;
    z-index: 0;
}

.section-deco-dots {
    width: 150px;
    height: 150px;
    top: 10%;
    right: 5%;
    background-image: radial-gradient(circle, rgba(239, 120, 20, 0.15) 1.5px, transparent 1.5px);
    background-size: 20px 20px;
}

.section-deco-circle {
    width: 250px;
    height: 250px;
    bottom: 10%;
    left: -5%;
    border: 2px solid rgba(107, 180, 44, 0.08);
    border-radius: 50%;
}


.app-section {
    background: var(--light-bg);
    overflow: hidden;
    position: relative;
}

.app-section-title {
    font-size: 2.3rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.app-section-desc {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 35px;
    max-width: 480px;
    line-height: 1.8;
}


.app-features-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.app-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 20px;
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid transparent;
    transition: var(--transition);
}

.app-feature-item:hover {
    border-color: rgba(239, 120, 20, 0.15);
    box-shadow: var(--shadow);
}

.app-feature-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

.app-feature-icon.orange {
    background: rgba(239, 120, 20, 0.1);
    color: var(--primary);
}

.app-feature-icon.green {
    background: rgba(107, 180, 44, 0.1);
    color: var(--secondary);
}

.app-feature-item strong {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 4px;
}

.app-feature-item p {
    font-size: 0.88rem;
    color: var(--text-light);
    margin: 0;
    line-height: 1.5;
}


.phone-mockup-wrapper {
    display: flex;
    justify-content: center;
    position: relative;
}

.phone-mockup {
    width: 280px;
    height: 580px;
    background: #1a1a1e;
    border-radius: 48px;
    padding: 8px;
    position: relative;
    box-shadow:
        0 30px 70px rgba(0, 0, 0, 0.25),
        0 0 0 1px rgba(255, 255, 255, 0.08) inset,
        inset 0 0 0 2px #2a2a2e;
}


.phone-mockup::before {
    content: '';
    position: absolute;
    right: -2px;
    top: 140px;
    width: 3px;
    height: 50px;
    background: #2a2a2e;
    border-radius: 0 2px 2px 0;
}

.phone-dynamic-island {
    width: 90px;
    height: 24px;
    background: #1a1a1e;
    border-radius: 20px;
    position: absolute;
    top: 18px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #fefefe 0%, #f5f5f7 100%);
    border-radius: 42px;
    overflow: hidden;
    padding: 52px 16px 16px;
    display: flex;
    flex-direction: column;
    position: relative;
    user-select: none;
    -webkit-user-select: none;
}


.phone-screen::after {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 4px;
}


.app-header-bar {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}

.app-header-bar .app-logo {
    height: 22px;
}

.app-greeting {
    font-size: 0.82rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-bottom: 10px;
    font-family: var(--font);
}

.app-balance {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 14px;
    padding: 16px 18px;
    margin-bottom: 16px;
    color: var(--white);
}

.app-balance-label {
    display: block;
    font-size: 0.7rem;
    opacity: 0.85;
    font-family: var(--font);
    margin-bottom: 2px;
}

.app-balance-amount {
    font-size: 1.4rem;
    font-weight: 700;
    font-family: var(--font);
}

.app-quick-actions {
    display: flex;
    justify-content: space-between;
    margin-bottom: 18px;
    gap: 8px;
}

.app-action {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.app-action-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.app-action-icon.orange {
    background: rgba(239, 120, 20, 0.1);
    color: var(--primary);
}

.app-action-icon.green {
    background: rgba(107, 180, 44, 0.1);
    color: var(--secondary);
}

.app-action span {
    font-size: 0.62rem;
    color: var(--text-light);
    font-family: var(--font);
    font-weight: 500;
}

.app-recent {
    flex: 1;
}

.app-recent-title {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 10px;
    font-family: var(--font);
}

.app-recent-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.app-recent-item:last-child {
    border-bottom: none;
}

.app-recent-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.app-recent-dot.orange {
    background: var(--primary);
}

.app-recent-dot.green {
    background: var(--secondary);
}

.app-recent-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.app-recent-name {
    font-size: 0.68rem;
    font-weight: 600;
    color: var(--dark);
    font-family: var(--font);
}

.app-recent-date {
    font-size: 0.58rem;
    color: var(--text-muted);
    font-family: var(--font);
}

.app-recent-price {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--dark);
    font-family: var(--font);
}


.launch-section {
    background: var(--white);
    overflow: hidden;
    position: relative;
}

.launch-content {
    position: relative;
    z-index: 2;
}

.launch-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 20px;
    color: var(--dark);
}

.launch-content h2 span {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.launch-content > p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 35px;
    max-width: 480px;
}


.launch-store-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.store-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--dark);
    color: var(--white);
    padding: 12px 24px;
    border-radius: var(--radius);
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.05);
    cursor: default;
    user-select: none;
    opacity: 0.85;
}

.store-button-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.store-button-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.store-button-small {
    font-size: 0.65rem;
    font-weight: 400;
    opacity: 0.75;
    letter-spacing: 0.3px;
}

.store-button-big {
    font-size: 1.05rem;
    font-weight: 600;
}


.launch-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 550px;
}

.launch-visual-bg {
    position: absolute;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(239, 120, 20, 0.06) 0%, rgba(107, 180, 44, 0.04) 50%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.launch-phone {
    position: relative;
    z-index: 2;
}


.launch-screen {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #fdf6ec 0%, #f0f9f0 50%, #fef9f0 100%) !important;
    background-size: 400% 400% !important;
    animation: miniGradientShift 12s ease infinite;
    padding: 0 !important;
}

@keyframes miniGradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.mini-coming-soon {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}


.mini-bg-circle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    animation: miniFloat 8s ease-in-out infinite;
}

.mini-bg-1 {
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, #E8820C, transparent 70%);
    top: -35px;
    left: -35px;
    opacity: 0.12;
    animation-delay: 0s;
}

.mini-bg-2 {
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, #6AB023, transparent 70%);
    bottom: -25px;
    right: -25px;
    opacity: 0.12;
    animation-delay: 2s;
}

.mini-bg-3 {
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, #E8820C, transparent 70%);
    bottom: 20%;
    left: 5%;
    opacity: 0.10;
    animation-delay: 4s;
}

.mini-bg-4 {
    width: 70px;
    height: 70px;
    background: radial-gradient(circle, #6AB023, transparent 70%);
    top: 10%;
    right: 10%;
    opacity: 0.10;
    animation-delay: 1s;
}

@keyframes miniFloat {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-12px) scale(1.05); }
}


.mini-sparkle {
    position: absolute;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    opacity: 0;
    animation: miniTwinkle 3s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes miniTwinkle {
    0%, 100% { opacity: 0; transform: scale(0); }
    50% { opacity: 0.7; transform: scale(1); }
}


.mini-food-icon {
    position: absolute;
    left: 0;
    top: 50%;
    opacity: 0;
    z-index: 0;
    pointer-events: none;
    filter: grayscale(20%);
}

.mini-food-icon.from-bottom {
    animation: miniFloatFromBottom linear forwards;
}

.mini-food-icon.from-top {
    animation: miniFloatFromTop linear forwards;
}

@keyframes miniFloatFromBottom {
    0% { opacity: 0; transform: translateY(250px) rotate(0deg) scale(0.5); }
    10% { opacity: 0.35; }
    80% { opacity: 0.35; }
    100% { opacity: 0; transform: translateY(0) rotate(180deg) scale(1); }
}

@keyframes miniFloatFromTop {
    0% { opacity: 0; transform: translateY(-250px) rotate(0deg) scale(0.5); }
    10% { opacity: 0.35; }
    80% { opacity: 0.35; }
    100% { opacity: 0; transform: translateY(0) rotate(-180deg) scale(1); }
}


.mini-coming-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 16px 14px;
}


.mini-logo-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 12px;
}

.mini-logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(232, 130, 12, 0.15) 0%, rgba(106, 176, 35, 0.1) 40%, transparent 70%);
    border-radius: 50%;
    animation: miniPulseGlow 4s ease-in-out infinite;
    pointer-events: none;
}

@keyframes miniPulseGlow {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
    50% { transform: translate(-50%, -50%) scale(1.3); opacity: 1; }
}

.mini-logo {
    height: 36px;
    position: relative;
    filter: drop-shadow(0 2px 10px rgba(232, 130, 12, 0.15));
}


.mini-divider {
    width: 0;
    height: 2.5px;
    background: linear-gradient(90deg, #E8820C, #6AB023, #E8820C);
    background-size: 200% 100%;
    border-radius: 2px;
    margin: 0 auto 10px;
    animation: miniExpandDivider 1.2s ease-out 0.6s forwards, miniShimmerDivider 3s ease-in-out infinite 1.8s;
}

@keyframes miniExpandDivider {
    to { width: 45px; }
}

@keyframes miniShimmerDivider {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}


.mini-heading {
    font-family: var(--font);
    font-weight: 700;
    font-size: 0.82rem;
    line-height: 1.35;
    margin-bottom: 8px;
    position: relative;
    overflow: hidden;
}

.mini-heading::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    animation: miniShimmerText 4s ease-in-out infinite 2s;
}

@keyframes miniShimmerText {
    0% { left: -100%; }
    100% { left: 200%; }
}

.mini-orange {
    color: #E8820C;
}

.mini-green {
    color: #6AB023;
}


.mini-subtitle-wrapper {
    position: relative;
    padding: 1.5px;
    border-radius: 10px;
    background: linear-gradient(135deg, #E8820C, #6AB023, #E8820C, #6AB023);
    background-size: 300% 300%;
    animation: miniBorderRotate 6s linear infinite;
    margin-bottom: 10px;
}

@keyframes miniBorderRotate {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.mini-subtitle {
    font-size: 0.48rem;
    color: #555;
    line-height: 1.7;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    padding: 8px 10px;
    border-radius: 9px;
    margin: 0;
    font-family: var(--font);
}

.mini-subtitle strong {
    color: #E8820C;
}


.mini-contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.mini-contact-label {
    font-size: 0.42rem;
    color: #999;
    font-family: var(--font);
    margin: 0;
}

.mini-contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.46rem;
    font-weight: 600;
    color: #E8820C;
    padding: 4px 10px;
    border-radius: 50px;
    background: linear-gradient(135deg, rgba(255,255,255,0.6), rgba(255,255,255,0.6)) padding-box,
                linear-gradient(135deg, rgba(232,130,12,0.2), rgba(106,176,35,0.2)) border-box;
    border: 1px solid transparent;
    backdrop-filter: blur(5px);
    font-family: var(--font);
    text-decoration: none;
    transition: color 0.5s ease, transform 0.5s ease, box-shadow 0.5s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.mini-btn-fill {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #E8820C 0%, #6AB023 100%);
    clip-path: circle(0% at var(--x, 50%) var(--y, 50%));
    transition: clip-path 0.6s ease;
    z-index: -1;
    pointer-events: none;
}

.mini-contact-btn.hovered .mini-btn-fill {
    clip-path: circle(150% at var(--x, 50%) var(--y, 50%));
}

.mini-contact-btn svg {
    stroke: #E8820C;
    transition: stroke 0.5s ease;
    position: relative;
    z-index: 1;
}

.mini-contact-btn span {
    position: relative;
    z-index: 1;
}

.mini-contact-btn.hovered {
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(232, 130, 12, 0.3);
}

.mini-contact-btn.hovered svg {
    stroke: #fff;
}


.mini-footer {
    position: absolute;
    bottom: 8px;
    left: 0;
    right: 0;
    text-align: center;
    font-size: 0.38rem;
    color: #bbb;
    font-family: var(--font);
    z-index: 1;
}


.kurumlar-story-section {
    background: var(--white);
}

.kurumlar-image-wrapper {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.kurumlar-image {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}

.kurumlar-image-badge {
    position: absolute;
    bottom: 16px;
    left: 16px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--dark);
}

.kurumlar-image-badge svg {
    color: var(--primary);
}

.kurumlar-label {
    display: inline-block;
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--white);
    background: var(--primary);
    margin-bottom: 16px;
}

.kurumlar-story-content h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 20px;
}

.kurumlar-story-content p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 16px;
}

.kurumlar-story-content p strong {
    color: var(--primary);
    font-weight: 600;
}

.kurumlar-stats {
    display: flex;
    gap: 32px;
    margin-top: 28px;
    padding-top: 28px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.kurumlar-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.kurumlar-stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.kurumlar-stat-label {
    font-size: 0.8rem;
    color: var(--text-light);
    font-weight: 500;
}

.blog-empty-section {
    padding: 80px 0 100px;
}

.blog-empty-state {
    text-align: center;
    max-width: 560px;
    margin: 0 auto;
}

.blog-empty-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(239, 120, 20, 0.1), rgba(107, 180, 44, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    color: var(--primary);
}

.blog-empty-state h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 16px;
}

.blog-empty-state p {
    font-size: 1.05rem;
    color: #666;
    line-height: 1.8;
}

.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.cta-section p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 35px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
}

.cta-section .btn-white-custom {
    position: relative;
    z-index: 2;
}


.footer-main {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.8);
    padding: 80px 0 0;
}

.footer-main h5 {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 25px;
}

.footer-logo {
    height: 40px;
    margin-bottom: 15px;
}

.footer-desc {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-contact-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.85rem;
    color: var(--primary);
}

.footer-contact-link {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: var(--transition);
}

.footer-contact-link:hover {
    color: var(--primary);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    margin-top: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}


.footer-credit-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.85rem;
    transition: var(--transition);
}

.footer-credit-link:hover {
    color: rgba(255, 255, 255, 0.6);
}

.footer-credit-logo {
    height: 20px;
    opacity: 0.5;
    transition: var(--transition);
}

.footer-credit-link:hover .footer-credit-logo {
    opacity: 0.8;
}


@media (max-width: 991.98px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-image-wrapper img {
        height: 380px;
        margin-top: 40px;
    }

    .hero-badge {
        display: none;
    }

    .section {
        padding: 70px 0;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .cta-section h2 {
        font-size: 2rem;
    }

    .app-section-title {
        font-size: 2rem;
    }

    .phone-mockup {
        width: 260px;
        height: 540px;
    }

    
    .launch-content h2 {
        font-size: 2rem;
    }

    .launch-visual {
        min-height: 480px;
    }

    
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    
    .parallax-band {
        background-attachment: scroll;
        height: 300px;
    }

    .parallax-content h3 {
        font-size: 1.6rem;
    }
}

@media (max-width: 767.98px) {
    .hero-section {
        padding-top: 80px;
        min-height: auto;
        padding-bottom: 60px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .hero-image-wrapper img {
        height: 280px;
    }

    .section {
        padding: 60px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .section-header h2 {
        font-size: 1.75rem;
    }

    .app-section-title {
        font-size: 1.75rem;
    }

    .phone-mockup {
        width: 240px;
        height: 500px;
        margin-bottom: 20px;
    }

    
    .launch-content h2 {
        font-size: 1.75rem;
    }

    .launch-content > p {
        font-size: 0.95rem;
    }

    .launch-visual {
        min-height: 420px;
    }

    .phone-screen {
        padding: 48px 14px 14px;
    }

    .cta-section {
        padding: 70px 0;
    }

    .cta-section h2 {
        font-size: 1.75rem;
    }

    .footer-main {
        padding: 50px 0 0;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        text-align: center;
    }

    .footer-main .row > .col-lg-2,
    .footer-main .row > .col-lg-3 {
        width: 50%;
        flex: 0 0 50%;
    }

    
    .hero-deco {
        display: none;
    }

    .section-deco {
        display: none;
    }

    
    .timeline-marker {
        width: 45px;
        min-width: 45px;
        height: 45px;
        font-size: 1rem;
    }

    .timeline-progress {
        left: 21px;
    }

    .timeline-content {
        padding: 20px;
    }

    .timeline-item {
        gap: 18px;
    }

    
    .parallax-band {
        height: 250px;
    }

    .parallax-content h3 {
        font-size: 1.3rem;
    }

    .parallax-content p {
        font-size: 0.95rem;
    }

    .service-card {
        height: 280px;
    }


    .wave-divider svg,
    .wave-divider-top svg {
        height: 40px;
    }
}

@media (max-width: 575.98px) {
    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn-primary-custom,
    .hero-buttons .btn-secondary-custom {
        width: 100%;
        justify-content: center;
    }

    
    .feature-grid {
        grid-template-columns: 1fr;
    }

    
    .launch-store-buttons {
        flex-direction: column;
    }

    .store-button {
        justify-content: center;
    }
}


.dark-hero-page .navbar-main:not(.scrolled) .nav-link {
    color: var(--white) !important;
}

.dark-hero-page .navbar-main:not(.scrolled) .nav-link:hover {
    color: var(--primary-light) !important;
}

.dark-hero-page .navbar-main:not(.scrolled) .nav-link.active::after {
    background: var(--white);
}

.dark-hero-page .navbar-main:not(.scrolled) .hamburger-line {
    background: var(--white);
}

.contact-hero-section {
    display: flex;
    align-items: center;
    padding: 160px 0 80px;
    position: relative;
    overflow: hidden;
    background: var(--dark);
}

.contact-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.contact-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.25;
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 650px;
    margin: 0 auto;
}

.contact-hero-content h1 {
    font-size: 2.6rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 14px;
}

.contact-hero-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 0;
    line-height: 1.7;
}

.contact-main-section {
    padding: 80px 0;
    background: var(--white);
}

.contact-cards-stack {
    display: flex;
    flex-direction: column;
    gap: 16px;
    height: 100%;
}

.contact-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px 22px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: var(--transition);
    flex: 1;
}

.contact-card:hover {
    box-shadow: var(--shadow);
    border-color: var(--primary);
}

.contact-card-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-card-icon svg {
    fill: var(--white);
}

.contact-card h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 4px;
}

.contact-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0;
    line-height: 1.5;
}

.contact-card-link {
    font-size: 0.9rem;
    color: var(--primary);
    font-weight: 500;
    transition: var(--transition);
}

.contact-card-link:hover {
    color: var(--primary-dark);
}

.contact-form-body {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 40px 35px;
}

.contact-form-body h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 25px;
}

.contact-form-body .form-control,
.contact-form-body .form-select {
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: var(--font);
    font-size: 0.95rem;
    transition: var(--transition);
}

.contact-form-body .form-control:focus,
.contact-form-body .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(239, 120, 20, 0.12);
}

.contact-form-body .form-floating > label {
    font-family: var(--font);
    color: var(--text-muted);
    font-size: 0.95rem;
}

.contact-submit-btn {
    width: 100%;
    justify-content: center;
    padding: 14px 28px;
    margin-top: 8px;
}

.contact-map-section {
    padding: 80px 0;
    padding-top: 120px;
    background: var(--light-bg);
    position: relative;
}

.contact-map-section .section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}

.contact-map-section .section-subtitle {
    font-size: 1.05rem;
    color: var(--text-light);
    max-width: 500px;
    margin: 0 auto;
}

.contact-map-wrapper {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.contact-map-wrapper iframe {
    display: block;
    width: 100%;
    height: 450px;
}

@media (max-width: 991.98px) {
    .contact-form-body {
        padding: 30px 25px;
    }
}

@media (max-width: 767.98px) {
    .contact-hero-section {
        padding: 120px 0 60px;
    }

    .contact-hero-content h1 {
        font-size: 2rem;
    }

    .contact-hero-content p {
        font-size: 1rem;
    }

    .contact-main-section {
        padding: 50px 0;
    }

    .contact-map-section {
        padding: 50px 0;
    }

    .contact-map-wrapper iframe {
        height: 300px;
    }
}
