/* === CONTACT PAGE STYLESHEET === */
    :root {
            --primary: #071c34;
            --primary-dark: #071c34;
            --secondary: #2d3748;
            --accent: #071c34;
            --text-primary: #1a202c;
            --text-secondary: #4a5568;
            --text-light: #718096;
            --bg-primary: #fafafa;
            --bg-card: #ffffff;
            --border: #e2e8f0;
            --error: #e53e3e;
            --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
            --bg-body: #f4f4f4;          /* Light background for the page */
            --card-bg: #071c34;          /* YOUR Dark Navy Blue */
            --accent-color: #E7F2FF;     /* YOUR Orange/Gold */
            --text-white: #ffffff;       /* White text */
            --text-grey: #cccccc;        /* Light Grey for readability on dark */
            --divider: #0eff01;
        }


        .contact-page-wrapper {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            background: var(--bg-primary);
            color: var(--text-primary);
            line-height: 1.6;
            min-height: 100vh; /* Takes full height of screen */
            width: 100%;
            display: flex;
         
            justify-content: center;
          
            position: relative;
            overflow: hidden; /* Keeps shapes inside */
        }

    
        .contact-page-wrapper::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background-image: 
                radial-gradient(circle at 20% 20%, rgba(16, 185, 129, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(52, 211, 153, 0.05) 0%, transparent 50%);
            pointer-events: none;
            z-index: 0;
        }

        /* === GEOMETRIC SHAPES === */
        .geometric-shapes {
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            pointer-events: none;
            z-index: 0;
        }

        .shape {
            position: absolute;
            opacity: 0.1;
            animation: float 20s ease-in-out infinite;
        }

        .shape:nth-child(1) {
            top: 10%; left: 10%; width: 60px; height: 60px;
            background: var(--primary); border-radius: 50%;
            animation-delay: -2s;
        }
        .shape:nth-child(2) {
            top: 60%; right: 15%; width: 40px; height: 40px;
            background: var(--accent); transform: rotate(45deg);
            animation-delay: -8s;
        }
        .shape:nth-child(3) {
            bottom: 20%; left: 20%; width: 80px; height: 80px;
            border: 3px solid var(--primary); border-radius: 50%;
            animation-delay: -14s;
        }

        @keyframes float {
            0%, 100% { transform: translate(0, 0) rotate(0deg); }
            50% { transform: translate(-20px, 20px) rotate(180deg); }
        }

        /* === FORM CARD === */
        .form-container {
            background: var(--bg-card);
            border-radius: 20px;
            box-shadow: var(--shadow-lg);
            padding: 48px;
            width: 100%;
            max-width: 600px;
            position: relative;
            z-index: 1; /* Ensures form sits above shapes */
        }

        /* Top colored border line */
        .form-container::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            border-radius: 20px 20px 0 0;
        }

        .form-header { text-align: center; margin-bottom: 40px; }
        
        .form-title {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 10px;
            color: var(--text-primary);
        }

        .form-subtitle { color: var(--text-secondary); font-size: 1rem; }

        .form-group { margin-bottom: 24px; position: relative; }

        label {
            display: block;
            font-weight: 500;
            margin-bottom: 8px;
            font-size: 0.95rem;
            color: var(--text-primary);
        }
        
        .required { color: var(--primary); margin-left: 4px; }

        /* INPUT STYLES */
        input, textarea, select {
            width: 100%;
            padding: 14px 16px;
            border: 2px solid var(--border);
            border-radius: 12px;
            font-size: 1rem;
            background: var(--bg-card);
            outline: none;
            transition: border-color 0.3s ease, box-shadow 0.3s ease;
            /* Fix for iOS zoom */
            font-size: 16px; 
        }

        input:focus, textarea:focus, select:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.1);
        }

        /* DYNAMIC PLACEHOLDER LOGIC */
        .input-wrapper { position: relative; }
        
        .dynamic-placeholder {
            position: absolute;
            left: 16px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--text-light);
            pointer-events: none;
            transition: 0.2s ease;
            background: var(--bg-card);
            padding: 0 4px;
        }

        /* Move placeholder up when focused or has text */
        input:focus + .dynamic-placeholder,
        input:not(:placeholder-shown) + .dynamic-placeholder {
            top: 0;
            left: 12px;
            font-size: 0.75rem;
            color: var(--primary);
            font-weight: 600;
        }

        textarea {
            min-height: 120px;
            resize: vertical;
        }

        /* BUTTON STYLES */
        .submit-btn {
            background: linear-gradient(135deg, var(--primary), var(--accent));
            color: white;
            border: none;
            padding: 16px;
            border-radius: 12px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            width: 100%;
            transition: transform 0.2s ease;
        }

        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
        }
         .contact-info-section {
            width: 100%;
            padding: 60px 20px;
            display: flex;
            justify-content: center;
        }

        .containerr {
            width: 100%;
            max-width: 1200px;
            display: grid;
            /* Responsive Grid: 3 columns */
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        /* --- THE PREMIUM CARD (DARK VERSION) --- */
        .premium-card {
            background: var(--card-bg);
            padding: 50px 30px;
            text-align: center;
            border-radius: 20px; /* Slight rounding like your original */
            position: relative;
            transition: all 0.4s ease;
            border: 1px solid transparent;
        }

        /* Hover Effect: Lift up slightly */
        .premium-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(7, 28, 52, 0.4); /* Shadow matches blue color */
            border-color: var(--accent-color); /* Orange border on hover */
        }

        /* --- THE ICON --- */
        .icon-box {
            margin-bottom: 25px;
            width: 70px;
            height: 70px;
            line-height: 70px;
            margin-left: auto;
            margin-right: auto;
            border-radius: 50%;
            border: 2px solid rgb(255, 255, 255); /* Subtle orange circle */
            transition: all 0.4s ease;
            background-color: var(--border);
            
        }

        .icon-box i {
            font-size: 28px;
            color: var(--card-bg); /* Orange Icon */
            transition: all 0.4s ease;
            
        }

        /* Icon Hover Animation */
        .premium-card:hover .icon-box {
            background-color: var(--accent-color);
            border-color: var(--accent-color);
        }

        .premium-card:hover .icon-box i {
            color: var(--card-bg); /* Icon turns white */
        }

        /* --- TYPOGRAPHY --- */
        .premium-card h2 {
            font-family: 'poppins', serif; /* Premium Font */
            color: var(--text-white);
            font-size: 1.4rem;
            font-weight: 700;
            text-transform: capitalize;
            letter-spacing: 1px;
            margin-bottom: 15px;
            position: relative;
            padding-bottom: 15px;
        }

        /* Orange Divider Line */
        .premium-card h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 40px;
            height: 2px;
            background-color: var(--divider);
            transition: width 0.4s ease;
        }

        .premium-card:hover h2::after {
            width: 80px; /* Line expands on hover */
        }

        .premium-card span {
            display: block; 
            font-size: 0.95rem;
            color: white; /* Light grey for better contrast on dark blue */
            font-weight: 400;
            line-height: 1.6;
        }

        /* === RESPONSIVE STYLES === */
        
        /* Tablet & Small Laptop */
        @media (max-width: 768px) {
            .form-container {
                padding: 32px 24px;
                max-width: 100%;
            }
        }

        /* Mobile Phones */
        @media (max-width: 480px) {
            .contact-page-wrapper {
                padding: 10px;
                align-items: flex-start; /* Move form to top on mobile */
                overflow-y: auto; /* Allow scrolling */
            }

            .form-container {
                padding: 24px 16px;
                margin-top: 20px; /* Space from top */
                border-radius: 16px;
            }

            .form-title { font-size: 1.75rem; }
            
            input, textarea, select { padding: 12px; }
            
            /* Hide floating shapes on very small screens to save performance/distraction */
            .shape { display: none; } 
        }
        @media (max-width: 991px) {
            .containerr {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        /* Mobile */
        @media (max-width: 600px) {
            .containerr {
                grid-template-columns: 1fr; /* One by one */
            }
            .page-header__inner h3{
                font-size: 40px;
            }
            .page-header__inner{
                padding: 80px 0px;
            }
        }


