:root {
    --primary-blue: #1a4b8c;
    --secondary-blue: #2c7da0;
    --light-blue: #61a5c2;
    --lighter-blue: #a9d6e5;
    --dark-blue: #0b2b4a;
    --white: #ffffff;
    --off-white: #f8f9fa;
    --gray: #6c757d;
    --light-gray: #e9ecef;
    --accent: #ffd166;
    --accent-2: #4ecdc4;
    --gradient-1: linear-gradient(135deg, #1a4b8c, #2c7da0);
    --gradient-2: linear-gradient(135deg, #2c7da0, #61a5c2);
    --gradient-3: linear-gradient(45deg, #1a4b8c, #4ecdc4);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 20px 40px rgba(26, 75, 140, 0.2);
    --shadow-glow: 0 0 30px rgba(97, 165, 194, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark-blue);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navbar Styles (sama seperti sebelumnya) */
.navbar {
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-size: 1.5rem;
    font-weight: bold;
}

.logo i {
    font-size: 2rem;
    color: var(--lighter-blue);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: var(--lighter-blue);
}

.btn-demo {
    background: var(--light-blue);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: bold;
}

.btn-demo:hover {
    background: var(--lighter-blue);
    color: var(--dark-blue) !important;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--white);
    margin: 2px 0;
    transition: 0.3s;
}

/* Hero Section - Versi 2 */
.hero-v2 {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, #0a1929, #0b2b4a, #1a4b8c);
    overflow: hidden;
    padding: 120px 0 60px;
    color: var(--white);
}

/* Background Elements */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.btn-primary {
    color: #25D366;
}

.gradient-sphere {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(78, 205, 196, 0.3) 0%, rgba(26, 75, 140, 0.1) 70%);
    border-radius: 50%;
    filter: blur(80px);
    animation: sphereMove 20s infinite alternate;
}

.gradient-sphere-2 {
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 209, 102, 0.2) 0%, rgba(44, 125, 160, 0.1) 70%);
    border-radius: 50%;
    filter: blur(80px);
    animation: sphereMove2 25s infinite alternate;
}

@keyframes sphereMove {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(-100px, 100px) scale(1.2); }
}

@keyframes sphereMove2 {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(100px, -100px) scale(1.3); }
}

/* Ocean Waves */
.ocean {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: transparent;
    z-index: 2;
}

.wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.05" d="M0,192L48,176C96,160,192,128,288,128C384,128,480,160,576,186.7C672,213,768,235,864,224C960,213,1056,171,1152,149.3C1248,128,1344,128,1392,128L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-repeat: repeat-x;
    background-size: cover;
    animation: wave 15s linear infinite;
}

.wave:nth-child(2) {
    bottom: 10px;
    opacity: 0.3;
    animation: wave 12s linear infinite reverse;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,192L48,176C96,160,192,128,288,128C384,128,480,160,576,186.7C672,213,768,235,864,224C960,213,1056,171,1152,149.3C1248,128,1344,128,1392,128L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
}

.wave:nth-child(3) {
    bottom: 20px;
    opacity: 0.2;
    animation: wave 18s linear infinite;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.05" d="M0,192L48,176C96,160,192,128,288,128C384,128,480,160,576,186.7C672,213,768,235,864,224C960,213,1056,171,1152,149.3C1248,128,1344,128,1392,128L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
}

@keyframes wave {
    0% { transform: translateX(0) translateZ(0); }
    50% { transform: translateX(-25%) translateZ(0); }
    100% { transform: translateX(0) translateZ(0); }
}

.hero-v2 .container {
    position: relative;
    z-index: 10;
}

.hero-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* Left Content */
.hero-tagline {
    margin-bottom: 1.5rem;
}

.tagline-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: badgeGlow 3s infinite;
}

@keyframes badgeGlow {
    0%, 100% { box-shadow: 0 0 20px rgba(78, 205, 196, 0.2); }
    50% { box-shadow: 0 0 40px rgba(78, 205, 196, 0.4); }
}

.hero-main-title {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.title-underline {
    position: relative;
    display: inline-block;
    color: var(--accent);
}

.title-underline::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: linear-gradient(90deg, var(--accent), var(--accent-2));
    border-radius: 10px;
    z-index: -1;
    animation: underlineWidth 2s infinite alternate;
}

@keyframes underlineWidth {
    0% { width: 0; opacity: 0; }
    50% { width: 100%; opacity: 1; }
    100% { width: 0; opacity: 0; }
}

.title-gradient {
    background: linear-gradient(45deg, var(--white), var(--accent-2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.btn-large {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
}

.btn-outline-light {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 1rem 2rem;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
    transform: translateX(5px);
}

.btn-outline-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 1rem 2rem;
    background: transparent;
    border: 2px solid rgba(78, 234, 64, 0.3);
    border-radius: 50px;
    color: green;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-outline-primary:hover {
    background: rgba(78, 234, 64, 0.1);
    border-color: green;
    transform: translateX(5px);
}

.hero-trust {
    display: flex;
    gap: 2rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
}

.trust-item i {
    color: var(--accent-2);
}

/* Right Content - Dashboard Preview */
.dashboard-preview {
    position: relative;
    height: 500px;
}

.dashboard-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: var(--shadow-glow);
    overflow: hidden;
}

.main-card {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 350px;
    height: 250px;
    z-index: 5;
    animation: cardFloat 6s ease-in-out infinite;
}

@keyframes cardFloat {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -60%) scale(1.05); }
}

.card-header {
    padding: 1rem;
    background: linear-gradient(90deg, var(--primary-blue), var(--secondary-blue));
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-dots {
    display: flex;
    gap: 5px;
}

.header-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
}

.header-dots span:first-child { background: #ff5f56; }
.header-dots span:nth-child(2) { background: #ffbd2e; }
.header-dots span:last-child { background: #27c93f; }

.card-content {
    padding: 1.5rem;
}

.chart-line {
    height: 3px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-2));
    margin-bottom: 1rem;
    position: relative;
    overflow: hidden;
}

.chart-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.chart-bars {
    display: flex;
    gap: 10px;
    height: 100px;
    align-items: flex-end;
}

.bar {
    flex: 1;
    background: var(--gradient-1);
    border-radius: 5px 5px 0 0;
    animation: barGrow 2s infinite alternate;
}

.bar:nth-child(1) { height: 60px; animation-delay: 0s; }
.bar:nth-child(2) { height: 80px; animation-delay: 0.2s; }
.bar:nth-child(3) { height: 40px; animation-delay: 0.4s; }
.bar:nth-child(4) { height: 70px; animation-delay: 0.6s; }

@keyframes barGrow {
    0% { transform: scaleY(0.8); opacity: 0.8; }
    100% { transform: scaleY(1.2); opacity: 1; }
}

/* Floating Elements */
.floating-element {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 0.8rem 1.2rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 10;
}

.element-1 {
    top: 10%;
    right: 0;
    animation: floatElement1 8s infinite;
}

.element-2 {
    bottom: 20%;
    left: 0;
    animation: floatElement2 9s infinite;
}

.element-3 {
    top: 40%;
    right: 20%;
    animation: floatElement3 7s infinite;
}

@keyframes floatElement1 {
    0%, 100% { transform: translate(0, 0); }
    33% { transform: translate(-20px, 20px); }
    66% { transform: translate(10px, -10px); }
}

@keyframes floatElement2 {
    0%, 100% { transform: translate(0, 0); }
    33% { transform: translate(20px, -20px); }
    66% { transform: translate(-10px, 10px); }
}

@keyframes floatElement3 {
    0%, 100% { transform: translate(0, 0); }
    33% { transform: translate(-30px, -10px); }
    66% { transform: translate(20px, 20px); }
}

.floating-element i {
    font-size: 1.2rem;
    color: var(--primary-blue);
}

.element-text {
    display: flex;
    flex-direction: column;
}

.element-text strong {
    font-size: 1.1rem;
    color: var(--dark-blue);
}

.element-text span {
    font-size: 0.8rem;
    color: var(--gray);
}

.feature-icons {
    position: absolute;
    bottom: 10%;
    right: 10%;
    display: flex;
    gap: 10px;
    z-index: 15;
}

.icon-circle {
    width: 50px;
    height: 50px;
    background: var(--gradient-3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    animation: iconSpin 10s infinite linear;
}

.icon-circle:nth-child(2) { animation-delay: -2s; }
.icon-circle:nth-child(3) { animation-delay: -4s; }

@keyframes iconSpin {
    0% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.1); }
    100% { transform: rotate(360deg) scale(1); }
}

/* Scroll Down */
.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
}

.scroll-down a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--white);
    text-decoration: none;
    font-size: 0.9rem;
    opacity: 0.7;
    transition: all 0.3s;
}

.scroll-down a:hover {
    opacity: 1;
    transform: translateY(5px);
}

.scroll-down i {
    animation: arrowBounce 2s infinite;
}

@keyframes arrowBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}

/* Features Section (sama seperti sebelumnya) */
.features {
    padding: 80px 0;
    background: var(--off-white);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    color: var(--gray);
    margin-bottom: 3rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(26, 75, 140, 0.2);
}

.feature-card i {
    font-size: 3rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.feature-card h3 {
    color: var(--dark-blue);
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--gray);
}

/* About Section (sama seperti sebelumnya) */
.about {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--white), var(--lighter-blue));
}

.about .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-content h2 {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
}

.about-content p {
    color: var(--gray);
    margin-bottom: 1.5rem;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-feature i {
    color: var(--primary-blue);
}

.about-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
}

.about-image img:hover {
    transform: scale(1.02);
}

/* Contact Section - Versi 2 dengan Flip Card Animation */
.contact-v2 {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--white), var(--lighter-blue));
    position: relative;
    overflow: hidden;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: var(--gradient-1);
    color: var(--white);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    animation: badgePulse 2s infinite;
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
    perspective: 1000px;
}

/* Flip Card Animation */
.contact-card-v2 {
    background: transparent;
    height: 320px;
    cursor: pointer;
    transition: transform 0.3s;
}

.contact-card-v2:hover {
    transform: translateY(-10px);
}

.card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

.contact-card-v2:hover .card-inner {
    transform: rotateY(180deg);
}

.card-front, .card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 20px;
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
}

.card-front {
    background: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.card-back {
    background: var(--gradient-1);
    color: var(--white);
    transform: rotateY(180deg);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--white);
    font-size: 2rem;
    transition: all 0.3s;
    animation: iconFloat 3s infinite;
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.card-front h3 {
    color: var(--dark-blue);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.card-front p {
    color: var(--gray);
    margin-bottom: 1rem;
}

.card-hint {
    font-size: 0.8rem;
    color: var(--light-blue);
    opacity: 0.7;
}

.card-back h4 {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 0.5rem;
    width: 100%;
}

.address {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.back-details {
    width: 100%;
    margin-bottom: 10px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    text-align: left;
}

.detail-item i {
    width: 20px;
}

.btn-map, .btn-call, .btn-email, .btn-schedule {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.8rem 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: var(--white);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.3);
    margin-top: 10px;
}

.btn-map:hover, .btn-call:hover, .btn-email:hover, .btn-schedule:hover {
    background: var(--white);
    color: var(--primary-blue);
    transform: scale(1.05);
}

/* Map Container */
.map-container {
    margin-bottom: 4rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s forwards;
    animation-delay: 0.5s;
}

.map-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.map-header h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--dark-blue);
}

.map-header h3 i {
    color: var(--primary-blue);
}

.map-badge {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 0.5rem 1rem;
    background: var(--gradient-1);
    color: var(--white);
    border-radius: 50px;
    font-size: 0.9rem;
}

.map-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-hover);
    position: relative;
}

.map-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    animation: mapShimmer 3s infinite;
    pointer-events: none;
}

@keyframes mapShimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Social Connect */
.social-connect {
    text-align: center;
}

.social-connect h3 {
    color: var(--dark-blue);
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    justify-content: center;
}

.social-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 15px;
    color: var(--dark-blue);
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.social-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-1);
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 0;
    pointer-events: none;
}

.social-item:hover::before {
    opacity: 1;
}

.social-item i, .social-item span {
    position: relative;
    z-index: 2;
}

.social-item:hover {
    transform: translateY(-10px);
}

.social-item:hover i,
.social-item:hover span {
    color: var(--white);
}

.social-item i {
    font-size: 2rem;
    transition: transform 0.3s;
}

.social-item:hover i {
    transform: scale(1.2) rotate(360deg);
}

/* Footer (sama seperti sebelumnya) */
.footer {
    background: linear-gradient(135deg, var(--dark-blue), var(--primary-blue));
    color: var(--white);
    padding: 4rem 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 2fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section .logo {
    margin-bottom: 1rem;
}

.footer-section p {
    opacity: 0.9;
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: var(--white);
    font-size: 1.2rem;
    transition: all 0.3s;
}

.social-links a:hover {
    color: var(--lighter-blue);
    transform: translateY(-3px);
}

.footer-section h3 {
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 0.3s, padding-left 0.3s;
}

.footer-section ul a:hover {
    opacity: 1;
    padding-left: 5px;
}

.app-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.app-store, .play-store {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.8rem;
    border-radius: 10px;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.app-store:hover, .play-store:hover {
    background: var(--white);
    color: var(--primary-blue);
    transform: translateX(5px);
}

.app-store i, .play-store i {
    font-size: 1.5rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem 0;
    text-align: center;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-main-title {
        font-size: 3rem;
    }
    
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .social-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .hero-content-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-left {
        order: 2;
    }
    
    .hero-right {
        order: 1;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-trust {
        justify-content: center;
    }
    
    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }
    
    .about .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .about-features {
        justify-content: center;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .social-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
        gap: 1rem;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-main-title {
        font-size: 2.5rem;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .dashboard-preview {
        height: 400px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .map-header {
        flex-direction: column;
        gap: 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-main-title {
        font-size: 2rem;
    }
    
    .hero-trust {
        flex-direction: column;
        align-items: center;
    }
    
    .social-grid {
        grid-template-columns: 1fr;
    }
}