        :root {
            --primary-blue: #0E4F75;
            --primary-blue-dark: #0A3A56;
            --primary-blue-light: #1A6A9C;
            --primary-green: #9DC530;
            --primary-green-dark: #7FA427;
            --primary-green-light: #B4D650;
            --dark: #0F172A;
            --gray-800: #334155;
            --gray-700: #475569;
            --gray-600: #64748B;
            --gray-500: #94A3B8;
            --gray-400: #CBD5E1;
            --gray-300: #E2E8F0;
            --gray-200: #F1F5F9;
            --gray-100: #F8FAFC;
            --white: #FFFFFF;
            --gradient-primary: linear-gradient(135deg, #0E4F75 0%, #1A6A9C 100%);
            --gradient-secondary: linear-gradient(135deg, #9DC530 0%, #B4D650 100%);
            --gradient-mixed: linear-gradient(135deg, #0E4F75 0%, #9DC530 100%);
            --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
            --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
            --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
            --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

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

        body {
            font-family: 'Inter', sans-serif;
            background: linear-gradient(135deg, #F8FAFC 0%, #E2E8F0 100%);
            min-height: 100vh;
         /*   padding: 40px 20px;*/
        }

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

        /* Header Section */
        .contact-header {
            text-align: center;
            margin-bottom: 60px;
            animation: fadeInDown 0.8s ease;
        }

        .contact-title {
            font-family: 'Poppins', sans-serif;
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 800;
            background: var(--gradient-mixed);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 20px;
        }

        .contact-subtitle {
            font-size: 1.25rem;
            color: var(--gray-600);
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.6;
        }

        /* Main Grid Layout */
        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 40px;
            margin-bottom: 60px;
        }

        /* Contact Info Section */
        .contact-info {
            background: white;
            border-radius: 20px;
            padding: 40px;
            box-shadow: var(--shadow-xl);
            animation: fadeInLeft 0.8s ease;
        }

        .info-title {
            font-family: 'Poppins', sans-serif;
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary-blue);
            margin-bottom: 20px;
        }

        .info-text {
            color: var(--gray-600);
            line-height: 1.6;
            margin-bottom: 30px;
        }

        .info-item {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 25px;
            padding: 15px;
            background: var(--gray-50);
            border-radius: 12px;
            transition: var(--transition);
        }

        .info-item:hover {
            background: linear-gradient(135deg, rgba(157, 197, 48, 0.05) 0%, rgba(14, 79, 117, 0.05) 100%);
            transform: translateX(5px);
        }

        .info-icon {
            width: 50px;
            height: 50px;
            background: var(--gradient-secondary);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-blue);
            font-size: 1.2rem;
            flex-shrink: 0;
        }

        .info-content {
            flex: 1;
        }

        .info-label {
            font-size: 0.9rem;
            color: var(--gray-500);
            margin-bottom: 4px;
        }

        .info-value {
            font-weight: 600;
            color: var(--dark);
            font-size: 1.05rem;
        }

        .info-value a {
            color: var(--primary-blue);
            text-decoration: none;
            transition: var(--transition);
        }

        .info-value a:hover {
            color: var(--primary-green);
        }

        /* Working Hours */
        .working-hours {
            margin-top: 30px;
            padding: 20px;
            background: var(--gradient-mixed);
            border-radius: 16px;
            color: white;
        }

        .hours-title {
            font-weight: 600;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .hours-list {
            list-style: none;
        }

        .hours-item {
            display: flex;
            justify-content: space-between;
            padding: 8px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .hours-item:last-child {
            border-bottom: none;
        }

        .day {
            font-weight: 500;
        }

        .time {
            opacity: 0.9;
        }

        /* Social Links */
        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 30px;
        }

        .social-link {
            width: 45px;
            height: 45px;
            background: var(--gradient-secondary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-blue);
            text-decoration: none;
            transition: var(--transition);
            box-shadow: var(--shadow-md);
        }

        .social-link:hover {
            transform: translateY(-3px) scale(1.1);
            box-shadow: var(--shadow-xl);
        }

        /* Form Section */
        .contact-form-wrapper {
            background: white;
            border-radius: 20px;
            padding: 40px;
            box-shadow: var(--shadow-xl);
            animation: fadeInRight 0.8s ease;
        }

        .form-title {
            font-family: 'Poppins', sans-serif;
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--primary-blue);
            margin-bottom: 10px;
        }

        .form-description {
            color: var(--gray-600);
            margin-bottom: 30px;
        }

        /* Progress Steps */
        .form-steps {
            display: flex;
            justify-content: space-between;
            margin-bottom: 40px;
            position: relative;
        }

        .form-steps::before {
            content: '';
            position: absolute;
            top: 20px;
            left: 0;
            right: 0;
            height: 2px;
            background: var(--gray-300);
            z-index: 0;
        }

        .step {
            display: flex;
            flex-direction: column;
            align-items: center;
            position: relative;
            z-index: 1;
            cursor: pointer;
        }

        .step-number {
            width: 40px;
            height: 40px;
            background: white;
            border: 2px solid var(--gray-300);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
            color: var(--gray-500);
            margin-bottom: 8px;
            transition: var(--transition);
        }

        .step.active .step-number {
            background: var(--gradient-secondary);
            border-color: transparent;
            color: var(--primary-blue);
            transform: scale(1.1);
        }

        .step.completed .step-number {
            background: var(--gradient-primary);
            border-color: transparent;
            color: white;
        }

        .step-label {
            font-size: 0.85rem;
            color: var(--gray-500);
            text-align: center;
        }

        .step.active .step-label {
            color: var(--primary-blue);
            font-weight: 600;
        }

        /* Form Panels */
        .form-panel {
            display: none;
            animation: fadeIn 0.5s ease;
        }

        .form-panel.active {
            display: block;
        }

        /* Form Groups */
        .form-row {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            margin-bottom: 20px;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group.full-width {
            grid-column: span 2;
        }

        .form-label {
            display: flex;
            align-items: center;
            gap: 8px;
            color: var(--gray-700);
            font-weight: 500;
            margin-bottom: 8px;
            font-size: 0.95rem;
        }

        .required {
            color: var(--primary-green);
        }

        .form-input,
        .form-select,
        .form-textarea {
            width: 100%;
            padding: 12px 16px;
            border: 2px solid var(--gray-300);
            border-radius: 12px;
            font-size: 1rem;
            transition: var(--transition);
            background: var(--gray-50);
            font-family: 'Inter', sans-serif;
        }

        .form-input:focus,
        .form-select:focus,
        .form-textarea:focus {
            outline: none;
            border-color: var(--primary-green);
            background: white;
            box-shadow: 0 0 0 4px rgba(157, 197, 48, 0.1);
        }

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

        .form-select {
            cursor: pointer;
        }

        /* Input with Icon */
        .input-with-icon {
            position: relative;
        }

        .input-icon {
            position: absolute;
            left: 16px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--gray-500);
        }

        .input-with-icon .form-input {
            padding-left: 45px;
        }

        /* Radio/Checkbox Groups */
        .radio-group,
        .checkbox-group {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
            margin-top: 10px;
        }

        .radio-option,
        .checkbox-option {
            display: flex;
            align-items: center;
            padding: 12px;
            background: var(--gray-50);
            border: 2px solid var(--gray-300);
            border-radius: 12px;
            cursor: pointer;
            transition: var(--transition);
        }

        .radio-option:hover,
        .checkbox-option:hover {
            border-color: var(--primary-green);
            background: white;
        }

        .radio-option input,
        .checkbox-option input {
            margin-right: 10px;
            cursor: pointer;
        }

        .radio-option input:checked + label,
        .checkbox-option input:checked + label {
            color: var(--primary-blue);
            font-weight: 600;
        }

        .radio-option:has(input:checked),
        .checkbox-option:has(input:checked) {
            background: linear-gradient(135deg, rgba(157, 197, 48, 0.1) 0%, rgba(14, 79, 117, 0.1) 100%);
            border-color: var(--primary-green);
        }

        /* File Upload */
        .file-upload {
            border: 2px dashed var(--gray-300);
            border-radius: 12px;
            padding: 30px;
            text-align: center;
            background: var(--gray-50);
            transition: var(--transition);
            cursor: pointer;
        }

        .file-upload:hover {
            border-color: var(--primary-green);
            background: white;
        }

        .file-upload-icon {
            font-size: 3rem;
            color: var(--gray-400);
            margin-bottom: 10px;
        }

        .file-upload-text {
            color: var(--gray-600);
            margin-bottom: 10px;
        }

        .file-upload-button {
            display: inline-block;
            padding: 8px 20px;
            background: var(--gradient-secondary);
            color: var(--primary-blue);
            border-radius: 20px;
            font-weight: 600;
            font-size: 0.9rem;
        }

        .file-upload input[type="file"] {
            display: none;
        }

        /* Error/Success Messages */
        .field-error {
            color: #EF4444;
            font-size: 0.85rem;
            margin-top: 5px;
            display: none;
        }

        .field-success {
            color: var(--primary-green);
            font-size: 0.85rem;
            margin-top: 5px;
            display: none;
        }

        .form-input.error,
        .form-select.error,
        .form-textarea.error {
            border-color: #EF4444;
        }

        .form-input.success,
        .form-select.success,
        .form-textarea.success {
            border-color: var(--primary-green);
        }

        /* Form Navigation */
        .form-navigation {
            display: flex;
            justify-content: space-between;
            margin-top: 30px;
            padding-top: 30px;
            border-top: 1px solid var(--gray-200);
        }

        .btn {
            padding: 14px 32px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1rem;
            border: none;
            cursor: pointer;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

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

        .btn-secondary:hover {
            background: var(--primary-blue);
            color: white;
        }

        .btn-primary {
            background: var(--gradient-secondary);
            color: var(--primary-blue);
            box-shadow: var(--shadow-lg);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-xl);
        }

        .btn-submit {
            background: var(--gradient-mixed);
            color: white;
            box-shadow: var(--shadow-lg);
        }

        .btn-submit:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-xl);
        }

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

        /* Success Modal */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.5);
            z-index: 1000;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }

        .modal.active {
            display: flex;
        }

        .modal-content {
            background: white;
            border-radius: 20px;
            padding: 40px;
            max-width: 500px;
            width: 100%;
            text-align: center;
            animation: scaleIn 0.3s ease;
        }

        @keyframes scaleIn {
            from {
                transform: scale(0.9);
                opacity: 0;
            }
            to {
                transform: scale(1);
                opacity: 1;
            }
        }

        .modal-icon {
            width: 80px;
            height: 80px;
            background: var(--gradient-secondary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 2rem;
            color: var(--primary-blue);
        }

        .modal-title {
            font-family: 'Poppins', sans-serif;
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--primary-blue);
            margin-bottom: 10px;
        }

        .modal-text {
            color: var(--gray-600);
            margin-bottom: 30px;
            line-height: 1.6;
        }

        /* Map Section */
        .map-section {
            background: white;
            border-radius: 20px;
            padding: 40px;
            box-shadow: var(--shadow-xl);
            margin-bottom: 40px;
        }

        .map-title {
            font-family: 'Poppins', sans-serif;
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--primary-blue);
            margin-bottom: 20px;
            text-align: center;
        }

        .map-container {
            width: 100%;
            height: 400px;
            border-radius: 16px;
            overflow: hidden;
            background: var(--gray-100);
            position: relative;
        }

        .map-placeholder {
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, rgba(157, 197, 48, 0.1) 0%, rgba(14, 79, 117, 0.1) 100%);
        }

        /* WhatsApp CTA */
        .whatsapp-cta {
            background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
            border-radius: 20px;
            padding: 30px;
            text-align: center;
            color: white;
            margin-top: 40px;
        }

        .whatsapp-cta-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .whatsapp-cta-text {
            margin-bottom: 20px;
            opacity: 0.95;
        }

        .whatsapp-button {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: white;
            color: #25D366;
            padding: 14px 32px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: var(--transition);
        }

        .whatsapp-button:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-xl);
        }

        /* Animations */
        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInLeft {
            from {
                opacity: 0;
                transform: translateX(-30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

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

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

            .form-group.full-width {
                grid-column: span 1;
            }
        }

        @media (max-width: 768px) {
            .contact-title {
                font-size: 2rem;
            }

            .radio-group,
            .checkbox-group {
                grid-template-columns: 1fr;
            }

            .form-steps {
                flex-wrap: wrap;
                gap: 20px;
            }

            .step-label {
                font-size: 0.75rem;
            }
        }

        @media (max-width: 480px) {
            body {
                padding: 20px 10px;
            }

            .contact-info,
            .contact-form-wrapper {
                padding: 25px;
            }

            .form-navigation {
                flex-direction: column;
                gap: 15px;
            }

            .btn {
                width: 100%;
                justify-content: center;
            }
        }