/* ============================================
   ILETISIM PAGE - Contact & Analysis Request
   NextMind - Professional Contact Form
   Dark Blue Theme with Glassmorphism
   ============================================ */

/* ---- CSS VARIABLES ---- */
:root {
    --il-primary: #0a1628;
    --il-secondary: #0e2a4a;
    --il-accent: #00b4d8;
    --il-accent-dark: #0096b4;
    --il-kosgeb: #6c63ff;
    --il-teknokent: #10b981;
    --il-white: #ffffff;
    --il-gray-100: #f8fafc;
    --il-gray-200: #e2e8f0;
    --il-gray-300: #cbd5e1;
    --il-gray-500: #64748b;
    --il-gray-700: #334155;
    --il-gray-900: #0f172a;
    --il-success: #10b981;
    --il-error: #ef4444;
}

/* ============================================
   PAGE TRANSITIONS (SPA-like)
   ============================================ */
.page-transition-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--il-primary);
    z-index: 9998;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.page-transition-overlay.active {
    opacity: 1;
    pointer-events: all;
}

body.page-transition {
    animation: fadeInPage 0.6s ease forwards;
}

@keyframes fadeInPage {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

/* ============================================
   HERO SECTION
   ============================================ */
.il-hero {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--il-primary);
    overflow: hidden;
    padding-top: 100px;
    padding-bottom: 60px;
}

.il-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.il-hero__gradient {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 80% 60% at 30% 40%, rgba(0, 180, 216, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 70% 60%, rgba(108, 99, 255, 0.1) 0%, transparent 50%),
        linear-gradient(180deg, var(--il-primary) 0%, var(--il-secondary) 100%);
}

.il-hero__grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 40%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 40%, transparent 100%);
}

.il-hero__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: orbFloat 15s ease-in-out infinite;
}

.il-hero__orb--1 {
    width: 400px;
    height: 400px;
    background: var(--il-accent);
    top: -100px;
    right: 10%;
    animation-delay: 0s;
}

.il-hero__orb--2 {
    width: 300px;
    height: 300px;
    background: var(--il-kosgeb);
    bottom: -50px;
    left: 5%;
    animation-delay: -7s;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.05); }
    66% { transform: translate(-20px, 20px) scale(0.95); }
}

/* Hero Wrapper - 2 Column Layout */
.il-hero__wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    position: relative;
    z-index: 1;
    width: 100%;
}

.il-hero__content {
    position: relative;
    z-index: 1;
    text-align: left;
    max-width: 55%;
    flex-shrink: 0;
    padding: 0 2rem;
    opacity: 0;
    transform: translateY(30px);
    animation: ilFadeUp 0.8s ease forwards 0.3s;
}

/* Hero Visual - Right Side */
.il-hero__visual {
    position: relative;
    width: 45%;
    min-height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    animation: ilFadeUp 0.9s ease forwards 0.6s;
}

.il-hero__float-scene {
    position: relative;
    width: 340px;
    height: 340px;
}

/* Central Card */
.il-float-card {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
}

.il-float-card--main {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(0, 180, 216, 0.25), rgba(108, 99, 255, 0.25));
    border: 1px solid rgba(0, 180, 216, 0.4);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    animation: ilFloatCenter 6s ease-in-out infinite;
    box-shadow:
        0 0 30px rgba(0, 180, 216, 0.2),
        0 0 60px rgba(0, 180, 216, 0.1),
        inset 0 1px 0 rgba(255,255,255,0.1);
}

.il-float-card__icon {
    font-size: 2.4rem;
    background: linear-gradient(135deg, var(--il-accent), var(--il-kosgeb));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 8px rgba(0, 180, 216, 0.4));
}

.il-float-card__pulse {
    position: absolute;
    inset: -8px;
    border-radius: 30px;
    border: 2px solid rgba(0, 180, 216, 0.3);
    animation: ilPulseRing 3s ease-in-out infinite;
}

@keyframes ilFloatCenter {
    0%, 100% { transform: translate(-50%, -50%) translateY(0); }
    50% { transform: translate(-50%, -50%) translateY(-12px); }
}

@keyframes ilPulseRing {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 0; transform: scale(1.3); }
}

/* Orbiting Items */
.il-float-orbit {
    position: absolute;
    inset: 0;
    animation: ilOrbitSpin 25s linear infinite;
}

.il-float-orbit__item {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    padding: 0.7rem 1rem;
    background: rgba(10, 22, 40, 0.7);
    border: 1px solid rgba(0, 180, 216, 0.25);
    border-radius: 14px;
    backdrop-filter: blur(8px);
    color: var(--il-white);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    white-space: nowrap;
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
    /* counter-rotate to keep text upright */
    animation: ilOrbitCounterSpin 25s linear infinite;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.il-float-orbit__item:hover {
    box-shadow: 0 8px 32px rgba(0, 180, 216, 0.3);
    border-color: rgba(0, 180, 216, 0.5);
}

.il-float-orbit__item i {
    font-size: 1.1rem;
}

.il-float-orbit__item--1 {
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--il-accent);
    border-color: rgba(0, 180, 216, 0.35);
}

.il-float-orbit__item--1 i {
    color: var(--il-accent);
}

.il-float-orbit__item--2 {
    bottom: 15px;
    left: -15px;
    color: var(--il-kosgeb);
    border-color: rgba(108, 99, 255, 0.35);
}

.il-float-orbit__item--2 i {
    color: var(--il-kosgeb);
}

.il-float-orbit__item--3 {
    bottom: 15px;
    right: -15px;
    color: var(--il-teknokent);
    border-color: rgba(16, 185, 129, 0.35);
}

.il-float-orbit__item--3 i {
    color: var(--il-teknokent);
}

@keyframes ilOrbitSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes ilOrbitCounterSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(-360deg); }
}

/* SVG Connecting Lines */
.il-float-lines {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

/* Sparkle Particles */
.il-sparkle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--il-accent);
    border-radius: 50%;
    z-index: 2;
    box-shadow: 0 0 8px rgba(0, 180, 216, 0.6), 0 0 16px rgba(0, 180, 216, 0.3);
    animation: ilSparkleFloat 4s ease-in-out infinite;
}

.il-sparkle--1 { top: 20%; left: 10%; animation-delay: 0s; animation-duration: 3.5s; }
.il-sparkle--2 { top: 10%; right: 20%; animation-delay: 0.8s; background: var(--il-kosgeb); box-shadow: 0 0 8px rgba(108, 99, 255, 0.6); }
.il-sparkle--3 { bottom: 25%; left: 15%; animation-delay: 1.5s; animation-duration: 4.5s; }
.il-sparkle--4 { bottom: 10%; right: 15%; animation-delay: 2.2s; background: var(--il-teknokent); box-shadow: 0 0 8px rgba(16, 185, 129, 0.6); }
.il-sparkle--5 { top: 50%; right: 5%; animation-delay: 0.5s; width: 3px; height: 3px; }

@keyframes ilSparkleFloat {
    0%, 100% { opacity: 0.3; transform: translateY(0) scale(1); }
    50% { opacity: 1; transform: translateY(-15px) scale(1.5); }
}

@keyframes ilFadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.il-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    background: rgba(0, 180, 216, 0.15);
    border: 1px solid rgba(0, 180, 216, 0.3);
    border-radius: 50px;
    color: var(--il-accent);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1.5rem;
}

.il-hero__badge i {
    font-size: 0.85rem;
}

.il-hero__title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--il-white);
    margin-bottom: 1.5rem;
    line-height: 1.15;
}

.il-hero__title span {
    background: linear-gradient(135deg, var(--il-accent) 0%, var(--il-kosgeb) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.il-hero__desc {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    max-width: 600px;
    margin: 0;
}

/* ============================================
   CONTACT MAIN SECTION
   ============================================ */
.il-contact {
    padding: 5rem 0 6rem;
    background: linear-gradient(180deg, var(--il-gray-100) 0%, var(--il-white) 100%);
}

.il-contact__grid {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 3rem;
    align-items: start;
}

/* ---- Sidebar (Map & Info) ---- */
.il-contact__sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: sticky;
    top: 100px;
}

/* ---- Map Container ---- */
.il-map {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(10, 22, 40, 0.15);
}

.il-map__container {
    position: relative;
    width: 100%;
    height: 280px;
}

.il-map__container iframe {
    width: 100%;
    height: 100%;
    filter: saturate(0.8) brightness(0.95) contrast(1.05);
    transition: filter 0.5s ease;
}

.il-map:hover .il-map__container iframe {
    filter: saturate(1) brightness(1) contrast(1);
}

.il-map__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, 
        rgba(10, 22, 40, 0.08) 0%, 
        rgba(0, 180, 216, 0.05) 100%);
    pointer-events: none;
}

.il-map__pin {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -100%);
    z-index: 2;
    width: 50px;
    height: 50px;
    background: var(--il-accent);
    border-radius: 50% 50% 50% 0;
    transform: translate(-50%, -100%) rotate(-45deg);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 180, 216, 0.4);
    animation: pinBounce 2s ease-in-out infinite;
}

.il-map__pin i {
    transform: rotate(45deg);
    color: var(--il-white);
    font-size: 1.2rem;
}

@keyframes pinBounce {
    0%, 100% { transform: translate(-50%, -100%) rotate(-45deg); }
    50% { transform: translate(-50%, -110%) rotate(-45deg); }
}

/* ---- Coffee Invitation ---- */
.il-coffee {
    background: var(--il-white);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid var(--il-gray-200);
    box-shadow: 0 10px 40px rgba(10, 22, 40, 0.06);
}

.il-coffee__icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(0, 180, 216, 0.1) 0%, rgba(108, 99, 255, 0.1) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.il-coffee__icon i {
    font-size: 1.5rem;
    color: var(--il-accent);
}

.il-coffee__title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--il-gray-900);
    margin-bottom: 0.5rem;
}

.il-coffee__subtitle {
    font-size: 0.9rem;
    color: var(--il-gray-500);
    margin-bottom: 1.5rem;
}

.il-coffee__address {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: var(--il-gray-100);
    border-radius: 12px;
    margin-bottom: 1rem;
}

.il-coffee__address > i {
    color: var(--il-accent);
    font-size: 1.1rem;
    margin-top: 0.2rem;
}

.il-coffee__address strong {
    font-size: 0.95rem;
    color: var(--il-gray-900);
    display: block;
    margin-bottom: 0.25rem;
}

.il-coffee__address p {
    font-size: 0.85rem;
    color: var(--il-gray-500);
    margin: 0;
    line-height: 1.5;
}

.il-coffee__hours {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.85rem;
    color: var(--il-gray-500);
}

.il-coffee__hours i {
    color: var(--il-teknokent);
}

/* ---- Trust Badges ---- */
.il-trust {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.il-trust__item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background: var(--il-white);
    border-radius: 12px;
    border: 1px solid var(--il-gray-200);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--il-gray-700);
    transition: all 0.3s ease;
}

.il-trust__item:hover {
    border-color: var(--il-accent);
    transform: translateX(5px);
}

.il-trust__item i {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 180, 216, 0.1);
    border-radius: 8px;
    color: var(--il-accent);
    font-size: 0.9rem;
}

/* ============================================
   FORM WRAPPER & STYLES
   ============================================ */
.il-contact__form-wrapper {
    position: relative;
}

.il-form {
    background: var(--il-white);
    border-radius: 24px;
    padding: 2.5rem;
    border: 1px solid var(--il-gray-200);
    box-shadow: 
        0 25px 60px rgba(10, 22, 40, 0.08),
        0 0 0 1px rgba(255, 255, 255, 0.5) inset;
}

.il-form__header {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--il-gray-200);
}

.il-form__status {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--il-teknokent);
    margin-bottom: 1rem;
}

.il-form__dot {
    width: 8px;
    height: 8px;
    background: var(--il-teknokent);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

.il-form__title {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--il-gray-900);
    margin-bottom: 0.5rem;
}

.il-form__subtitle {
    font-size: 0.95rem;
    color: var(--il-gray-500);
    line-height: 1.6;
    margin: 0;
}

/* ---- Form Body ---- */
.il-form__body {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.il-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.il-form__group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.il-form__group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--il-gray-700);
}

.il-form__group label i {
    color: var(--il-accent);
    font-size: 0.8rem;
}

.il-form__group label .required {
    color: var(--il-error);
}

.il-form__group input,
.il-form__group textarea,
.il-form__group select {
    width: 100%;
    padding: 1rem 1.25rem;
    background: var(--il-gray-100);
    border: 2px solid transparent;
    border-radius: 12px;
    font-size: 0.95rem;
    font-family: inherit;
    color: var(--il-gray-900);
    transition: all 0.3s ease;
}

.il-form__group input::placeholder,
.il-form__group textarea::placeholder {
    color: var(--il-gray-500);
}

.il-form__group input:focus,
.il-form__group textarea:focus,
.il-form__group select:focus {
    outline: none;
    border-color: var(--il-accent);
    background: var(--il-white);
    box-shadow: 0 0 0 4px rgba(0, 180, 216, 0.1);
}

.il-form__group textarea {
    resize: vertical;
    min-height: 120px;
}

/* ---- Custom Select ---- */
.il-select {
    position: relative;
}

.il-select select {
    appearance: none;
    cursor: pointer;
    padding-right: 3rem;
}

.il-select i {
    position: absolute;
    right: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--il-gray-500);
    pointer-events: none;
    transition: transform 0.3s ease;
}

.il-select select:focus + i {
    transform: translateY(-50%) rotate(180deg);
    color: var(--il-accent);
}

/* ---- File Upload (Drag & Drop) ---- */
.il-upload {
    position: relative;
    border: 2px dashed var(--il-gray-300);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: var(--il-gray-100);
}

.il-upload:hover,
.il-upload.dragover {
    border-color: var(--il-accent);
    background: rgba(0, 180, 216, 0.05);
}

.il-upload.dragover {
    transform: scale(1.02);
}

.il-upload__content {
    pointer-events: none;
}

.il-upload__icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, rgba(0, 180, 216, 0.15) 0%, rgba(108, 99, 255, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.il-upload__icon i {
    font-size: 1.75rem;
    color: var(--il-accent);
}

.il-upload__text {
    font-size: 0.95rem;
    color: var(--il-gray-700);
    margin-bottom: 0.5rem;
}

.il-upload__text span {
    color: var(--il-accent);
    font-weight: 600;
    text-decoration: underline;
}

.il-upload__hint {
    font-size: 0.8rem;
    color: var(--il-gray-500);
    margin: 0;
}

.il-upload__preview {
    margin-top: 1rem;
    display: none;
}

.il-upload__preview.active {
    display: block;
}

.il-upload__file {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: var(--il-white);
    border-radius: 10px;
    border: 1px solid var(--il-gray-200);
}

.il-upload__file i {
    color: var(--il-accent);
}

.il-upload__file span {
    flex: 1;
    font-size: 0.85rem;
    color: var(--il-gray-700);
    text-align: left;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.il-upload__file button {
    background: none;
    border: none;
    color: var(--il-error);
    cursor: pointer;
    padding: 0.25rem;
    font-size: 0.9rem;
    transition: transform 0.2s ease;
}

.il-upload__file button:hover {
    transform: scale(1.2);
}

/* ---- Checkbox ---- */
.il-form__checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.il-form__checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 0.1rem;
    accent-color: var(--il-accent);
    cursor: pointer;
}

.il-form__checkbox label {
    font-size: 0.85rem;
    color: var(--il-gray-500);
    line-height: 1.5;
    cursor: pointer;
}

.il-form__checkbox label a {
    color: var(--il-accent);
    font-weight: 600;
}

.il-form__checkbox label a:hover {
    text-decoration: underline;
}

/* ---- Submit Button ---- */
.il-form__submit {
    width: 100%;
    padding: 1.25rem 2rem;
    background: linear-gradient(135deg, var(--il-primary) 0%, var(--il-secondary) 100%);
    border: none;
    border-radius: 14px;
    color: var(--il-white);
    font-size: 1rem;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.il-form__submit::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--il-accent) 0%, var(--il-kosgeb) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.il-form__submit:hover::before {
    opacity: 1;
}

.il-form__submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 180, 216, 0.3);
}

.il-form__submit-text,
.il-form__submit-loading {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.il-form__submit-loading {
    display: none;
}

.il-form__submit.loading .il-form__submit-text {
    display: none;
}

.il-form__submit.loading .il-form__submit-loading {
    display: flex;
}

/* ---- Success Message ---- */
.il-form__success {
    display: none;
    text-align: center;
    padding: 2rem;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 16px;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.il-form__success.active {
    display: block;
    animation: successPop 0.5s ease;
}

@keyframes successPop {
    0% { transform: scale(0.8); opacity: 0; }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); opacity: 1; }
}

.il-form__success i {
    font-size: 3rem;
    color: var(--il-success);
    margin-bottom: 1rem;
}

.il-form__success h4 {
    font-size: 1.25rem;
    color: var(--il-gray-900);
    margin-bottom: 0.5rem;
}

.il-form__success p {
    font-size: 0.9rem;
    color: var(--il-gray-500);
    margin: 0;
}

/* ============================================
   QUICK CONTACT BAR
   ============================================ */
.il-quick {
    background: var(--il-primary);
    padding: 3rem 0;
}

.il-quick__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.il-quick__item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.il-quick__item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.il-quick__icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 180, 216, 0.15);
    border-radius: 12px;
    color: var(--il-accent);
    font-size: 1.25rem;
}

.il-quick__icon--whatsapp {
    background: rgba(37, 211, 102, 0.15);
    color: #25D366;
}

.il-quick__icon--linkedin {
    background: rgba(0, 119, 181, 0.15);
    color: #0077B5;
}

.il-quick__content span {
    display: block;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.25rem;
}

.il-quick__content strong {
    font-size: 0.95rem;
    color: var(--il-white);
    font-weight: 600;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1200px) {
    .il-contact__grid {
        grid-template-columns: 350px 1fr;
        gap: 2rem;
    }
}

@media (max-width: 1024px) {
    .il-contact__grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .il-contact__sidebar {
        position: static;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
    
    .il-map {
        grid-column: 1 / -1;
    }
    
    .il-trust {
        flex-direction: row;
        flex-wrap: wrap;
        grid-column: 1 / -1;
    }
    
    .il-trust__item {
        flex: 1;
        min-width: 200px;
    }
    
    .il-quick__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .il-hero {
        min-height: 40vh;
        padding-top: 100px;
        padding-bottom: 40px;
    }

    .il-hero__wrapper {
        flex-direction: column;
        text-align: center;
    }

    .il-hero__content {
        max-width: 100%;
        text-align: center;
    }

    .il-hero__visual {
        width: 100%;
        min-height: 260px;
    }

    .il-hero__float-scene {
        width: 260px;
        height: 260px;
    }

    .il-hero__desc {
        margin: 0 auto;
    }
    
    .il-hero__title {
        font-size: 2.25rem;
    }
    
    .il-hero__desc {
        font-size: 1rem;
    }
    
    .il-contact {
        padding: 3rem 0 4rem;
    }
    
    .il-contact__sidebar {
        grid-template-columns: 1fr;
    }
    
    .il-coffee {
        order: 2;
    }
    
    .il-trust {
        order: 3;
        flex-direction: column;
    }
    
    .il-trust__item {
        min-width: auto;
    }
    
    .il-form {
        padding: 1.5rem;
        border-radius: 20px;
    }
    
    .il-form__row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .il-form__title {
        font-size: 1.5rem;
    }
    
    .il-quick__grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .il-hero__quick-stats {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }
}

@media (max-width: 480px) {
    .il-hero__title {
        font-size: 1.75rem;
    }
    
    .il-hero__badge {
        font-size: 0.65rem;
        padding: 0.5rem 1rem;
    }
    
    .il-map__container {
        height: 220px;
    }
    
    .il-form__group input,
    .il-form__group textarea,
    .il-form__group select {
        padding: 0.85rem 1rem;
        font-size: 16px; /* Prevents iOS zoom */
    }
    
    .il-upload {
        padding: 1.5rem 1rem;
    }
    
    .il-upload__icon {
        width: 50px;
        height: 50px;
    }
    
    .il-upload__icon i {
        font-size: 1.25rem;
    }
}

/* ============================================
   ENHANCED ANIMATIONS & EFFECTS
   ============================================ */

/* Hero title animated gradient */
.il-hero__title span {
    background: linear-gradient(135deg, var(--il-accent) 0%, #60a5fa 30%, var(--il-kosgeb) 60%, #f472b6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 300% auto;
    animation: ilGradientFlow 4s ease-in-out infinite;
}

/* Hero Quick Stats */
.il-hero__quick-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(20px);
    animation: ilStaggerIn 0.7s ease forwards 1s;
}

.il-hero__quick-stat {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.6rem 1.2rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.il-hero__quick-stat i {
    color: var(--il-accent);
    font-size: 0.8rem;
}

.il-hero__quick-stat:hover {
    background: rgba(0, 180, 216, 0.15);
    border-color: rgba(0, 180, 216, 0.3);
    color: var(--il-white);
    transform: translateY(-2px);
}

@keyframes ilGradientFlow {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 100% center; }
}

/* Hero badge pulse */
.il-hero__badge {
    animation: ilBadgePulse 3s ease-in-out infinite;
}

@keyframes ilBadgePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(0, 180, 216, 0.2); }
    50% { box-shadow: 0 0 20px 6px rgba(0, 180, 216, 0.12); }
}

/* Hero content staggered entrance */
.il-hero__badge {
    opacity: 0;
    transform: translateY(20px);
    animation: ilStaggerIn 0.6s ease forwards 0.4s, ilBadgePulse 3s ease-in-out infinite 1s;
}

.il-hero__title {
    opacity: 0;
    transform: translateY(25px);
    animation: ilStaggerIn 0.7s ease forwards 0.6s;
}

.il-hero__desc {
    opacity: 0;
    transform: translateY(25px);
    animation: ilStaggerIn 0.7s ease forwards 0.8s;
}

@keyframes ilStaggerIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Map container glow on hover */
.il-map {
    transition: all 0.4s ease;
}

.il-map:hover {
    box-shadow: 0 25px 60px rgba(0, 180, 216, 0.2);
    transform: translateY(-4px);
}

/* Map pin enhanced animation */
.il-map__pin {
    animation: pinBounce 2s ease-in-out infinite, pinGlow 3s ease-in-out infinite;
}

@keyframes pinGlow {
    0%, 100% { box-shadow: 0 4px 20px rgba(0, 180, 216, 0.4); }
    50% { box-shadow: 0 4px 35px rgba(0, 180, 216, 0.7), 0 0 60px rgba(0, 180, 216, 0.2); }
}

/* Coffee card hover lift */
.il-coffee {
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.il-coffee:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(10, 22, 40, 0.12);
    border-color: rgba(0, 180, 216, 0.2);
}

/* Coffee icon spin on hover */
.il-coffee:hover .il-coffee__icon {
    animation: iconBounce 0.6s ease;
}

@keyframes iconBounce {
    0% { transform: scale(1); }
    30% { transform: scale(1.2) rotate(-5deg); }
    60% { transform: scale(0.95) rotate(3deg); }
    100% { transform: scale(1) rotate(0deg); }
}

/* Trust badges staggered entrance */
.il-trust__item {
    position: relative;
    overflow: hidden;
}

.il-trust__item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 180, 216, 0.06), transparent);
    transition: left 0.6s ease;
}

.il-trust__item:hover::before {
    left: 200%;
}

/* Quick contact items - animated gradient border on hover */
.il-quick__item {
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.il-quick__item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--il-accent), var(--il-kosgeb));
    transition: width 0.4s ease;
    border-radius: 2px;
}

.il-quick__item:hover::after {
    width: 100%;
}

.il-quick__item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 180, 216, 0.15);
}

/* Quick icon pulse on hover */
.il-quick__item:hover .il-quick__icon {
    animation: quickPulse 0.5s ease;
}

@keyframes quickPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.15); }
    100% { transform: scale(1); }
}

/* Form input focus glow */
.il-form__group input:focus,
.il-form__group textarea:focus,
.il-form__group select:focus {
    box-shadow: 0 0 0 4px rgba(0, 180, 216, 0.12), 0 4px 20px rgba(0, 180, 216, 0.08);
}

/* Form group label - slide-in color on focus */
.il-form__group.focused label {
    color: var(--il-accent);
}

.il-form__group.focused label i {
    animation: quickPulse 0.4s ease;
}

/* Form card entrance */
.il-form {
    position: relative;
    overflow: hidden;
}

.il-form::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    height: 4px;
    background: linear-gradient(90deg, var(--il-accent), var(--il-kosgeb), #f472b6, var(--il-accent));
    background-size: 300% auto;
    animation: ilGradientFlow 4s ease-in-out infinite;
    border-radius: 24px 24px 0 0;
}

/* Submit button shimmer */
.il-form__submit {
    position: relative;
    overflow: hidden;
}

.il-form__submit::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    animation: submitShimmer 3s ease-in-out infinite;
    z-index: 1;
}

@keyframes submitShimmer {
    0% { left: -100%; }
    100% { left: 200%; }
}

/* Form title gradient */
.il-form__title {
    position: relative;
    display: inline-block;
}

.il-form__title::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--il-accent), var(--il-kosgeb));
    border-radius: 3px;
    animation: ilGradientFlow 3s ease-in-out infinite;
    background-size: 200% auto;
}

/* Online status dot enhanced glow */
.il-form__dot {
    box-shadow: 0 0 8px rgba(16, 185, 129, 0.5);
}

/* Floating particles in hero */
.il-hero__orb {
    animation: orbFloat 15s ease-in-out infinite, orbPulse 8s ease-in-out infinite;
}

@keyframes orbPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.5; }
}

/* Counter animation for quick stats */
.il-quick__grid {
    position: relative;
}

.il-quick__grid::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 180, 216, 0.15), transparent);
    transform: translateY(-50%);
    pointer-events: none;
}

/* ============================================
   HERO QUICK STATS
   ============================================ */
.il-hero__quick-stats {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.il-hero__quick-stat {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    padding: 0.5rem 1rem;
    background: rgba(0, 180, 216, 0.08);
    border: 1px solid rgba(0, 180, 216, 0.15);
    border-radius: 50px;
    transition: all 0.3s ease;
}

.il-hero__quick-stat:hover {
    background: rgba(0, 180, 216, 0.15);
    border-color: rgba(0, 180, 216, 0.3);
    color: var(--il-white);
}

.il-hero__quick-stat i {
    color: var(--il-accent);
    font-size: 0.75rem;
}

/* ============================================
   PRIVACY POLICY MODAL
   ============================================ */
.il-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 22, 40, 0.85);
    backdrop-filter: blur(8px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
    padding: 2rem;
}

.il-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.il-modal {
    background: var(--il-white);
    border-radius: 20px;
    max-width: 680px;
    width: 100%;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
    transform: translateY(30px) scale(0.95);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
}

.il-modal-overlay.active .il-modal {
    transform: translateY(0) scale(1);
}

.il-modal__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, var(--il-primary), var(--il-secondary));
    color: var(--il-white);
}

.il-modal__header h3 {
    font-size: 1.2rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin: 0;
    color: #ffffff;
}

.il-modal__header h3 i {
    color: var(--il-accent);
}

.il-modal__close {
    width: 36px;
    height: 36px;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    color: var(--il-white);
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: all 0.2s ease;
}

.il-modal__close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.il-modal__body {
    padding: 2rem;
    overflow-y: auto;
    flex: 1;
    color: var(--il-gray-700);
    font-size: 0.9rem;
    line-height: 1.7;
}

.il-modal__body h4 {
    color: var(--il-primary);
    font-size: 1rem;
    font-weight: 700;
    margin: 1.5rem 0 0.6rem;
}

.il-modal__body h4:first-child {
    margin-top: 0;
}

.il-modal__body ul {
    padding-left: 1.5rem;
    margin: 0.5rem 0;
}

.il-modal__body ul li {
    margin-bottom: 0.4rem;
    position: relative;
}

.il-modal__body ul li::marker {
    color: var(--il-accent);
}

.il-modal__body p {
    margin-bottom: 0.8rem;
}

.il-modal__footer {
    padding: 1.2rem 2rem;
    border-top: 1px solid var(--il-gray-200);
    display: flex;
    justify-content: flex-end;
    background: var(--il-gray-100);
}

.il-modal__accept {
    padding: 0.8rem 2rem;
    background: linear-gradient(135deg, var(--il-accent), var(--il-kosgeb));
    color: var(--il-white);
    border: none;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 180, 216, 0.3);
}

.il-modal__accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 180, 216, 0.4);
}

/* Shake animation for privacy validation */
.il-shake {
    animation: ilShake 0.5s ease;
}

@keyframes ilShake {
    0%, 100% { transform: translateX(0); }
    15% { transform: translateX(-8px); }
    30% { transform: translateX(8px); }
    45% { transform: translateX(-6px); }
    60% { transform: translateX(6px); }
    75% { transform: translateX(-3px); }
    90% { transform: translateX(3px); }
}

/* Privacy checkbox required highlight */
.il-form__checkbox.il-shake label {
    color: var(--il-error);
}

.il-form__checkbox.il-shake a {
    color: var(--il-error);
    text-decoration: underline;
}

/* ============================================
   RESPONSIVE - Hero Visual
   ============================================ */
@media (max-width: 992px) {
    .il-hero__wrapper {
        flex-direction: column;
        text-align: center;
    }

    .il-hero__content {
        max-width: 100%;
        text-align: center;
    }

    .il-hero__quick-stats {
        justify-content: center;
    }

    .il-hero__visual {
        width: 100%;
        min-height: 300px;
        margin-top: 1rem;
    }

    .il-hero__float-scene {
        width: 280px;
        height: 280px;
    }

    .il-hero__desc {
        margin: 0 auto;
    }
}

@media (max-width: 576px) {
    .il-hero__visual {
        min-height: 250px;
    }

    .il-hero__float-scene {
        width: 240px;
        height: 240px;
    }

    .il-float-card--main {
        width: 80px;
        height: 80px;
        border-radius: 18px;
    }

    .il-float-card__icon {
        font-size: 1.8rem;
    }

    .il-float-orbit__item {
        padding: 0.5rem 0.7rem;
        font-size: 0.6rem;
    }

    .il-hero__quick-stats {
        flex-direction: column;
        align-items: center;
    }

    .il-modal {
        max-height: 90vh;
        border-radius: 16px;
    }

    .il-modal__body {
        padding: 1.2rem;
    }

    .il-modal__header {
        padding: 1.2rem;
    }
}
