
        :root {
            --primary: #FF6B6B;
            --secondary: #4ECDC4;
            --dark: #292F36;
            --light: #F7FFF7;
            --accent: #FFE66D;
            --gray: #6C757D;
            --dark-blue: #1A535C;
            --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            color: var(--dark);
            background-color: #f9f9f9;
            overflow-x: hidden;
            line-height: 1.7;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        
        h1, h2, h3, h4 {
            font-family: 'Playfair Display', serif;
            font-weight: 700;
            line-height: 1.3;
        }
        
        /* Main Content Wrapper */
        .main-content {
            flex: 1;
            width: 100%;
        }
    
        /* Hero Section */
        .about-hero {
            height: 600px;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            background: linear-gradient(135deg, rgba(41, 47, 54, 0.9), rgba(41, 47, 54, 0.7)), url('https://png.pngtree.com/thumb_back/fh260/background/20220906/pngtree-business-concept-contact-us-on-wall-background-project-doodle-concept-photo-image_25335972.jpg') no-repeat center center/cover;
            color: white;
        }
        
        .about-hero-content {
            max-width: 800px;
            position: relative;
            z-index: 2;
            padding: 0 20px;
        }
        
        .about-hero h1 {
            font-size: 48px;
            margin-bottom: 25px;
            line-height: 1.2;
            color: white;
        }
        
        .about-hero p {
            font-size: 18px;
            margin-bottom: 40px;
            opacity: 0.9;
            color: rgba(255, 255, 255, 0.9);
        }
        
        .breadcrumb {
            display: flex;
            align-items: center;
            margin-bottom: 30px;
            color: rgba(255, 255, 255, 0.8);
        }
        
        .breadcrumb a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: var(--transition);
        }
        
        .breadcrumb a:hover {
            color: var(--primary);
        }
        
        .breadcrumb i {
            margin: 0 10px;
            font-size: 12px;
        }
        
        .hero-contact-info {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
        }
        
        .contact-method {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 16px;
        }
        
        .contact-method i {
            color: var(--primary);
            font-size: 20px;
        }
        
        @media (max-width: 768px) {
            .about-hero {
                height: 500px;
                text-align: center;
            }
            
            .about-hero h1 {
                font-size: 36px;
            }
            
            .breadcrumb {
                justify-content: center;
            }
            
            .hero-contact-info {
                flex-direction: column;
                align-items: center;
                gap: 15px;
            }
        }
        
        /* About Content Section */
        .about-content {
            padding: 100px 0;
        }
        
        .about-container {
            display: flex;
            align-items: center;
            gap: 50px;
        }
        
        .about-image {
            flex: 1;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--shadow);
        }
        
        .about-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: var(--transition);
        }
        
        .about-image:hover img {
            transform: scale(1.05);
        }
        
        .about-text {
            flex: 1;
        }
        
        .about-text h2 {
            font-size: 36px;
            margin-bottom: 20px;
            color: var(--dark);
        }
        
        .about-text h3 {
            font-size: 24px;
            margin: 30px 0 15px;
            color: var(--dark-blue);
        }
        
        .about-text p {
            margin-bottom: 15px;
            color: var(--gray);
        }
        
        .about-features {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            margin-top: 30px;
        }
        
        .feature-item {
            display: flex;
            align-items: flex-start;
            gap: 15px;
        }
        
        .feature-icon {
            background: var(--primary);
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            flex-shrink: 0;
        }
        
        .feature-text h4 {
            font-size: 18px;
            margin-bottom: 5px;
            color: var(--dark);
        }
        
        .feature-text p {
            font-size: 14px;
            color: var(--gray);
            margin: 0;
        }
        
        @keyframes float {
            0% {
                transform: translateY(0) rotate(0deg);
            }
            50% {
                transform: translateY(-50px) rotate(180deg);
            }
            100% {
                transform: translateY(0) rotate(360deg);
            }
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .mission-section {
                padding: 80px 0;
            }
            
            .section-title h2 {
                font-size: 2.2rem;
            }
            
            .mission-cards {
                grid-template-columns: 1fr;
            }
        }

        /* Floating shapes decoration */
        .mission-card .shape {
            position: absolute;
            opacity: 0.1;
            z-index: -1;
            transition: all 1s ease;
        }

        .mission-card:hover .shape {
            opacity: 0.2;
        }

        .mission-card .shape-1 {
            top: 20px;
            left: 20px;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: #FF6B6B;
        }

        .mission-card .shape-2 {
            bottom: 30px;
            right: 30px;
            width: 30px;
            height: 30px;
            border-radius: 5px;
            background: #4ECDC4;
            transform: rotate(45deg);
        }

        /* Responsive adjustments */
        @media (max-width: 1200px) {
            .mission-cards {
                gap: 30px;
            }
        }

        @media (max-width: 992px) {
            .mission-section {
                padding: 100px 0;
            }
            
            .section-title h2 {
                font-size: 2.8rem;
            }
            
            .mission-cards {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .section-title h2 {
                font-size: 2.4rem;
            }
            
            .section-title p {
                font-size: 1.1rem;
            }
            
            .mission-cards {
                grid-template-columns: 1fr;
                max-width: 500px;
                margin: 0 auto;
            }
            
            .mission-card {
                padding: 40px 30px;
            }
        }
        
        /* Team Section - Premium Styling */
        .team-section {
            padding: 120px 0;
            background: linear-gradient(135deg, #f8f9ff 0%, #f0f4ff 100%);
            position: relative;
            overflow: hidden;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 2;
        }

        .section-header {
            text-align: center;
            margin-bottom: 80px;
        }

        .title-badge {
            display: inline-block;
            background: linear-gradient(90deg, #FF6B6B, #EF476F);
            color: white;
            padding: 8px 20px;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 600;
            letter-spacing: 1px;
            margin-bottom: 20px;
            box-shadow: 0 4px 15px rgba(239, 71, 111, 0.3);
        }

        .section-title {
            font-size: 2.8rem;
            font-weight: 800;
            background: linear-gradient(90deg, #2d3748, #4a5568);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .section-subtitle {
            font-size: 1.2rem;
            color: #4a5568;
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.8;
            font-weight: 400;
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }

        .team-card {
            perspective: 1000px;
            height: 380px;
        }

        .card-inner {
            position: relative;
            width: 100%;
            height: 100%;
            transition: transform 0.8s;
            transform-style: preserve-3d;
        }

        .team-card:hover .card-inner {
            transform: rotateY(180deg);
        }

        .card-front, .card-back {
            position: absolute;
            width: 100%;
            height: 100%;
            backface-visibility: hidden;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
        }

        .card-front {
            background: white;
            display: flex;
            flex-direction: column;
        }

        .card-back {
            background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
            transform: rotateY(180deg);
            padding: 30px;
            display: flex;
            align-items: center;
        }

        .member-image {
            height: 400px;
            position: relative;
            overflow: hidden;
        }

        .member-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .image-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 50%);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .team-card:hover .member-image img {
            transform: scale(1.05);
        }

        .team-card:hover .image-overlay {
            opacity: 1;
        }

        .member-basic-info {
            padding: 25px;
            text-align: center;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .member-basic-info h3 {
            font-size: 1.5rem;
            margin-bottom: 5px;
            color: #2d3748;
        }

        .member-basic-info p {
            color: #4ECDC4;
            font-weight: 600;
            font-size: 0.95rem;
        }

        .member-details {
            color: white;
        }

        .member-details p {
            font-size: 1rem;
            line-height: 1.8;
            margin-bottom: 25px;
        }

        .member-social {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-bottom: 25px;
        }

        .member-social a {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255,255,255,0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 16px;
            transition: all 0.3s ease;
        }

        .member-social a:hover {
            background: #EF476F;
            transform: translateY(-3px);
        }

        .profile-btn {
            display: inline-block;
            padding: 12px 30px;
            background: #EF476F;
            color: white;
            text-decoration: none;
            border-radius: 30px;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .profile-btn:hover {
            background: #FF6B6B;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(239, 71, 111, 0.3);
        }

        .floating-shapes {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: 1;
        }

        .shape {
            position: absolute;
            opacity: 0.1;
            animation: float 15s infinite linear;
        }

        .shape.triangle {
            width: 100px;
            height: 100px;
            background: #EF476F;
            clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
            top: 20%;
            left: 10%;
            animation-delay: 0s;
        }

        .shape.circle {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            background: #4ECDC4;
            top: 60%;
            left: 80%;
            animation-delay: 2s;
        }

        .shape.square {
            width: 80px;
            height: 80px;
            background: #FFD166;
            top: 30%;
            left: 70%;
            animation-delay: 4s;
        }

        @keyframes float {
            0% {
                transform: translateY(0) rotate(0deg);
            }
            50% {
                transform: translateY(-50px) rotate(180deg);
            }
            100% {
                transform: translateY(0) rotate(360deg);
            }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .team-section {
                padding: 80px 0;
            }
            
            .section-title {
                font-size: 2.2rem;
            }
            
            .team-grid {
                grid-template-columns: 1fr 1fr;
            }
            
            .team-card {
                height: 320px;
            }
        }

        @media (max-width: 480px) {
            .team-grid {
                grid-template-columns: 1fr;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .section-subtitle {
                font-size: 1rem;
            }
        }
        
        /* CTA Section */
        .cta-section {
            background: var(--gray);
            padding: 80px 0;
            text-align: center;
            color: white;
        }
        
        .cta-container h2 {
            font-size: 36px;
            margin-bottom: 20px;
            color: white;
        }
        
        .cta-container p {
            max-width: 700px;
            margin: 0 auto 30px;
            font-size: 18px;
            opacity: 0.9;
        }
        
        .cta-btns {
            display: flex;
            justify-content: center;
            gap: 20px;
        }
        
        /* Footer */
        footer {
            background: var(--dark);
            color: white;
            padding: 80px 0 30px;
            position: relative;
            width: 100%;
            margin-top: auto;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 50px;
        }
        
        .footer-col h3 {
            font-size: 20px;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 10px;
            color: white;
        }
        
        .footer-col h3:after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 50px;
            height: 2px;
            background: var(--primary);
        }
        
        .footer-col p {
            margin-bottom: 20px;
            opacity: 0.8;
            color: rgba(255, 255, 255, 0.8);
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 15px;
        }
        
        .footer-links a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: var(--transition);
            display: inline-block;
        }
        
        .footer-links a:hover {
            color: var(--primary);
            transform: translateX(5px);
        }
        
        .footer-newsletter input {
            width: 100%;
            padding: 12px;
            border: none;
            border-radius: 5px;
            margin-bottom: 15px;
            font-family: 'Poppins', sans-serif;
            color: var(--dark);
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .footer-bottom p {
            opacity: 0.7;
            font-size: 14px;
            color: rgba(255, 255, 255, 0.7);
        }
        
        .contact-social {
            display: flex;
            gap: 15px;
        }

        .social-icon {
            color: white;
            font-size: 18px;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .social-icon:hover {
            color: var(--primary);
        }
        
        /* Floating Buttons */
        .float-btn {
            position: fixed;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            color: white;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            z-index: 999;
            transition: var(--transition);
        }
        
        .float-btn:hover {
            transform: scale(1.1);
        }
        
        .whatsapp-float {
            background: #25D366;
            bottom: 30px;
            right: 30px;
        }
        
        .instagram-float {
            background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
            bottom: 100px;
            right: 30px;
        }
        
        .call-float {
            background: var(--primary);
            bottom: 170px;
            right: 30px;
        }
        
        .contact-social {
            display: flex;
            gap: 15px;
        }
        
        .contact-social a {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: #f1f1f1;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--dark);
            transition: var(--transition);
        }
        
        .contact-social a:hover {
            background: var(--primary);
            color: white;
            transform: translateY(-5px);
        }
        
        /* Responsive Styles */
        @media (max-width: 1200px) {
            .about-hero h1 {
                font-size: 42px;
            }
            
            .mission-cards {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 992px) {
            section {
                padding: 80px 0;
            }
            
            .about-hero {
                min-height: 400px;
            }
            
            .about-container {
                flex-direction: column;
            }
            
            .about-image, .about-text {
                flex: none;
                width: 100%;
            }
            
            .section-title h2 {
                font-size: 36px;
            }
        }
        
        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
            }
            
            .nav-links {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 80px);
                background: white;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                transition: all 0.5s ease;
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            }
            
            .nav-links.active {
                left: 0;
            }
            
            .nav-links li {
                margin: 15px 0;
            }
            
            .nav-links a {
                color: var(--dark);
                font-size: 18px;
            }
            
            .nav-icons {
                margin-left: 0;
            }
            
            .about-hero {
                text-align: center;
                min-height: 350px;
            }
            
            .about-hero h1 {
                font-size: 36px;
            }
            
            .section-title h2 {
                font-size: 32px;
            }
            
            .mission-cards {
                grid-template-columns: 1fr;
            }
            
            .cta-btns {
                flex-direction: column;
                align-items: center;
            }
            
            .float-btn {
                width: 50px;
                height: 50px;
                font-size: 20px;
            }
            
            .whatsapp-float {
                bottom: 20px;
                right: 20px;
            }
            
            .instagram-float {
                bottom: 80px;
                right: 20px;
            }
            
            .call-float {
                bottom: 140px;
                right: 20px;
            }
        }
        
        @media (max-width: 576px) {
            section {
                padding: 60px 0;
            }
            
            .about-hero h1 {
                font-size: 30px;
            }
            
            .about-hero p {
                font-size: 16px;
            }
            
            .section-title h2 {
                font-size: 28px;
            }
            
            .about-features {
                grid-template-columns: 1fr;
            }
            
            .cta-container h2 {
                font-size: 28px;
            }
        }
        
        /* Animated Gradient Background */
        .gradient-bg {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            background: linear-gradient(-45deg, #f5f7fa, #e4e8eb, #f0f5ff, #e8f4ff);
            background-size: 400% 400%;
            animation: gradientBG 15s ease infinite;
        }
        
        @keyframes gradientBG {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }
        
        /* Main Container */
        .contact-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 2rem;
            position: relative;
            z-index: 1;
        }
        
        /* Header Section */
        .contact-header {
            text-align: center;
            padding: 4rem 0 2rem;
            position: relative;
        }
        
        .contact-header h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            color: var(--dark);
            position: relative;
            display: inline-block;
        }
        
        .contact-header h1::after {
            content: '';
            position: absolute;
            width: 80px;
            height: 4px;
            background: var(--gray);
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 2px;
        }
        
        .contact-header p {
            font-size: 1.2rem;
            color: var(--gray);
            max-width: 700px;
            margin: 0 auto 2rem;
        }
        
        /* Contact Cards Grid */
        .contact-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin: 3rem 0;
        }
        
        .contact-card {
            background: white;
            border-radius: 15px;
            padding: 2.5rem;
            box-shadow: var(--shadow);
            transition: var(--transition);
            text-align: center;
            position: relative;
            overflow: hidden;
            border-top: 4px solid var(--primary);
        }
        
        .contact-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        
        .card-icon {
            width: 80px;
            height: 80px;
            background: rgba(255,107,107,0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 2rem;
            color: var(--primary);
            transition: var(--transition);
        }
        
        .contact-card:hover .card-icon {
            background: var(--primary);
            color: white;
            transform: rotate(15deg) scale(1.1);
        }
        
        .contact-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--dark);
        }
        
        .contact-card p {
            color: var(--gray);
            margin-bottom: 1.5rem;
        }
        
        .card-link {
            display: inline-block;
            padding: 0.8rem 1.8rem;
            background: var(--primary);
            color: white;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: var(--transition);
            box-shadow: 0 5px 15px rgba(255,107,107,0.3);
        }
        
        .card-link:hover {
            background: var(--secondary);
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(78,205,196,0.4);
        }
        
        /* Interactive Form Section */
        .form-section {
            background: white;
            border-radius: 15px;
            padding: 3rem;
            box-shadow: var(--shadow);
            margin: 4rem 0;
            position: relative;
            overflow: hidden;
        }
        
        .form-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 10px;
            background: var(--gray);
        }
        
        .form-header {
            text-align: center;
            margin-bottom: 3rem;
        }
        
        .form-header h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: var(--dark);
        }
        
        .form-header p {
            color: var(--gray);
            max-width: 600px;
            margin: 0 auto;
        }
        
        /* Modern Form Design */
        .contact-form {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
            margin-bottom: 1.5rem;
        }
        
        .form-group {
            position: relative;
            margin-bottom: 1.5rem;
        }
        
        .form-group.full-width {
            grid-column: span 2;
        }
        
        .form-label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 500;
            color: var(--dark);
        }
        
        .form-control {
            width: 100%;
            padding: 1rem;
            border: 2px solid #eee;
            border-radius: 8px;
            font-family: 'Poppins', sans-serif;
            transition: var(--transition);
            background: #f9f9f9;
            font-size: 1rem;
        }
        
        .form-control:focus {
            border-color: var(--primary);
            outline: none;
            box-shadow: 0 0 0 3px rgba(255,107,107,0.2);
            background: white;
        }
        
        textarea.form-control {
            height: 150px;
            resize: none;
        }
        
        .submit-btn {
            background: var(--gray);
            color: white;
            border: none;
            padding: 1.2rem 2.5rem;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: var(--transition);
            display: block;
            width: 100%;
            margin-top: 2rem;
            box-shadow: 0 5px 15px rgba(255,107,107,0.3);
            position: relative;
            overflow: hidden;
        }
        
        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(255,107,107,0.4);
        }
        
        .submit-btn::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(
                90deg,
                transparent,
                rgba(255,255,255,0.2),
                transparent
            );
            transition: all 0.5s ease;
        }
        
        .submit-btn:hover::after {
            left: 100%;
        }
        
        /* Appliance Icons Animation */
        .appliance-icons {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 2rem;
            margin: 3rem 0;
        }
        
        .appliance-icon {
            font-size: 2.5rem;
            color: var(--primary);
            opacity: 0.7;
            transition: var(--transition);
            animation: float 6s infinite ease-in-out;
        }
        
        @keyframes float {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(5deg); }
        }
        
        /* Map Section */
        .map-section {
            margin: 4rem 0;
        }
        
        .map-container {
            height: 500px;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: var(--shadow);
            position: relative;
        }
        
        .map-container iframe {
            width: 100%;
            height: 100%;
            border: none;
        }
        
        .map-overlay {
            position: absolute;
            bottom: 20px;
            left: 20px;
            right: 20px;
            background: rgba(255,255,255,0.95);
            padding: 1.5rem;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .map-overlay h3 {
            margin-bottom: 0.5rem;
            color: var(--dark);
        }
        
        .map-overlay p {
            color: var(--gray);
            margin-bottom: 0.5rem;
            font-size: 0.9rem;
        }
        
        /* Social Media Section */
        .social-section {
            text-align: center;
            margin: 4rem 0;
        }
        
        .social-section h2 {
            font-size: 2rem;
            margin-bottom: 1.5rem;
            color: var(--dark);
        }
        
        .social-links {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            margin-top: 2rem;
        }
        
        .social-link {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            color: white;
            text-decoration: none;
            transition: var(--transition);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .social-link:hover {
            transform: translateY(-5px) scale(1.1);
        }
        
        /* Responsive Design */
        @media (max-width: 1200px) {
            .contact-header h1 {
                font-size: 3rem;
            }
        }
        
        @media (max-width: 992px) {
            .contact-container {
                padding: 1.5rem;
            }
            
            .form-section {
                padding: 2rem;
            }
        }
        
        @media (max-width: 768px) {
            .contact-header h1 {
                font-size: 2.5rem;
            }
            
            .form-row {
                grid-template-columns: 1fr;
            }
            
            .form-group.full-width {
                grid-column: span 1;
            }
            
            .map-container {
                height: 400px;
            }
            
            .appliance-icons {
                gap: 1.5rem;
            }
            
            .appliance-icon {
                font-size: 2rem;
            }
        }
        
        @media (max-width: 576px) {
            .contact-header {
                padding: 3rem 0 1rem;
            }
            
            .contact-header h1 {
                font-size: 2rem;
            }
            
            .contact-cards {
                grid-template-columns: 1fr;
            }
            
            .contact-card {
                padding: 2rem;
            }
            
            .form-section {
                padding: 1.5rem;
            }
            
            .map-overlay {
                left: 10px;
                right: 10px;
                bottom: 10px;
                padding: 1rem;
            }
            
            .social-links {
                gap: 1rem;
            }
        }