/* =============================================
   ReproCreate Landing Page - CSS Styles
   Font: Rubik | Colors: #70baa7 (green), #1a1a1a (black)
============================================= */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Rubik', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #fff;
}

/* Variables */
:root {
    --green: #70baa7;
    --green-dark: #5aa894;
    --green-light: rgba(112, 186, 167, 0.1);
    --black: #1a1a1a;
    --dark: #2d2d2d;
    --gray: #6b7280;
    --gray-light: #9ca3af;
    --white: #ffffff;
    --bg-light: #f8fdfb;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 15px 35px rgba(0, 0, 0, 0.15);
    --radius: 24px;
    --radius-sm: 12px;
    --radius-full: 50px;
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
}

.text-green { color: var(--green); }
.text-white { color: var(--white); }
.text-gray { color: var(--gray-light); }
.text-white-90 { color: rgba(255, 255, 255, 0.9); }

.underline {
    text-decoration: underline;
    text-decoration-color: var(--green);
    text-underline-offset: 8px;
    text-decoration-thickness: 4px;
}

.underline-white {
    text-decoration: underline;
    text-decoration-color: var(--white);
    text-underline-offset: 8px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: 'Rubik', sans-serif;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--black);
    color: var(--white);
    padding: 15px 30px;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    background-color: var(--green);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background-color: var(--white);
    color: var(--black);
    padding: 15px 30px;
    border-radius: var(--radius-full);
    border: 2px solid #e5e7eb;
}

.btn-secondary:hover {
    border-color: var(--green);
    background-color: var(--green-light);
}

.btn-lg {
    padding: 20px 40px;
    font-size: 18px;
}

.btn-full {
    width: 100%;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

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

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--green);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 20px;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: var(--black);
}

.nav-desktop {
    display: flex;
    gap: 40px;
}

.nav-link {
    color: var(--black);
    text-decoration: none;
    font-weight: 500;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--green);
    transition: width 0.3s ease;
}

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

.nav-link:hover {
    color: var(--green);
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 20px;
}

.phone-link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--black);
}

.phone-icon {
    width: 40px;
    height: 40px;
    border: 2px solid var(--green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--black);
}

.mobile-menu {
    display: none;
    background: var(--white);
    padding: 20px;
    border-top: 1px solid #e5e7eb;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mobile-nav-link {
    color: var(--black);
    text-decoration: none;
    font-weight: 500;
    padding: 12px 0;
    border-bottom: 1px solid #f3f4f6;
}

.mobile-phone-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--green);
    text-decoration: none;
    padding: 12px 0;
}

@media (max-width: 1024px) {
    .nav-desktop, .header-cta {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .mobile-menu.active {
        display: block;
    }
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, #fff 0%, #f8fdfb 50%, #e8f5f1 100%);
    padding-top: 120px;
    overflow: hidden;
}

.hero-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
}

.shape-1 {
    width: 600px;
    height: 600px;
    background: rgba(112, 186, 167, 0.1);
    top: -200px;
    right: -200px;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: rgba(112, 186, 167, 0.05);
    bottom: -100px;
    left: -100px;
}

.dot {
    position: absolute;
    border-radius: 50%;
}

.dot-1 {
    width: 16px;
    height: 16px;
    background: var(--green);
    top: 200px;
    left: 80px;
    animation: pulse 2s infinite;
}

.dot-2 {
    width: 24px;
    height: 24px;
    border: 2px solid var(--green);
    top: 300px;
    right: 200px;
    animation: bounce 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

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

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 60px 0 120px;
}

.hero-text {
    position: relative;
    z-index: 10;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    padding: 12px 20px;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow);
    margin-bottom: 30px;
}

.stars {
    display: flex;
    gap: 2px;
    color: #fbbf24;
    font-size: 14px;
}

.hero-badge span {
    font-weight: 500;
    font-size: 14px;
}

.hero-title {
    font-size: 64px;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-description {
    font-size: 20px;
    color: var(--gray);
    margin-bottom: 32px;
    max-width: 540px;
}

.hero-description strong {
    color: var(--black);
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

.hero-trust {
    display: flex;
    gap: 40px;
    padding-top: 32px;
    border-top: 1px solid #e5e7eb;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.trust-icon {
    width: 56px;
    height: 56px;
    background: var(--green-light);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green);
    font-size: 24px;
}

.trust-text {
    display: flex;
    flex-direction: column;
}

.trust-text strong {
    font-size: 16px;
}

.trust-text span {
    font-size: 14px;
    color: var(--gray);
}

.hero-image-container {
    position: relative;
}

.hero-image-bg, .hero-image-bg-2 {
    position: absolute;
    inset: -16px;
    border-radius: 32px;
}

.hero-image-bg {
    background: rgba(112, 186, 167, 0.2);
    transform: rotate(3deg);
}

.hero-image-bg-2 {
    background: rgba(26, 26, 26, 0.05);
    transform: rotate(-3deg);
}

.hero-image {
    position: relative;
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 32px;
    box-shadow: var(--shadow-lg);
}

.floating-card {
    position: absolute;
    bottom: -30px;
    left: -30px;
    background: var(--white);
    padding: 24px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 16px;
}

.floating-number {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
    font-weight: 700;
}

.floating-text span {
    display: block;
    font-size: 14px;
    color: var(--gray);
}

.floating-text strong {
    font-size: 22px;
}

.floating-badge {
    position: absolute;
    top: -16px;
    right: -16px;
    background: var(--black);
    color: var(--white);
    padding: 12px 24px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: var(--shadow-lg);
}

.floating-badge i {
    color: #fbbf24;
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.hero-wave svg {
    display: block;
    width: 100%;
}

@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .hero-description {
        margin: 0 auto 32px;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .hero-trust {
        justify-content: center;
    }
    
    .hero-image-container {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .floating-card, .floating-badge {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 36px;
    }
    
    .hero-description {
        font-size: 18px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-trust {
        flex-direction: column;
        align-items: center;
    }
}

/* Doctor Section */
.doctor {
    padding: 120px 0;
    background: var(--white);
}

.doctor-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.doctor-image-container {
    position: relative;
}

.doctor-image-bg {
    position: absolute;
    inset: -16px;
    background: linear-gradient(135deg, rgba(112, 186, 167, 0.2), rgba(112, 186, 167, 0.05));
    border-radius: 32px;
    transform: rotate(-2deg);
}

.doctor-image {
    position: relative;
    width: 100%;
    height: 600px;
    object-fit: cover;
    object-position: top;
    border-radius: 32px;
    box-shadow: var(--shadow-lg);
}

.doctor-name-card {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 24px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.doctor-name-card h3 {
    font-size: 24px;
    margin-bottom: 4px;
}

.doctor-name-card p {
    color: var(--green);
    font-weight: 500;
}

.doctor-badge {
    position: absolute;
    top: -20px;
    right: -20px;
    background: var(--black);
    color: var(--white);
    padding: 20px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.doctor-badge i {
    font-size: 32px;
    color: var(--green);
    margin-bottom: 8px;
}

.doctor-badge span {
    display: block;
    font-size: 14px;
    color: var(--gray-light);
}

.doctor-badge strong {
    display: block;
    font-size: 18px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--green-light);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    margin-bottom: 24px;
}

.section-badge .dot {
    width: 8px;
    height: 8px;
    background: var(--green);
    border-radius: 50%;
    position: static;
    animation: none;
}

.section-badge span {
    font-size: 12px;
    font-weight: 600;
    color: var(--green);
    letter-spacing: 2px;
}

.section-badge-light {
    background: rgba(112, 186, 167, 0.2);
}

.section-badge-white {
    background: rgba(255, 255, 255, 0.2);
}

.section-badge-white span,
.section-badge-white i {
    color: var(--white);
}

.section-title {
    font-size: 48px;
    margin-bottom: 24px;
}

.quote-card {
    position: relative;
    background: linear-gradient(135deg, #f8fdfb, var(--white));
    padding: 32px;
    border-radius: 20px;
    border: 1px solid rgba(112, 186, 167, 0.1);
    margin-bottom: 24px;
}

.quote-icon {
    font-size: 48px;
    color: rgba(112, 186, 167, 0.3);
    position: absolute;
    top: 16px;
    left: 16px;
}

.quote-card blockquote {
    font-size: 18px;
    color: var(--gray);
    font-style: italic;
    padding-left: 32px;
    line-height: 1.8;
}

.doctor-description {
    font-size: 18px;
    color: var(--gray);
    margin-bottom: 32px;
}

.doctor-description strong {
    color: var(--black);
}

.doctor-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.stat-card {
    padding: 24px;
    border-radius: 20px;
    text-align: center;
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-4px);
}

.stat-dark {
    background: var(--black);
    color: var(--white);
}

.stat-dark i {
    color: var(--green);
}

.stat-green {
    background: var(--green);
    color: var(--white);
}

.stat-card i {
    font-size: 24px;
    margin-bottom: 8px;
}

.stat-number {
    display: block;
    font-size: 32px;
    font-weight: 700;
}

.stat-label {
    display: block;
    font-size: 14px;
    opacity: 0.7;
}

@media (max-width: 1024px) {
    .doctor-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .doctor-image-container {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .doctor-badge {
        display: none;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 36px;
    }
    
    .doctor-stats {
        grid-template-columns: 1fr;
    }
}

/* Services Section */
.services {
    padding: 120px 0;
    background: var(--black);
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 500px;
    height: 500px;
    background: rgba(112, 186, 167, 0.05);
    border-radius: 50%;
    filter: blur(100px);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-description {
    font-size: 20px;
    color: var(--gray);
}

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

.service-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    padding: 32px;
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent, rgba(112, 186, 167, 0.2));
    opacity: 0;
    transition: opacity 0.5s ease;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    background: rgba(255, 255, 255, 0.1);
}

.service-card-highlight {
    background: var(--green);
    border-color: var(--green);
}

.service-card-highlight::before {
    display: none;
}

.service-icon {
    width: 64px;
    height: 64px;
    background: rgba(112, 186, 167, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--green);
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

.service-card-highlight .service-icon {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.service-card:hover .service-icon {
    background: rgba(112, 186, 167, 0.2);
}

.service-card h3 {
    font-size: 24px;
    color: var(--white);
    margin-bottom: 12px;
}

.service-card p {
    color: var(--gray-light);
    margin-bottom: 24px;
    line-height: 1.6;
}

.service-card-highlight p {
    color: rgba(255, 255, 255, 0.9);
}

.service-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--green);
    font-weight: 600;
    transition: transform 0.3s ease;
}

.service-card-highlight .service-link {
    color: var(--white);
}

.service-card:hover .service-link {
    transform: translateX(8px);
}

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

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

/* Process Section */
.process {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--white), #f8fdfb);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}

.process-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px 24px;
    box-shadow: var(--shadow);
    transition: all 0.5s ease;
}

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

.process-icon-container {
    position: relative;
    margin-bottom: 20px;
}

.process-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: var(--white);
    box-shadow: 0 10px 20px rgba(112, 186, 167, 0.3);
    transition: transform 0.3s ease;
}

.process-card:hover .process-icon {
    transform: scale(1.1);
}

.process-number {
    position: absolute;
    top: -12px;
    right: -12px;
    background: var(--black);
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    box-shadow: var(--shadow);
}

.process-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.process-card p {
    color: var(--gray);
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.6;
}

.process-check {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--green);
    font-size: 14px;
    font-weight: 500;
}

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

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

/* Trust Section */
.trust {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    position: relative;
    overflow: hidden;
}

.trust::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.trust-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius);
    padding: 32px 24px;
    transition: all 0.5s ease;
}

.trust-card:hover {
    background: var(--white);
    transform: translateY(-8px);
}

.trust-card:hover h3,
.trust-card:hover .stat-value {
    color: var(--black);
}

.trust-card:hover p,
.trust-card:hover .stat-label {
    color: var(--gray);
}

.trust-card:hover .trust-card-icon {
    background: var(--green-light);
}

.trust-card:hover .trust-card-icon i {
    color: var(--green);
}

.trust-card-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.trust-card-icon {
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--white);
    transition: all 0.3s ease;
}

.trust-card-stat {
    text-align: right;
}

.trust-card-stat .stat-value {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: var(--white);
    transition: color 0.3s ease;
}

.trust-card-stat .stat-label {
    font-size: 10px;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.trust-card h3 {
    font-size: 20px;
    color: var(--white);
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.trust-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    line-height: 1.6;
    transition: color 0.3s ease;
}

.trust-banner {
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: var(--shadow-lg);
}

.trust-banner-content {
    display: flex;
    align-items: center;
    gap: 24px;
}

.trust-banner-icon {
    width: 80px;
    height: 80px;
    background: var(--green-light);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: var(--green);
}

.trust-banner-text h4 {
    font-size: 24px;
    margin-bottom: 4px;
}

.trust-banner-text p {
    color: var(--gray);
}

.trust-banner-stars {
    display: flex;
    gap: 4px;
    color: #fbbf24;
    font-size: 24px;
}

@media (max-width: 1024px) {
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .trust-banner {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }
    
    .trust-banner-content {
        flex-direction: column;
    }
}

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

/* Contact Section */
.contact {
    padding: 120px 0;
    background: var(--black);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 600px;
    height: 600px;
    background: rgba(112, 186, 167, 0.05);
    border-radius: 50%;
    filter: blur(100px);
}

.contact-grid {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 48px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-info-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    padding: 32px;
}

.contact-info-card h3 {
    font-size: 24px;
    color: var(--white);
    margin-bottom: 32px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-item:last-child {
    margin-bottom: 0;
}

a.contact-item:hover .contact-item-icon {
    background: var(--green);
}

a.contact-item:hover .contact-item-icon i {
    color: var(--white);
}

.contact-item-icon {
    width: 56px;
    height: 56px;
    background: rgba(112, 186, 167, 0.2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-item-icon i {
    font-size: 24px;
    color: var(--green);
    transition: color 0.3s ease;
}

.contact-item-text .label {
    display: block;
    font-size: 12px;
    color: var(--gray);
    margin-bottom: 4px;
}

.contact-item-text .value {
    display: block;
    font-size: 18px;
    color: var(--white);
    font-weight: 500;
}

.contact-map {
    border-radius: var(--radius);
    overflow: hidden;
    border: 4px solid rgba(255, 255, 255, 0.1);
}

.contact-form-container {
    background: var(--white);
    border-radius: var(--radius);
    padding: 48px;
    box-shadow: var(--shadow-lg);
}

.contact-form-container h3 {
    font-size: 24px;
    margin-bottom: 8px;
}

.form-subtitle {
    color: var(--gray);
    margin-bottom: 32px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 500;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    font-family: 'Rubik', sans-serif;
    font-size: 16px;
    padding: 16px;
    border: 1px solid #e5e7eb;
    border-radius: var(--radius-sm);
    background: #f9fafb;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(112, 186, 167, 0.2);
}

.form-group textarea {
    resize: none;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.form-disclaimer {
    font-size: 12px;
    color: var(--gray);
    text-align: center;
}

.form-success {
    text-align: center;
    padding: 60px 0;
}

.success-icon {
    width: 96px;
    height: 96px;
    background: var(--green-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.success-icon i {
    font-size: 48px;
    color: var(--green);
}

.form-success h4 {
    font-size: 24px;
    margin-bottom: 12px;
}

.form-success p {
    color: var(--gray);
}

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

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

/* Footer */
.footer {
    background: var(--white);
    padding: 60px 0 40px;
    border-top: 1px solid #e5e7eb;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand p {
    color: var(--gray);
    margin: 16px 0;
    line-height: 1.6;
}

.footer-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--green-light);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    color: var(--green);
    font-weight: 500;
}

.footer-links h4,
.footer-services h4,
.footer-contact h4 {
    font-size: 18px;
    margin-bottom: 24px;
}

.footer-links ul,
.footer-services ul,
.footer-contact ul {
    list-style: none;
}

.footer-links li,
.footer-services li,
.footer-contact li {
    margin-bottom: 16px;
}

.footer-links a,
.footer-services li,
.footer-contact a {
    color: var(--gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--green);
}

.footer-contact a,
.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.footer-contact i {
    color: var(--green);
    width: 16px;
    margin-top: 4px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    border-top: 1px solid #e5e7eb;
}

.footer-bottom p {
    color: var(--gray);
    font-size: 14px;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.footer-bottom-links a {
    color: var(--gray);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

.scroll-top {
    width: 40px;
    height: 40px;
    background: var(--black);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
}

.scroll-top:hover {
    background: var(--green);
}

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

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-badge {
        margin: 0 auto;
    }
    
    .footer-contact a,
    .footer-contact li {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 24px;
    }
}
