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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-bottom: 2px solid #e0e0e0;
    z-index: 1000;
    transition: transform 0.3s ease-in-out;
}

.header.hidden {
    transform: translateY(-100%);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* padding: 1rem 20px; */
    min-height: 70px;
}

/* Logo Styles */
.logo h1 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    letter-spacing: -0.5px;
}

.logo h1 strong {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Desktop Navigation */
.nav-desktop {
    display: flex;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #667eea;
    background-color: rgba(102, 126, 234, 0.1);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 80%;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Mobile Navigation */
.nav-mobile {
    display: none;
    background: white;
    border-top: 1px solid #e0e0e0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-mobile.active {
    display: block;
}

.nav-mobile-list {
    list-style: none;
    padding: 1rem 0;
}

.nav-mobile-list li {
    margin: 0;
}

.nav-mobile-list .nav-link {
    display: block;
    padding: 1rem 2rem;
    border-bottom: 1px solid #f0f0f0;
    font-size: 1.1rem;
}

.nav-mobile-list .nav-link:hover {
    background-color: rgba(102, 126, 234, 0.1);
    color: #667eea;
}

/* Full Screen Image Section with UI Elements */
.fullscreen-image-section {
    position: relative;
    width:100%;
    height:700px;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.image-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.fullscreen-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.8s ease;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.3) 0%,
        rgba(102, 126, 234, 0.2) 50%,
        rgba(118, 75, 162, 0.3) 100%
    );
    z-index: 1;
}

/* UI Elements */
.ui-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    pointer-events: none;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 1rem;
    min-width: 200px;
    animation: floatCard 6s ease-in-out infinite;
    pointer-events: auto;
    transition: all 0.3s ease;
}

.floating-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.card-1 {
    top: 20%;
    right: 10%;
    animation-delay: 0s;
}

.card-2 {
    top: 80%;
    right: 15%;
    animation-delay: 2s;
}

.card-3 {
    top: 35%;
    left: 5%;
    animation-delay: 4s;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-15px) rotate(1deg); }
    50% { transform: translateY(-10px) rotate(-1deg); }
    75% { transform: translateY(-20px) rotate(0.5deg); }
}

.card-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.card-content h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
}

.card-content p {
    margin: 0;
    font-size: 0.9rem;
    color: #666;
}

/* Center Content */
.center-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 3;
    color: white;
    animation: fadeInUp 1.5s ease-out;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translate(-50%, -40%);
    }
    100% {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

.main-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.title-line {
    display: block;
    font-size: 1.5rem;
    font-weight: 400;
    opacity: 0.9;
    margin-bottom: 0.5rem;
    animation: slideInLeft 1s ease-out 0.5s both;
}

.title-brand {
    display: block;
    background: linear-gradient(45deg, #ffd700, #ffed4e, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: slideInRight 1s ease-out 0.7s both, shimmer 3s ease-in-out infinite 2s;
}

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

@keyframes slideInRight {
    0% {
        opacity: 0;
        transform: translateX(50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes shimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.subtitle {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    animation: fadeIn 1s ease-out 1s both;
}

@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    animation: fadeInUp 1s ease-out 1.2s both;
}

.btn-primary, .btn-secondary {
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(45deg, #ff6b6b, #ff8e8e);
    color: white;
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 107, 0.6);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

.btn-primary:hover i, .btn-secondary:hover i {
    transform: translateX(5px);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: white;
    z-index: 3;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

.scroll-arrow {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.scroll-indicator span {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Main Content */
main {
    margin-top: 0;
}

.section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.section:nth-child(even) {
    background: white;
}

.section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    color: #2c3e50;
}

.section p {
    font-size: 1.1rem;
    text-align: center;
    color: #666;
}

/* Services */
.services-container { margin-top: 1rem; }
.services-title { text-align: center; font-size: 2.8rem; margin-bottom: 0.75rem; color: #1f2d3d; }
.services-intro { text-align: center; max-width: 900px; margin: 0 auto 2rem auto; color: #4a5568; }

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

/* Products */
.products-container { margin-top: 1rem; }
.products-title { text-align: center; font-size: 2.8rem; margin-bottom: 0.75rem; color: #1f2d3d; }
.products-intro { text-align: center; max-width: 900px; margin: 0 auto 2rem auto; color: #4a5568; }

.products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }

.product-card {
    background: #ffffff;
    border: 1px solid #eef2f7;
    border-radius: 16px;
    padding: 1.25rem 1.25rem 1.5rem 1.25rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    position: relative;
    overflow: hidden;
}
.product-card:hover { transform: translateY(-6px); box-shadow: 0 18px 45px rgba(0,0,0,0.10); }

.product-ribbon {
    position: absolute; top: 12px; right: -26px; transform: rotate(45deg);
    background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
    color: white; padding: 6px 40px; font-size: 0.75rem; box-shadow: 0 6px 18px rgba(255,107,107,0.35);
}

.product-icon { width: 56px; height: 56px; border-radius: 14px; display: flex; align-items: center; justify-content: center; background: rgba(102,126,234,0.12); color: #5a67d8; margin-bottom: 0.75rem; font-size: 1.25rem; }
.product-card h3 { margin-bottom: 0.4rem; color: #2c3e50; }
.product-card p { color: #4a5568; margin-bottom: 0.6rem; }
.product-card ul { margin-left: 1.25rem; color: #4a5568; }

/* Pop animations */
.pop-1 { animation: pop 0.5s ease-out both; }
.pop-2 { animation: pop 0.5s ease-out 0.1s both; }
.pop-3 { animation: pop 0.5s ease-out 0.2s both; }
.pop-4 { animation: pop 0.5s ease-out 0.3s both; }
.pop-5 { animation: pop 0.5s ease-out 0.4s both; }

@keyframes pop {
    0% { opacity: 0; transform: scale(0.96) translateY(10px); }
    100% { opacity: 1; transform: scale(1) translateY(0); }
}

@media (max-width: 1024px) {
    .products-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .products-grid { grid-template-columns: 1fr; }
}
.service-card {
    background: #ffffff;
    border: 1px solid #eef2f7;
    border-radius: 16px;
    padding: 1.25rem 1.25rem 1.5rem 1.25rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    position: relative;
    overflow: hidden;
}

.service-card:hover { transform: translateY(-6px); box-shadow: 0 18px 45px rgba(0,0,0,0.10); }

.service-badge {
    position: absolute;
    top: 12px; left: 12px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 0.75rem;
}

.service-icon {
    width: 56px; height: 56px;
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(102,126,234,0.12);
    color: #5a67d8;
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.service-card h3 { margin-bottom: 0.4rem; color: #2c3e50; }
.service-card p { color: #4a5568; margin-bottom: 0.6rem; }
.service-card ul { margin-left: 1.25rem; color: #4a5568; }

/* Entrance animations */
.appear-1 { animation: rise 0.6s ease-out both; }
.appear-2 { animation: rise 0.6s ease-out 0.1s both; }
.appear-3 { animation: rise 0.6s ease-out 0.2s both; }
.appear-4 { animation: rise 0.6s ease-out 0.3s both; }
.appear-5 { animation: rise 0.6s ease-out 0.4s both; }

@keyframes rise {
    0% { opacity: 0; transform: translateY(16px); }
    100% { opacity: 1; transform: translateY(0); }
}

.services-showcase { margin-top: 2rem; }
.services-showcase h3 { text-align: center; margin-bottom: 1rem; color: #2c3e50; }
.clients { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.client { display: flex; gap: 0.9rem; background: #fff; border: 1px solid #eef2f7; border-radius: 14px; padding: 0.8rem; align-items: center; box-shadow: 0 8px 20px rgba(0,0,0,0.06); }
.client img { width: 64px; height: 64px; object-fit: cover; border-radius: 10px; }
.client-text h4 { margin: 0; color: #2d3748; }
.client-text p { margin: 0.2rem 0 0 0; color: #4a5568; font-size: 0.95rem; }

@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .clients { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .services-grid { grid-template-columns: 1fr; }
    .clients { grid-template-columns: 1fr; }
}
/* About Section */
.about-section {
    background: #ffffff;
    padding: 5rem 0;
}

.about-title {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #1f2d3d;
}

.about-intro {
    max-width: 900px;
    margin: 0 auto 3rem auto;
    text-align: center;
    color: #4a5568;
    font-size: 1.1rem;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.about-card {
    background: #fff;
    border: 1px solid #eef2f7;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.about-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 45px rgba(0,0,0,0.10);
}

.about-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.about-card-body {
    padding: 1.25rem 1.25rem 1.5rem 1.25rem;
}

.about-card-body h3 {
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.about-card-body p {
    color: #4a5568;
    margin-bottom: 0.75rem;
    text-align: left;
}

.about-card-body ul {
    margin-left: 1.25rem;
    color: #4a5568;
}

.about-split {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
    gap: 2.5rem;
    margin: 3rem 0;
}

.split-text h3 { margin-bottom: 0.75rem; color: #2c3e50; }
.split-text p { color: #4a5568; margin-bottom: 0.75rem; }
.split-text ol { margin-left: 1.25rem; color: #4a5568; }

.split-img {
    width: 100%;
    border-radius: 14px;
    box-shadow: 0 16px 40px rgba(0,0,0,0.12);
}

.about-timeline { margin-top: 2rem; }
.about-timeline h3 { text-align: center; margin-bottom: 1.5rem; color: #2c3e50; }

.timeline {
    position: relative;
    margin: 0 auto;
    padding-left: 1rem;
    max-width: 900px;
}

.timeline:before {
    content: '';
    position: absolute;
    left: 12px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(#cbd5e0, #a0aec0);
}

.timeline-item { position: relative; margin: 1.2rem 0 1.4rem 0; }
.timeline-item .dot {
    position: absolute;
    left: 6px;
    top: 4px;
    width: 14px; height: 14px;
    border-radius: 50%;
    background: #667eea;
    box-shadow: 0 0 0 4px rgba(102,126,234,0.15);
}
.timeline-item .content {
    margin-left: 2.2rem;
    background: #fff;
    border: 1px solid #edf2f7;
    border-radius: 10px;
    padding: 1rem 1.25rem;
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}
.timeline-item h4 { margin-bottom: 0.35rem; color: #2d3748; }
.timeline-item p { color: #4a5568; }

.about-cards {
    margin-top: 2.5rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.mini-card {
    background: #fff;
    border: 1px solid #eef2f7;
    border-radius: 14px;
    padding: 1.25rem;
    text-align: center;
    box-shadow: 0 10px 24px rgba(0,0,0,0.06);
}
.mini-card i { color: #667eea; font-size: 1.25rem; }
.mini-card h4 { margin: 0.5rem 0; color: #2d3748; }
.mini-card p { color: #4a5568; }

.about-cta { text-align: center; margin-top: 3rem; }
.about-btn { display: inline-block; margin-top: 0.75rem; text-decoration: none; }

/* About Responsive */
@media (max-width: 1024px) {
    .about-grid { grid-template-columns: repeat(2, 1fr); }
    .about-cards { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .about-grid { grid-template-columns: 1fr; }
    .about-split { grid-template-columns: 1fr; }
}

/* Team */
.team-container { margin-top: 1rem; }
.team-title { text-align: center; font-size: 2.8rem; margin-bottom: 0.75rem; color: #1f2d3d; }
.team-intro { text-align: center; max-width: 900px; margin: 0 auto 2rem auto; color: #4a5568; }

.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.member { background: #fff; border: 1px solid #eef2f7; border-radius: 16px; padding: 1rem; text-align: center; box-shadow: 0 10px 25px rgba(0,0,0,0.06); transition: transform 0.25s ease, box-shadow 0.25s ease; }
.member:hover { transform: translateY(-6px); box-shadow: 0 18px 45px rgba(0,0,0,0.10); }
.avatar { width: 100%; aspect-ratio: 1 / 1; overflow: hidden; border-radius: 12px; margin-bottom: 0.75rem; }
.avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
.member h3 { margin-bottom: 0.25rem; color: #2c3e50; }
.member .role { color: #4a5568; font-size: 0.98rem; }

/* flip animations */
.flip-1 { animation: flipIn 0.6s ease-out both; }
.flip-2 { animation: flipIn 0.6s ease-out 0.05s both; }
.flip-3 { animation: flipIn 0.6s ease-out 0.1s both; }
.flip-4 { animation: flipIn 0.6s ease-out 0.15s both; }
.flip-5 { animation: flipIn 0.6s ease-out 0.2s both; }
.flip-6 { animation: flipIn 0.6s ease-out 0.25s both; }
.flip-7 { animation: flipIn 0.6s ease-out 0.3s both; }
.flip-8 { animation: flipIn 0.6s ease-out 0.35s both; }

@keyframes flipIn {
  0% { opacity: 0; transform: rotateX(-20deg) translateY(10px); transform-origin: bottom; }
  100% { opacity: 1; transform: rotateX(0) translateY(0); }
}

@media (max-width: 1024px) {
  .team-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 520px) {
  .team-grid { grid-template-columns: 1fr; }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-desktop {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .logo h1 {
        font-size: 1.5rem;
    }
    
    .header .container {
        padding: 0.8rem 20px;
        min-height: 60px;
    }
    
    main {
        margin-top: 0;
    }
    
    .fullscreen-image-section {
        height:700px;
    }
    
    .floating-card {
        display: none;
    }
    
    .main-title {
        font-size: 2.5rem;
    }
    
    .title-line {
        font-size: 1.2rem;
    }
    
    .subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .btn-primary, .btn-secondary {
        width: 200px;
        justify-content: center;
    }
    
    .section h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .header .container {
        padding: 0.6rem 15px;
        min-height: 55px;
    }
    
    main {
        margin-top: 0;
    }
    
    .fullscreen-image-section {
        height:700px;
    }
}

/* Mobile Responsive for Full Screen Image */
@media (max-width: 480px) {
    .main-title {
        font-size: 2rem;
    }
    
    .title-line {
        font-size: 1rem;
    }
    
    .subtitle {
        font-size: 0.9rem;
    }
    
    .btn-primary, .btn-secondary {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
        width: 180px;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Active link highlighting */
.nav-link.active {
    color: #667eea;
    background-color: rgba(102, 126, 234, 0.1);
}

.nav-link.active::after {
    width: 80%;
}

/* Contact */
.contact-container { margin-top: 1rem; }
.contact-title { text-align: center; font-size: 2.8rem; margin-bottom: 0.75rem; color: #1f2d3d; }
.contact-intro { text-align: center; max-width: 900px; margin: 0 auto 2rem auto; color: #4a5568; }

.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 1.5rem; }
.contact-card, .contact-form-card { background: #ffffff; border: 1px solid #eef2f7; border-radius: 16px; padding: 1.25rem; box-shadow: 0 10px 25px rgba(0,0,0,0.06); }

.contact-item { display: flex; gap: 0.9rem; align-items: center; padding: 0.75rem; border-radius: 12px; transition: background 0.25s ease; }
.contact-item:hover { background: #f8fafc; }
.contact-item i { width: 42px; height: 42px; border-radius: 10px; display: flex; align-items: center; justify-content: center; background: rgba(102,126,234,0.12); color: #5a67d8; }
.contact-item h4 { margin: 0; color: #2d3748; }
.contact-item a, .contact-item p { margin: 0; color: #4a5568; text-decoration: none; }

.contact-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.contact-form .form-field { display: flex; flex-direction: column; gap: 0.4rem; }
.contact-form label { color: #2d3748; font-weight: 600; }
.contact-form input, .contact-form textarea { border: 1px solid #e2e8f0; border-radius: 10px; padding: 0.85rem; outline: none; transition: border 0.2s ease, box-shadow 0.2s ease; }
.contact-form input:focus, .contact-form textarea:focus { border-color: #667eea; box-shadow: 0 0 0 4px rgba(102,126,234,0.15); }
.contact-form button { margin-top: 0.5rem; }
.form-status { margin-top: 0.5rem; color: #4a5568; }

.contact-map { margin-top: 2rem; border-radius: 16px; overflow: hidden; box-shadow: 0 14px 36px rgba(0,0,0,0.10); }

@media (max-width: 1024px) { .contact-grid { grid-template-columns: 1fr; } }
