
        /* Contact Section */
        .contact-section {
            padding: 80px 0;
            background: var(--dark);
            color: white;
            min-height: calc(100vh - 200px);
        }
        
        .contact-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: start;
        }
        
        .contact-info h2 {
            font-size: 32px;
            font-weight: 700;
            color: white;
            margin-bottom: 30px;
        }
        
        .company-info {
            margin-bottom: 40px;
        }
        
        .company-info h3 {
            font-size: 24px;
            font-weight: 600;
            color: white;
            margin-bottom: 15px;
        }
        
        .company-info p {
            color: rgba(255,255,255,0.8);
            line-height: 1.8;
            margin-bottom: 10px;
        }
        
        .contact-details {
            margin-bottom: 40px;
        }
        
        .contact-item {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 20px;
            padding: 15px;
            background: rgba(255,255,255,0.1);
            border-radius: 10px;
            transition: all 0.3s ease;
        }
        
        .contact-item:hover {
            background: rgba(255,255,255,0.15);
        }
        
        .contact-item i {
            color: var(--primary-light);
            font-size: 20px;
            width: 30px;
            text-align: center;
        }
        
        .contact-item div {
            flex: 1;
        }
        
        .contact-item h4 {
            font-weight: 600;
            margin-bottom: 5px;
        }
        
        .contact-item p {
            color: rgba(255,255,255,0.8);
            margin: 0;
        }
        
        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 30px;
        }
        
        .social-link {
            width: 50px;
            height: 50px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .social-link:hover {
            background: var(--primary-light);
            color: white;
            transform: translateY(-3px);
        }
        
        /* Map Section */
        .map-container {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 15px 40px rgba(0,0,0,0.3);
        }
        
        .map-embed {
            width: 100%;
            height: 400px;
            border: none;
            border-radius: 15px;
        }
        
        .map-placeholder {
            width: 100%;
            height: 400px;
            background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }
        
        .map-content {
            text-align: center;
            z-index: 2;
        }
        
        .map-icon {
            font-size: 48px;
            color: var(--primary);
            margin-bottom: 15px;
        }
        
        .map-text {
            color: var(--dark);
            font-weight: 500;
        }
        
        /* Footer */
        .footer {
            background: #0a0a0a;
            color: white;
            padding: 40px 0 20px;
            border-top: 1px solid rgba(255,255,255,0.1);
        }
        
        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            text-align: center;
        }
        
        .footer-links {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-bottom: 20px;
            flex-wrap: wrap;
        }
        
        .footer-links a {
            color: rgba(255,255,255,0.8);
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s ease;
        }
        
        .footer-links a:hover {
            color: white;
        }
        
        .footer-bottom {
            color: rgba(255,255,255,0.6);
            font-size: 14px;
        }
