* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary: #ffffff;
            --accent: #33879E;
            --headline: #7f9d7c;
            --text: #000000;
            --text-light: #666666;
            --border: #e0e0e0;
            --bg-light: #f8f8f8;
            --dark: #1d1d1b;
        }

        html, body {
            height: 100%;
        }

        body {
            background: var(--primary);
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            color: var(--text);
            line-height: 1.6;
            display: flex;
            flex-direction: column;
        }

        /* HEADER */
        header {
            padding: 1.5rem 2rem;
            background: var(--primary);
            border-bottom: 1px solid var(--border);
            position: sticky;
            top: 0;
            z-index: 100;
        }

        .header-wrapper {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo-container {
            width: 180px;
            display: flex;
            align-items: center;
        }

        .logo-text {
            font-size: 1.8rem;
            font-weight: 900;
            letter-spacing: 3px;
            color: var(--text);
            line-height: 1;
        }

        .logo-text .accent {
            color: var(--accent);
        }

        .contact-info {
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            gap: 0.25rem;
        }

        .contact-phone {
            color: var(--accent);
            font-weight: 900;
            font-size: 1.1rem;
        }

        .contact-email {
            color: var(--text-light);
            font-size: 0.85rem;
        }

        /* HERO BANNER */
        .hero-banner {
            background: linear-gradient(135deg, #f8f8f8 0%, #fff 100%);
            padding: 6rem 2rem;
            border-bottom: 3px solid var(--accent);
        }

        .hero-wrapper {
            max-width: 1400px;
            margin: 0 auto;
        }

        .hero-title {
            font-size: 3.5rem;
            font-weight: 900;
            line-height: 1.1;
            margin-bottom: 1rem;
            letter-spacing: -2px;
            opacity: 0;
        }

        .hero-title span {
            color: var(--accent);
        }

        .hero-subtitle {
            font-size: 1.2rem;
            color: var(--text-light);
            max-width: 600px;
            opacity: 0;
        }

        /* HERO BANNER - FULLWIDTH */
        .hero-banner {
            width: 100%;
            min-height: 400px;
            background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
            background-size: cover;
            background-position: center;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            padding: 30px 0;
        }

        .hero-banner::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.4);
            z-index: 1;
        }

        .hero-banner-img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center center;
            z-index: 0;
            display: block;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            color: var(--primary);
            max-width: 800px;
            padding: 30px 2rem;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        .hero-title {
            font-size: 4rem;
            font-weight: 900;
            line-height: 1.1;
            margin-bottom: 1rem;
            letter-spacing: -2px;
            opacity: 0;
        }

        .hero-title span {
            color: var(--accent);
            display: block;
        }

        .hero-subtitle {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.9);
            max-width: 600px;
            margin: 0 auto;
            opacity: 0;
            line-height: 1.8;
        }

        /* MAIN */
        main {
            flex: 1;
            padding: 6rem 2rem;
            background: var(--primary);
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
        }

        /* FORM SECTION */
        .form-wrapper {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            margin-bottom: 6rem;
            align-items: start;
        }

        .form-container {
            background: var(--bg-light);
            padding: 3rem;
            border-radius: 8px;
            border: 2px solid var(--border);
        }

        .form-header {
            margin-bottom: 2.5rem;
        }

        .form-badge {
            display: inline-block;
            background: var(--accent);
            color: var(--primary);
            padding: 0.5rem 1.2rem;
            border-radius: 4px;
            font-size: 0.75rem;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 1rem;
        }

        .form-header h2 {
            font-size: 2rem;
            font-weight: 900;
            margin-bottom: 0.5rem;
            color: var(--headline);
        }

        .form-header p {
            color: var(--text-light);
            font-size: 0.95rem;
        }

        #message {
            margin-bottom: 2rem;
        }

        .form-group {
            margin-bottom: 1.8rem;
        }

        label {
            display: block;
            margin-bottom: 0.6rem;
            font-weight: 700;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--text);
        }

        input[type="text"],
        input[type="email"],
        input[type="tel"],
        input[type="number"],
        input[type="file"],
        select,
        textarea {
            width: 100%;
            padding: 0.95rem;
            background: var(--primary);
            border: 2px solid var(--border);
            border-radius: 6px;
            color: var(--text);
            font-family: inherit;
            font-size: 0.95rem;
            transition: all 0.3s;
        }

        input[type="text"]:focus,
        input[type="email"]:focus,
        input[type="tel"]:focus,
        input[type="number"]:focus,
        input[type="file"]:focus,
        select:focus,
        textarea:focus {
            outline: none;
            border-color: var(--accent);
            box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
            background: var(--primary);
        }

        textarea {
            resize: vertical;
            min-height: 120px;
            font-family: inherit;
        }

        select {
            appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2333879E' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 1rem center;
            padding-right: 2.5rem;
            cursor: pointer;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
        }

        .form-row.full {
            grid-template-columns: 1fr;
        }

        /* SIDE IMAGE */
        .side-image {
            display: flex;
            flex-direction: column;
            gap: 60px;
        }

        .image-box {
            background: transparent;
            border-radius: 0px;
            overflow: visible;
            border: none;
            max-width: 600px;
            width: 100%;
            height: auto;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 6rem;
            opacity: 0;
            margin: 0 auto;
        }

        .image-box:nth-child(2),
        .image-box:nth-child(3) {
            max-width: 500px;
        }

        .image-box img {
            width: 100%;
            height: auto;
            object-fit: contain;
        }

        .image-box.tuntra {
            background: linear-gradient(135deg, #f0f0f0 0%, #e8e8e8 100%);
        }

        /* BUTTON */
        .btn-submit {
            background: var(--accent);
            color: var(--primary);
            padding: 1.1rem 2.5rem;
            border: none;
            border-radius: 6px;
            font-size: 0.95rem;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            cursor: pointer;
            transition: all 0.3s;
            width: 100%;
            margin-top: 2rem;
        }

        .btn-submit:hover {
            background: #1f5f6f;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(51, 135, 158, 0.3);
        }

        .btn-submit:active {
            transform: translateY(0);
        }

        .btn-submit:disabled {
            opacity: 0.6;
            cursor: not-allowed;
        }

        /* MESSAGES */
        .message {
            padding: 1.2rem;
            margin-bottom: 1.5rem;
            border-radius: 6px;
            display: none;
            border-left: 4px solid;
            font-weight: 600;
            animation: slideIn 0.4s ease-out;
        }

        @keyframes slideIn {
            from {
                opacity: 0;
                transform: translateY(-10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .message.success {
            display: block;
            background: #f0fdf4;
            border-color: #22c55e;
            color: #166534;
        }

        .message.error {
            display: block;
            background: #fef2f2;
            border-color: #ef4444;
            color: #991b1b;
        }


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

        @media (max-width: 768px) {
            .form-row {
                grid-template-columns: 1fr;
            }
            .hero-banner {
                min-height: 350px;
                padding: 20px 0;
            }
            .hero-content {
                padding: 20px 1.5rem;
            }
            .hero-title {
                font-size: 2rem;
                margin-bottom: 0.5rem;
            }
            .hero-subtitle {
                font-size: 1rem;
            }
            .header-wrapper {
                flex-direction: column;
                gap: 1rem;
            }
        }

        /* FOOTER */
        footer {
            background: var(--dark);
            color: var(--primary);
            padding: 3rem 2rem;
            margin-top: auto;
        }

        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
        }

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

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-bottom: 1.5rem;
        }

        .footer-links a {
            color: var(--primary);
            text-decoration: none;
            font-size: 0.85rem;
            transition: color 0.3s;
        }

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

        .footer-text {
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.85rem;
            line-height: 1.6;
        }

        /* LOADING SPINNER */
        .spinner {
            display: inline-block;
            width: 16px;
            height: 16px;
            border: 2px solid rgba(51, 135, 158, 0.3);
            border-top-color: var(--primary);
            border-radius: 50%;
            animation: spin 0.8s linear infinite;
            margin-right: 0.5rem;
            vertical-align: middle;
        }

        @keyframes spin {
            to { transform: rotate(360deg); }
        }

        /* REQUIRED */
        .required {
            color: var(--accent);
        }