/* CSS for Marina x Atomy Personal Distributor Website */
/* Core Variables & Colors */
:root {
    --primary-blue: #0a4fa3;
    --primary-blue-dark: #073a7c;
    --secondary-turquoise: #00c9a7;
    --secondary-turquoise-hover: #00a48a;
    --text-dark: #2d3436;
    --text-light: #636e72;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --shadow-sm: 0 5px 15px rgba(0,0,0,0.05);
    --shadow-md: 0 10px 25px rgba(0,0,0,0.1);
    --shadow-lg: 0 20px 40px rgba(10, 79, 163, 0.15);
    --transition: all 0.3s ease;
    --border-radius: 4px;
}

/* Base Styles & Typography */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-dark);
    line-height: 1.8;
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.3;
}

p {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

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

ul {
    list-style: none;
}

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

.highlight {
    color: var(--secondary-turquoise);
}

.text-center {
    text-align: center;
}

.white-text {
    color: var(--white);
}

.section-title {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.section-subtitle {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 3rem auto;
}

.title-underline {
    height: 4px;
    width: 60px;
    background-color: var(--secondary-turquoise);
    border-radius: 2px;
    margin-bottom: 2rem;
}

.center-underline {
    margin: 0 auto 2rem auto;
}

.white-underline {
    background-color: var(--secondary-turquoise);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    text-align: center;
}

.btn i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.btn i.left-icon {
    margin-left: 0;
    margin-right: 12px;
}

.btn:hover i {
    transform: translateX(5px);
}

.btn:hover i.left-icon {
    transform: translateX(-5px);
}

.btn-primary {
    background: linear-gradient(135deg, var(--secondary-turquoise), #00e0ba);
    color: var(--white);
    box-shadow: 0 10px 20px rgba(0, 201, 167, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--secondary-turquoise-hover), var(--secondary-turquoise));
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(0, 201, 167, 0.4);
    color: var(--white);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
}

.btn-outline:hover {
    background: var(--primary-blue);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(10, 79, 163, 0.2);
}

.btn-large {
    padding: 16px 40px;
    font-size: 1.1rem;
}

.btn-full {
    width: 100%;
    margin-top: auto;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    padding: 15px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-blue);
}

.header-logo {
    height: 45px; /* Größe des Atomy Logos anpassbar */
    width: auto;
    vertical-align: middle;
}

.nav-right-group {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links {
    display: flex;
    gap: 3rem;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-links a {
    font-weight: 600;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary-turquoise);
    transition: var(--transition);
}

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

.nav-cta {
    padding: 10px 24px;
}

.mobile-menu-icon {
    display: none;
    font-size: 1.5rem;
    color: var(--primary-blue);
    cursor: pointer;
}

/* Language Switcher */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 15px;
}

.flag-icon {
    width: 28px;
    height: 18px;
    border-radius: 3px;
    object-fit: cover;
    display: inline-block;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.lang-switcher a {
    display: flex;
    text-decoration: none;
    opacity: 0.5;
    transition: all 0.3s ease;
    filter: grayscale(80%);
}

.lang-switcher a:hover, .lang-switcher a.active {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.1);
}

/* Hero Section */
.hero {
    padding: 150px 0 80px 0;
    /* Verändert: Bild aktiv nach rechts geschoben (30vw) und rechts aufgefüllt mit weiß */
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 45%, rgba(255, 255, 255, 0) 90%), url('img/atomypark.webp') no-repeat 30vw center / cover #ffffff;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 201, 167, 0.1) 0%, rgba(255,255,255,0) 70%);
    border-radius: 50%;
    z-index: 0;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    position: relative;
    z-index: 1;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.badge {
    display: inline-block;
    padding: 6px 16px;
    background-color: rgba(10, 79, 163, 0.1);
    color: var(--primary-blue);
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero h1 {
    font-size: 3.5rem;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.hero-main-img {
    width: 100%;
    max-width: 500px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    object-fit: cover;
}

.image-placeholder {
    width: 100%;
    max-width: 500px;
    height: 600px;
    background-color: var(--primary-blue);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 600;
    box-shadow: var(--shadow-lg);
    background-image: linear-gradient(135deg, var(--primary-blue), var(--secondary-turquoise));
    position: relative;
    overflow: hidden;
}

/* About Section */
.about {
    padding: 100px 0;
    background-color: var(--white);
}

.about-container {
    display: flex;
    align-items: stretch; /* Stretches children to equal height */
    gap: 5rem;
}

.small-placeholder {
    height: 500px;
    background-image: linear-gradient(135deg, #e0e0e0, #f5f5f5);
    color: var(--primary-blue);
    border: 1px solid #ddd;
    box-shadow: var(--shadow-md);
}

.about-image {
    flex: 1;
    position: relative;
    /* padding entfernt, damit das Bild millimetergenau oben beim "W" und unten beim Text abschließt */
}

.about-img-frame {
    position: relative;
    width: 100%;
    height: 100%;
}

.about-img-frame::before {
    content: '';
    position: absolute;
    top: 20px;
    left: -20px;
    right: 20px;
    bottom: -20px;
    background: linear-gradient(135deg, var(--secondary-turquoise), var(--primary-blue));
    border-radius: 24px;
    z-index: -1;
    opacity: 0.15;
}

.about-img {
    width: 100%;
    height: 100%; /* Stretch exactly to the text height */
    object-fit: cover;
    object-position: center;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(10, 79, 163, 0.15);
    display: block;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.about-img-frame:hover .about-img {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(10, 79, 163, 0.2);
}

.about-content {
    flex: 1.2;
}

.trust-list {
    margin-top: 2rem;
}

.trust-list li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-blue);
}

.trust-list i {
    color: var(--secondary-turquoise);
    font-size: 1.5rem;
    margin-right: 15px;
}

/* Business Section */
.business {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-blue-dark), var(--primary-blue));
    text-align: center;
    position: relative;
}

.business::after {
    content: '';
    position: absolute;
    top: -2px;
    left: 0;
    width: 100%;
    height: 102px;
    background: var(--bg-light);
    clip-path: polygon(0 0, 100% 0, 100% 100%);
}

.business-text {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.business .section-title {
    color: var(--secondary-turquoise);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
}

.benefit-card i {
    font-size: 2.5rem;
    color: var(--secondary-turquoise);
    margin-bottom: 1.5rem;
}

.benefit-card h3 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.benefit-card p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
}

/* Products Section */
.products {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 3rem;
}

.product-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

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

.product-img-placeholder {
    height: 250px;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    font-weight: 600;
}

.product-info {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-info h3 {
    font-size: 1.4rem;
    color: var(--primary-blue);
    margin-bottom: 10px;
}

/* Footer Section */
.footer {
    position: relative;
    padding: 100px 0 30px 0;
    background: linear-gradient(135deg, #091322 0%, #102a4e 100%);
    color: var(--white);
    border-top: 4px solid var(--secondary-turquoise);
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 201, 167, 0.1) 0%, rgba(255,255,255,0) 70%);
    border-radius: 50%;
    z-index: 0;
}

.footer .container {
    position: relative;
    z-index: 1;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 4rem;
    margin-bottom: 60px;
}

.footer-contact h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: var(--white);
    background: linear-gradient(to right, #fff, #b2bec3);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-contact p {
    color: #94a3ab;
    font-size: 1.05rem;
}

.contact-methods-inline {
    display: flex;
    gap: 15px;
    margin-top: 1.5rem;
}

.contact-icon-btn {
    width: 55px;
    height: 55px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--white);
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
}

.contact-icon-btn:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.15);
}

.contact-icon-btn.whatsapp:hover { 
    background-color: #25D366; 
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.4);
    border-color: #25D366;
}
.contact-icon-btn.telegram:hover { 
    background-color: #0088cc; 
    box-shadow: 0 10px 20px rgba(0, 136, 204, 0.4);
    border-color: #0088cc;
}
.contact-icon-btn.email:hover { 
    background-color: var(--secondary-turquoise); 
    box-shadow: 0 10px 20px rgba(0, 201, 167, 0.4);
    border-color: var(--secondary-turquoise);
}

.contact-icon-btn.instagram:hover { 
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    box-shadow: 0 10px 20px rgba(214, 36, 159, 0.4);
    border-color: transparent;
}

.contact-icon-btn.tiktok:hover { 
    background-color: #000000; 
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
    border-color: #000000;
}

.footer-links-col h3 {
    font-size: 1.3rem;
    margin-bottom: 25px;
    color: var(--white);
    position: relative;
    padding-bottom: 10px;
}

.footer-links-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--secondary-turquoise);
    border-radius: 2px;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-nav a {
    color: #94a3ab;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
}

.footer-nav a::before {
    content: '\f105';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-right: 10px;
    color: var(--secondary-turquoise);
    font-size: 0.8rem;
    opacity: 0;
    transform: translateX(-10px);
    transition: var(--transition);
}

.footer-nav a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-nav a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.footer-branding {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-branding .logo {
    margin-bottom: 1rem;
    font-size: 2.2rem;
}

.footer-branding .header-logo {
    height: 55px; /* Etwas größeres Logo im Footer */
    filter: brightness(0) invert(1); /* Macht das blaue Logo weiß */
}

.footer-branding p:nth-of-type(1) {
    color: var(--secondary-turquoise);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.85rem;
}

.footer-branding p:nth-of-type(2) {
    color: var(--white);
    font-size: 1.1rem;
    line-height: 1.6;
    background: rgba(255,255,255,0.05);
    padding: 15px 20px;
    border-radius: 8px;
    border-left: 3px solid var(--secondary-turquoise);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.copyright {
    color: #74818a;
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* --- Ingredient Feature Boxes --- */
.ingredient-box {
    display: flex;
    align-items: stretch;
    background: var(--white);
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    height: 220px;
}
.ingredient-img {
    width: 220px;
    background: var(--secondary-turquoise);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 5.5rem;
    flex-shrink: 0;
}
.ingredient-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.ingredient-text {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.ingredient-text h4 {
    color: var(--primary-blue);
    font-size: 1.3rem;
    margin-bottom: 8px;
}
.ingredient-text p {
    margin-bottom: 0;
}

/* Section Wrapper */
.section-wrapper { padding: 80px 0; }
.section-wrapper.alt-bg { background-color: #fcfcfc; border-top: 1px solid #f0f0f0; border-bottom: 1px solid #f0f0f0; }

/* Steps Container */
.steps-container { display: flex; flex-direction: column; gap: 15px; margin-top: 20px; }
.step-item { background: var(--white); display: flex; align-items: center; padding: 20px; border-radius: 8px; box-shadow: var(--shadow-sm); border-left: 5px solid var(--secondary-turquoise); transition: var(--transition); }
.step-item:hover { transform: translateX(5px); }
.step-item strong { display: inline-block; width: 220px; color: var(--primary-blue); font-size: 1.1rem; }
.step-item span { flex: 1; color: #555; }

/* Responsive Design */
@media (max-width: 992px) {
    .ingredient-box {
        flex-direction: column;
        height: auto;
    }
    .ingredient-img {
        width: 100%;
        height: 220px;
    }

    .hero-container, .about-container, .footer-container {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
    }

    .hero-content {
        max-width: 100%;
    }

    .step-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .step-item strong {
        margin-bottom: 10px;
        width: 100%;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image {
        width: 100%;
        justify-content: center;
    }
    
    .image-placeholder {
        height: 400px;
    }

    /* Removed .trust-list li center to fix checkmark alignment */
    
    .center-underline {
        margin-left: auto;
        margin-right: auto;
    }
    
    .title-underline:not(.center-underline) {
        margin-left: auto;
        margin-right: auto;
    }

    .about-img-frame {
        height: 500px; /* Reset height for mobile column layout */
    }
}

@media (max-width: 768px) {
    body {
        font-size: 15px; /* Kompaktere Grundschrift auf dem Smartphone */
    }

    .hero {
        min-height: auto;
        padding-top: 130px;
        padding-bottom: 60px;
    }

    .about, .products, .business, .contact-section {
        padding: 60px 0; /* Kleinere Abstände zwischen den Sektionen */
    }

    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1.05rem;
    }

    .product-slider {
        min-height: 280px !important; /* Kompaktere Galerie auf den Produktseiten */
    }

    .nav-links {
        display: none;
        transform: none; /* Reset the centering transform */
    }
    
    .lang-switcher {
        margin-left: auto;
        margin-right: 15px; /* Abstand zum Burger-Icon */
    }

    .nav-links.active {
        display: flex !important;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        transform: none; /* Reset the centering transform */
        width: 100%;
        background-color: #fff;
        padding: 20px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        gap: 1.5rem;
        z-index: 999;
    }

    .mobile-menu-icon {
        display: block;
    }
    
    .nav-cta {
        display: none;
    }

    .hero h1 {
        font-size: 2.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

/* Floating Contact Buttons */
.floating-contact-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
}

.floating-btn:hover {
    transform: scale(1.1) translateY(-5px);
    color: white;
}

.float-whatsapp { background-color: #25D366; }
.float-whatsapp:hover { box-shadow: 0 10px 25px rgba(37, 211, 102, 0.5); }

.float-telegram { background-color: #0088cc; }
.float-telegram:hover { box-shadow: 0 10px 25px rgba(0, 136, 204, 0.5); }

.float-instagram { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%); }
.float-instagram:hover { box-shadow: 0 10px 25px rgba(214, 36, 159, 0.5); }

.float-tiktok { background-color: #000000; }
.float-tiktok:hover { box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5); }

@media (max-width: 768px) {
    .floating-contact-container { bottom: 15px; right: 15px; gap: 10px; }
    .floating-btn { width: 50px; height: 50px; font-size: 1.6rem; }
}

/* Contact Form Section */
.contact-section {
    padding: 100px 0;
    background-color: var(--white);
}

.contact-card {
    max-width: 1000px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    display: flex;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.05);
}

.contact-info-panel {
    background: linear-gradient(135deg, #091322 0%, #102a4e 100%);
    color: var(--white);
    padding: 60px 40px;
    width: 40%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.contact-info-panel::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(0, 201, 167, 0.15) 0%, rgba(255,255,255,0) 70%);
    border-radius: 50%;
}

.contact-info-panel h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--white);
    position: relative;
    z-index: 1;
}

.contact-info-panel p {
    color: #94a3ab;
    font-size: 1.05rem;
    position: relative;
    z-index: 1;
    margin-bottom: 30px;
}

.contact-form-panel {
    padding: 60px 50px;
    width: 60%;
    background: #ffffff;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-group {
    margin-bottom: 25px;
    flex: 1;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--primary-blue);
    font-size: 0.95rem;
}

.form-control {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #f0f0f0;
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    background: #fcfcfc;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--secondary-turquoise);
    outline: none;
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(0, 201, 167, 0.1);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

@media (max-width: 768px) {
    .contact-card {
        flex-direction: column;
    }
    .contact-info-panel, .contact-form-panel {
        width: 100%;
    }
    .contact-form-panel {
        padding: 40px 25px;
    }
    .form-row {
        flex-direction: column;
        gap: 0;
    }
}
