/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

:root {
    --primary: #1a7fb8;
    --primary-dark: #0d5a8a;
    --primary-light: #4da8d4;
    --text-dark: #1a3a5c;
    --text-medium: #2d4a66;
    --text-light: #5a7a9a;
    --text-muted: #8899aa;
    --bg-gradient-start: #e8f4fc;
    --bg-gradient-end: #b8dff5;
    --footer-bg: #1a3a5c;
    --white: #ffffff;
    --green-check: #4CAF50;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--white);
    color: var(--text-dark);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header */
.header {
    padding: 16px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--white);
    position: relative;
    z-index: 100;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo img {
    height: 50px;
    width: auto;
    padding: 10px 20px;
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.2);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05) translateY(-2px);
    background: rgba(255,255,255,0.2);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    border-color: rgba(255,255,255,0.3);
}

.services-btn {
    font-size: 14px;
    font-weight: 500;
    color: var(--primary);
    text-decoration: none;
    padding: 10px 24px;
    border: 2px solid var(--primary);
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.services-btn:hover {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(26, 127, 184, 0.3);
}

.contact-info {
    display: flex;
    gap: 32px;
    font-size: 14px;
    color: var(--text-dark);
}

.contact-info a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.2s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.contact-info a svg {
    color: var(--primary);
}

.contact-info a:hover {
    color: var(--primary);
}

/* Hero Section */
.hero {
    flex: 1;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #e3f2fd 0%, #90caf9 50%, #64b5f6 100%);
}

.owner-avatar {
    position: relative;
    width: 100px;
    height: 100px;
    margin-bottom: 20px;
    animation: fadeInDown 0.8s ease-out both;
}

.owner-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.owner-avatar:hover img {
    transform: scale(1.05);
}

.avatar-ring {
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    border: 2px solid var(--primary);
    opacity: 0.5;
    animation: pulse-ring 2s ease-out infinite;
}

@keyframes pulse-ring {
    0% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.2; }
    100% { transform: scale(1); opacity: 0.5; }
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23ffffff' fill-opacity='0.3' d='M0,192L48,197.3C96,203,192,213,288,229.3C384,245,480,267,576,250.7C672,235,768,181,864,181.3C960,181,1056,235,1152,234.7C1248,235,1344,181,1392,154.7L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E") no-repeat bottom center;
    background-size: cover;
    opacity: 0.5;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: 
        radial-gradient(circle at 80% 20%, rgba(255,255,255,0.4) 0%, transparent 50%),
        radial-gradient(circle at 60% 80%, rgba(100,181,246,0.3) 0%, transparent 40%);
    pointer-events: none;
}

.hero-container {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 40px 80px;
}

.hero-content {
    max-width: 520px;
    animation: fadeInRight 0.8s ease-out;
}

.main-headline {
    font-size: 44px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.subheadline {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 16px;
    line-height: 1.4;
}

.supporting-line {
    font-size: 15px;
    color: var(--text-medium);
    margin-bottom: 32px;
}

/* Value Section */
.value-section {
    margin-bottom: 8px;
}

.value-list {
    list-style: none;
    margin-bottom: 12px;
}

.value-list li {
    font-size: 15px;
    color: var(--text-dark);
    padding: 8px 0;
    padding-left: 32px;
    position: relative;
    opacity: 0;
    animation: fadeInUp 0.5s ease-out forwards;
}

.value-list li:nth-child(1) { animation-delay: 0.4s; }
.value-list li:nth-child(2) { animation-delay: 0.6s; }
.value-list li:nth-child(3) { animation-delay: 0.8s; }

.value-list li::before {
    content: "";
    width: 20px;
    height: 20px;
    background: var(--green-check);
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 10px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
}

.delivery-note {
    font-size: 13px;
    color: var(--text-medium);
    margin-top: 8px;
    padding-left: 4px;
}

.quote-line {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 24px;
    font-style: italic;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.5);
    border-left: 3px solid var(--primary);
    border-radius: 0 8px 8px 0;
    animation: fadeIn 1s ease-out 0.3s both;
}

/* Form Section */
.form-container {
    background: var(--white);
    border-radius: 16px;
    padding: 32px 36px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.12);
    animation: fadeInLeft 0.8s ease-out 0.2s both;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.form-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 60px rgba(0, 0, 0, 0.15);
}

.scarcity-line {
    font-size: 15px;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 24px;
    line-height: 1.5;
    font-weight: 400;
}

.scarcity-line strong {
    font-weight: 600;
}

.form-group {
    margin-bottom: 14px;
}

.form-group input {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #dde3ea;
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    background: var(--white);
    transition: all 0.3s ease;
    color: var(--text-dark);
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(26, 127, 184, 0.1);
    transform: scale(1.01);
}

.form-group input::placeholder {
    color: #9aa5b1;
}

.delivery-form-note {
    font-size: 13px;
    color: var(--text-muted);
    text-align: center;
    margin: 16px 0;
}

/* CTA Button */
.cta-button {
    width: 100%;
    padding: 16px 36px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(26, 127, 184, 0.3);
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 127, 184, 0.4);
}

.cta-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(26, 127, 184, 0.3);
}

/* Trust Line */
.trust-line {
    text-align: center;
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid #e8ecf0;
}

.trust-line .name {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-dark);
}

.trust-line .title {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 2px;
}

/* Footer */
.footer {
    background: var(--footer-bg);
    padding: 24px 40px;
    margin-top: auto;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-left {
    flex: 1;
}

.footer-qr {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.footer-qr img {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    background: white;
    padding: 5px;
    transition: transform 0.3s ease;
}

.footer-qr img:hover {
    transform: scale(1.1);
}

.footer-qr span {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-office {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 13px;
    line-height: 1.6;
}

.footer-office svg {
    color: #4CAF50;
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-office strong {
    color: var(--white);
    font-weight: 600;
    display: block;
    margin-bottom: 4px;
}

.footer-office span {
    color: rgba(255, 255, 255, 0.75);
}

.footer-right {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-end;
}

.footer-right a {
    color: var(--white);
    text-decoration: none;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: opacity 0.2s ease;
}

.footer-right a svg {
    color: #4da8d4;
}

.footer-right a:hover {
    opacity: 0.85;
}

/* Responsive Design - Tablet */
@media (max-width: 960px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px 24px 60px;
    }

    .hero-content {
        text-align: center;
        max-width: 100%;
    }

    .value-list {
        display: inline-block;
        text-align: left;
    }

    .main-headline {
        font-size: 36px;
    }

    .subheadline {
        font-size: 18px;
    }

    .form-container {
        max-width: 480px;
        margin: 0 auto;
    }

    .footer-content {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }

    .footer-right {
        align-items: center;
    }

    .footer-qr {
        order: -1;
    }

    .footer-qr img {
        width: 70px;
        height: 70px;
    }

    .owner-avatar {
        width: 80px;
        height: 80px;
        margin: 0 auto 20px;
    }
}

/* Responsive Design - Mobile */
@media (max-width: 600px) {
    .owner-avatar {
        width: 70px;
        height: 70px;
        margin: 0 auto 16px;
    }

    .header {
        flex-direction: column;
        align-items: center;
        gap: 14px;
        padding: 16px 20px;
    }

    .logo {
        order: 1;
    }

    .logo a {
        display: inline-block;
    }

    .logo img {
        height: 40px;
        padding: 8px 20px;
        background: rgba(255,255,255,0.12);
        border-radius: 12px;
        border: 1px solid rgba(255,255,255,0.25);
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    }

    .services-btn {
        order: 2;
        font-size: 13px;
        padding: 10px 28px;
        width: 100%;
        text-align: center;
        background: var(--primary);
        color: white;
        border-color: var(--primary);
    }

    .services-btn:hover {
        background: var(--primary-dark);
    }

    .contact-info {
        order: 3;
        width: 100%;
        display: flex;
        flex-direction: row;
        justify-content: center;
        gap: 20px;
        font-size: 12px;
        padding-top: 10px;
        border-top: 1px solid rgba(255,255,255,0.15);
    }

    .contact-info a {
        gap: 6px;
    }

    .contact-info a svg {
        width: 14px;
        height: 14px;
    }

    .hero-container {
        padding: 30px 20px 50px;
    }

    .main-headline {
        font-size: 28px;
    }

    .main-headline br {
        display: none;
    }

    .subheadline {
        font-size: 16px;
    }

    .subheadline br {
        display: none;
    }

    .form-container {
        padding: 24px 20px;
        border-radius: 12px;
    }

    .supporting-line {
        font-size: 14px;
    }

    .value-list li {
        font-size: 14px;
        padding: 6px 0;
        padding-left: 30px;
    }

    .value-list li::before {
        width: 18px;
        height: 18px;
        top: 8px;
    }

    .cta-button {
        padding: 14px 24px;
        font-size: 15px;
    }

    .footer {
        padding: 20px;
    }

    .footer-office {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .scarcity-line br {
        display: none;
    }
}
