
        /* ===================================================================
           COMPLETE CONTACT SECTION - PRODUCTION READY
           Modern Card Design + Professional Form
           =================================================================== */
        
        /* * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        } */
        
        /* Add this at the beginning of contact section CSS */
.contact-section,
.contact-section *,
.contact-section *::before,
.contact-section *::after {
    box-sizing: border-box;
}

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        }
        
        /* Section Container */
        .contact-section {
            padding: 100px 0;
            background: #f8f9fa;
        }
        
        .contact-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .contact-wrapper {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: start;
        }
        
        /* ============================================
           LEFT SIDE - CONTACT INFO CARDS
           ============================================ */
        
        .contact-left {
            padding-right: 40px;
        }
        
        .contact-header h2 {
            font-size: clamp(2.5rem, 5vw, 4rem);
            color: #2c3e50;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 10px;
        }
        
        .contact-header .highlight {
            color: #1abc9c;
        }
        
        .contact-intro {
            margin-top: 20px;
            margin-bottom: 50px;
        }
        
        .intro-title {
            font-size: 1.15rem;
            color: #2c3e50;
            font-weight: 600;
            margin-bottom: 10px;
        }
        
        .intro-text {
            font-size: 1rem;
            color: #666;
            line-height: 1.7;
        }
        
        /* Contact Cards */
        .contact-cards {
            display: flex;
            flex-direction: column;
            gap: 20px;
            margin-bottom: 40px;
        }
        
        .contact-card {
            background: #ffffff;
            border-radius: 16px;
            padding: 25px;
            display: flex;
            align-items: flex-start;
            gap: 20px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
            border: 2px solid transparent;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }
        
        .contact-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background: linear-gradient(135deg, #1abc9c, #79c57d);
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .contact-card:hover {
            transform: translateX(8px);
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
            border-color: rgba(26, 188, 156, 0.2);
        }
        
        .contact-card:hover::before {
            opacity: 1;
        }
        
        .card-icon {
            width: 60px;
            height: 60px;
            border-radius: 14px;
            background: linear-gradient(135deg, rgba(26, 188, 156, 0.1), rgba(121, 197, 125, 0.08));
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            transition: all 0.4s ease;
        }
        
        .contact-card:hover .card-icon {
            background: linear-gradient(135deg, #1abc9c, #16a085);
            transform: scale(1.1) rotate(5deg);
            box-shadow: 0 8px 20px rgba(26, 188, 156, 0.3);
        }
        
        .card-icon i {
            color: #1abc9c;
            font-size: 1.5rem;
            transition: all 0.3s ease;
        }
        
        .contact-card:hover .card-icon i {
            color: #ffffff;
        }
        
        .card-info {
            flex: 1;
            padding-top: 5px;
        }
        
        .card-label {
            font-size: 0.85rem;
            color: #1abc9c;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 8px;
        }
        
        .card-value {
            font-size: 1.05rem;
            color: #2c3e50;
            font-weight: 500;
            line-height: 1.6;
            margin: 0;
        }
        
        .card-value a {
            color: #2c3e50;
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s ease;
        }
        
        .card-value a:hover {
            color: #1abc9c;
        }
        
        /* Availability Badge */
        .availability-badge {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            padding: 12px 20px;
            background: linear-gradient(135deg, rgba(26, 188, 156, 0.1), rgba(121, 197, 125, 0.08));
            border-radius: 30px;
            border: 2px solid rgba(26, 188, 156, 0.2);
        }
        
        .availability-badge i {
            color: #1abc9c;
            font-size: 1.1rem;
        }
        
        .availability-badge span {
            font-size: 0.95rem;
            color: #2c3e50;
            font-weight: 600;
        }
        
        /* ============================================
           RIGHT SIDE - CONTACT FORM
           ============================================ */
        
        .contact-right {
            position: sticky;
            top: 100px;
        }
        
        .form-wrapper {
            background: #ffffff;
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
            border: 1px solid rgba(26, 188, 156, 0.1);
        }
        
        .form-title {
            font-size: 1.8rem;
            color: #1abc9c;
            font-weight: 700;
            margin-bottom: 30px;
        }
        
        .contact-form {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        
        .form-field {
            width: 100%;
        }
        
        .form-input,
        .form-select {
            width: 100%;
            padding: 15px 20px;
            border: 2px solid #e0e0e0;
            border-radius: 8px;
            font-size: 1rem;
            color: #333;
            font-family: inherit;
            transition: all 0.3s ease;
        }
        
        .form-input:focus,
        .form-select:focus {
            outline: none;
            border-color: #1abc9c;
            box-shadow: 0 0 0 3px rgba(26, 188, 156, 0.1);
        }
        
        .form-input::placeholder {
            color: #999;
        }
        
        /* Phone Group */
        .phone-group {
            display: grid;
            grid-template-columns: 100px 1fr;
            gap: 10px;
        }
        
        .form-select {
            cursor: pointer;
        }
        
        /* Checkbox */
        .checkbox-field {
            margin-top: 10px;
        }
        
        .checkbox-wrapper {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            cursor: pointer;
        }
        
        .checkbox-wrapper input[type="checkbox"] {
            position: absolute;
            opacity: 0;
        }
        
        .checkbox-custom {
            width: 20px;
            height: 20px;
            border: 2px solid #1abc9c;
            border-radius: 4px;
            flex-shrink: 0;
            position: relative;
            transition: all 0.3s ease;
        }
        
        .checkbox-wrapper input:checked ~ .checkbox-custom {
            background: linear-gradient(135deg, #1abc9c, #16a085);
            border-color: #1abc9c;
        }
        
        .checkbox-custom::after {
            content: '';
            position: absolute;
            display: none;
            left: 6px;
            top: 2px;
            width: 5px;
            height: 10px;
            border: solid white;
            border-width: 0 2px 2px 0;
            transform: rotate(45deg);
        }
        
        .checkbox-wrapper input:checked ~ .checkbox-custom::after {
            display: block;
        }
        
        .checkbox-label {
            font-size: 0.9rem;
            color: #666;
            line-height: 1.5;
            flex: 1;
        }
        
        /* Submit Button */
        .submit-btn {
            width: 100%;
            padding: 16px 32px;
            background: linear-gradient(135deg, #1abc9c, #16a085);
            color: #ffffff;
            border: none;
            border-radius: 8px;
            font-size: 1rem;
            font-weight: 700;
            letter-spacing: 1px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            transition: all 0.3s ease;
            box-shadow: 0 8px 20px rgba(26, 188, 156, 0.3);
        }
        
        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 30px rgba(26, 188, 156, 0.4);
        }
        
        .submit-btn:active {
            transform: translateY(-1px);
        }
        
        .submit-btn i {
            transition: transform 0.3s ease;
        }
        
        .submit-btn:hover i {
            transform: translateX(5px);
        }
        
        /* ============================================
           RESPONSIVE DESIGN
           ============================================ */
        
        @media (max-width: 1024px) {
            .contact-wrapper {
                gap: 60px;
            }
            
            .contact-left {
                padding-right: 20px;
            }
        }
        
        @media (max-width: 768px) {
            .contact-section {
                padding: 70px 0;
            }
            
            .contact-wrapper {
                grid-template-columns: 1fr;
                gap: 50px;
            }
            
            .contact-left {
                padding-right: 0;
            }
            
            .contact-right {
                position: static;
            }
            
            .form-wrapper {
                padding: 30px 25px;
            }
            
            .contact-header h2 {
                font-size: 2.5rem;
            }
            
            .phone-group {
                grid-template-columns: 90px 1fr;
            }
        }
        
        @media (max-width: 480px) {
            .contact-section {
                padding: 60px 0;
            }
            
            .contact-container {
                padding: 0 15px;
            }
            
            .form-wrapper {
                padding: 25px 20px;
            }
            
            .contact-header h2 {
                font-size: 2rem;
            }
            
            .contact-card {
                padding: 20px;
                gap: 15px;
            }
            
            .card-icon {
                width: 50px;
                height: 50px;
            }
            
            .card-icon i {
                font-size: 1.3rem;
            }
            
            .form-input,
            .form-select {
                padding: 14px 18px;
                font-size: 0.95rem;
            }
            
            .phone-group {
                grid-template-columns: 85px 1fr;
                gap: 8px;
            }
            
            .submit-btn {
                padding: 14px 24px;
            }
        }
  