 :root {
            --primary-blue: #0066CC;
            --accent-cyan: #00D4FF;
            --tech-dark: #0A1628;
            --pure-white: #FFFFFF;
            --energy-green: #00C896;
            --warm-sand: #F5E6D3;
            --gradient-ocean: linear-gradient(135deg, #0066CC 0%, #00D4FF 100%);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Inter', sans-serif;
            background: var(--tech-dark);
            color: var(--pure-white);
            overflow-x: hidden;
        }
        
        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            padding: 20px 5%;
            background: rgba(10, 22, 40, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            transition: all 0.3s ease;
        }
        
        nav.scrolled {
            padding: 15px 5%;
            box-shadow: 0 5px 20px rgba(0,0,0,0.3);
        }
        
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
        }
        
        .logo {
            margin-right: 10px;
            font-size: 28px;
            font-weight: 800;
            background: var(--gradient-ocean);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            letter-spacing: -1px;
        }
        
        .nav-menu {
            display: flex;
            gap: 35px;
            align-items: center;
        }
        
        .nav-link {
            color: var(--pure-white);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
            position: relative;
        }
        
        .nav-link:hover, .nav-link.active {
            color: var(--accent-cyan);
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent-cyan);
            transition: width 0.3s ease;
        }
        
        .nav-link:hover::after, .nav-link.active::after {
            width: 100%;
        }
        
        .cta-button {
            padding: 12px 25px;
            background: var(--gradient-ocean);
            border: none;
            border-radius: 30px;
            color: var(--pure-white);
            font-weight: 600;
            cursor: pointer;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(0,212,255,0.3);
        }
        
        /* Hero Section */
        .contact-hero {
            padding: 150px 5% 80px;
            background: linear-gradient(180deg, rgba(0,102,204,0.1) 0%, var(--tech-dark) 100%);
            text-align: center;
        }
        
        .hero-title {
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 800;
            margin-bottom: 20px;
            line-height: 1.2;
        }
        
        .gradient-text {
            background: linear-gradient(90deg, var(--accent-cyan), var(--energy-green));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .hero-subtitle {
            font-size: 1.3rem;
            color: #B8C5D6;
            max-width: 700px;
            margin: 0 auto;
        }
        
        /* Contact Main Section */
        .contact-main {
            padding: 100px 5%;
        }
        
        .contact-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
			justify-items: center;
        }
        
        /* Contact Form */
        .contact-form-section {
            background: rgba(255,255,255,0.03);
            border-radius: 30px;
            padding: 20px;
            border: 1px solid rgba(0,212,255,0.2);
            max-width: 86%;
        }
        
        .form-title {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 10px;
        }
        
        .form-subtitle {
            color: #B8C5D6;
            margin-bottom: 40px;
        }
        
        .contact-form {
           /* display: grid;*/
            gap: 25px;
        }
        
        .form-row {
           
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }
        
        .form-group {
			margin-top: 10px;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        
        .form-group.full-width {
            grid-column: 1 / -1;
        }
        
        .form-label {
            font-weight: 600;
            color: var(--pure-white);
            font-size: 0.95rem;
        }
        
        .required {
            color: var(--accent-cyan);
        }
        
        .form-input, .form-select, .form-textarea {
			margin-bottom: 10px;
            padding: 15px 20px;
            background: rgba(0,0,0,0.3);
            border: 1px solid rgba(0,212,255,0.3);
            border-radius: 10px;
            color: var(--pure-white);
            font-size: 1rem;
            transition: all 0.3s ease;
            font-family: 'Inter', sans-serif;
        }
        
        .form-input:focus, .form-select:focus, .form-textarea:focus {
            outline: none;
            border-color: var(--accent-cyan);
            box-shadow: 0 0 20px rgba(0,212,255,0.2);
            background: rgba(0,0,0,0.4);
        }
        
        .form-textarea {
            resize: vertical;
            min-height: 120px;
        }
        
        .form-select {
            cursor: pointer;
        }
        
        .form-select option {
            background: var(--tech-dark);
            color: var(--pure-white);
        }
        
        .checkbox-group {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
            margin-top: 10px;
        }
        
        .checkbox-item {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .checkbox-item input[type="checkbox"] {
            width: 20px;
            height: 20px;
            accent-color: var(--accent-cyan);
            cursor: pointer;
        }
        
        .checkbox-item label {
            cursor: pointer;
            color: #B8C5D6;
        }
        
        .submit-button {
            padding: 18px 40px;
            background: var(--gradient-ocean);
            border: none;
            border-radius: 50px;
            color: var(--pure-white);
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 20px;
			width: -webkit-fill-available;
        }
        
        .submit-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(0,212,255,0.4);
        }
        
        /* Success/Error Messages */
        .message-box {
            padding: 20px;
            border-radius: 10px;
            margin-bottom: 20px;
            animation: slideIn 0.5s ease;
        }
        
        .success-message {
            background: rgba(0,200,150,0.2);
            border: 1px solid var(--energy-green);
            color: var(--energy-green);
        }
        
        .error-message {
            background: rgba(255,107,107,0.2);
            border: 1px solid #FF6B6B;
            color: #FF6B6B;
        }
        
        @keyframes slideIn {
            from { opacity: 0; transform: translateY(-20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        /* Contact Info Section */
        .contact-info-section {
            padding: 10px;
            max-width: 90%;
        }
        
        .info-title {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 40px;
        }
        
        .info-cards {
            display: grid;
            gap: 30px;
        }
        
        .info-card {
            display: flex;
            gap: 20px;
            padding: 25px;
            background: rgba(255,255,255,0.03);
            border-radius: 20px;
            border: 1px solid rgba(0,212,255,0.2);
            transition: all 0.3s ease;
        }
        
        .info-card:hover {
            transform: translateX(10px);
            border-color: var(--accent-cyan);
            background: rgba(255,255,255,0.05);
        }
        
        .info-icon {
            width: 50px;
            height: 50px;
            background: var(--gradient-ocean);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            flex-shrink: 0;
        }
        
        .info-content {
            flex: 1;
        }
        
        .info-label {
            font-weight: 600;
            margin-bottom: 8px;
            color: var(--accent-cyan);
        }
        
        .info-value {
            color: #B8C5D6;
            line-height: 1.6;
        }
        
        .info-value a {
            color: var(--pure-white);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .info-value a:hover {
            color: var(--accent-cyan);
        }
        
        /* Office Locations */
        .offices-section {
            margin-top: 50px;
        }
        
        .offices-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 30px;
        }
        
        .offices-grid {
            display: grid;
            gap: 20px;
        }
        
        .office-card {
            padding: 20px;
            background: rgba(0,102,204,0.1);
            border-radius: 15px;
            border-left: 4px solid var(--accent-cyan);
        }
        
        .office-name {
            font-weight: 600;
            margin-bottom: 5px;
        }
        
        .office-address {
            color: #B8C5D6;
            font-size: 0.95rem;
        }
        
        /* Map Section */
        .map-section {
            padding: 100px 5%;
            background: linear-gradient(180deg, var(--tech-dark) 0%, #0F1E35 100%);
        }
        
        .section-title {
            text-align: center;
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 800;
            margin-bottom: 20px;
        }
        
        .section-subtitle {
            text-align: center;
            font-size: 1.2rem;
            color: #B8C5D6;
            margin-bottom: 60px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .map-container {
            max-width: 1400px;
          /*  margin: 0 auto;*/
            height: 500px;
         /* max-width: 90%;*/
            border-radius: 30px;
            overflow: hidden;
            border: 2px solid rgba(0,212,255,0.3);
            position: relative;
        }
        
        #contact-map {
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.3);
        }
        
        .map-legend {
            position: absolute;
            bottom: 30px;
            left: 30px;
            background: rgba(10, 22, 40, 0.95);
            backdrop-filter: blur(10px);
            padding: 20px;
            border-radius: 15px;
            border: 1px solid rgba(0,212,255,0.3);
            z-index: 500;
        }
        
        .legend-title {
            font-weight: 600;
            margin-bottom: 15px;
        }
        
        .legend-item {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 10px;
        }
        
        .legend-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
        }
        
        .legend-dot.office {
            background: var(--accent-cyan);
        }
        
        .legend-dot.project {
            background: var(--energy-green);
        }
        
        .legend-dot.planned {
            background: #FFC107;
        }
        
        /* FAQ Section */
        .faq-section {
            padding: 100px 5%;
        }
        
        .faq-container {
            max-width: 90%;
            margin: 0 auto;
        }
        
        .faq-item {
            margin-bottom: 20px;
            background: rgba(255,255,255,0.03);
            border-radius: 20px;
            border: 1px solid rgba(0,212,255,0.2);
            overflow: hidden;
            transition: all 0.3s ease;
        }
        
        .faq-item:hover {
            border-color: var(--accent-cyan);
        }
        
        .faq-question {
            padding: 25px 30px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            font-size: 1.1rem;
        }
        
        .faq-icon {
            font-size: 24px;
            transition: transform 0.3s ease;
        }
        
        .faq-item.active .faq-icon {
            transform: rotate(45deg);
        }
        
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }
        
        .faq-item.active .faq-answer {
            max-height: 500px;
        }
        
        .faq-answer-content {
            padding: 0 30px 25px;
            color: #B8C5D6;
            line-height: 1.6;
        }
        
        /* CTA Section */
        .contact-cta {
            padding: 100px 5%;
            text-align: center;
            background: linear-gradient(135deg, rgba(0,102,204,0.1), rgba(0,212,255,0.1));
        }
        
        .cta-title {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 20px;
        }
        
        .cta-subtitle {
            font-size: 1.2rem;
            color: #B8C5D6;
            margin-bottom: 40px;
        }
        
        .social-links {
            display: flex;
            gap: 20px;
            justify-content: center;
            margin-top: 40px;
        }
        
        .social-link {
            width: 50px;
            height: 50px;
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(0,212,255,0.3);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--pure-white);
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 24px;
        }
        
        .social-link:hover {
            background: var(--gradient-ocean);
			border:0px;
            border-color: transparent;
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,212,255,0.3);
        }
        
        /* Footer */
        footer {
            padding: 40px 5%;
            background: #050A15;
            text-align: center;
            border-top: 1px solid rgba(0,212,255,0.2);
        }
        
        /* Responsive */
        @media (max-width: 1024px) {
            .contact-container {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 768px) {
            .nav-menu {
                display: none;
            }
            
            .form-row {
                grid-template-columns: 1fr;
            }
            
            .checkbox-group {
                grid-template-columns: 1fr;
            }
            
            .map-legend {
                bottom: 10px;
                left: 10px;
                right: 10px;
            }}