* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            background-color: #f5f7fa;
            color: #333;
            line-height: 1.6;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

        .header {
            background: linear-gradient(135deg, #2c3e50, #4a6491);
            color: white;
            padding: 20px 0;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        }

        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }

        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }

        .logo {
            font-size: 1.3rem;
            font-weight: 700;
            color: white;
            text-decoration: none;
        }

        nav ul {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
        }

        nav ul li {
            margin-left: 30px;
        }

        nav ul li a {
            color: #ecf0f1;
            text-decoration: none;
            font-weight: 500;
            font-size: 18px;
            transition: color 0.3s;
            padding: 5px 0;
            position: relative;
        }

        nav ul li a:hover {
            color: #f39c12;
        }

        nav ul li a.active {
            color: #f39c12;
        }

        .btn {
            display: inline-block;
            background: #f39c12;
            color: white;
            padding: 10px 20px;
            border: none;
            border-radius: 5px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s;
            text-decoration: none;
        }

        .btn:hover {
            background: #e67e22;
        }

        .contact-hero {
            background: url('https://images.unsplash.com/photo-1513584684374-8bab748fbf90?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80') no-repeat center center/cover;
            color: white;
            padding: 80px 0;
            text-align: center;
            position: relative;
        }

        .contact-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.6);
        }

        .contact-hero .container {
            position: relative;
            z-index: 2;
        }

        .contact-hero h1 {
            font-size: 48px;
            margin-bottom: 20px;
        }

        .contact-hero p {
            font-size: 20px;
            max-width: 700px;
            margin: 0 auto;
        }

        .contact-content {
            padding: 60px 0;
            flex: 1;
        }

        .contact-wrapper {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
        }

        .contact-info {
            background: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }

        .contact-info h2 {
            color: #2c3e50;
            margin-bottom: 25px;
            padding-bottom: 10px;
            border-bottom: 3px solid #f39c12;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 25px;
        }

        .contact-icon {
            background: #f39c12;
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            flex-shrink: 0;
            font-size: 22px;
        }

        .contact-details h3 {
            margin-bottom: 5px;
            color: #2c3e50;
        }

        .contact-details p {
            color: #7f8c8d;
        }

        .contact-form {
            background: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }

        .contact-form h2 {
            color: #2c3e50;
            margin-bottom: 25px;
            padding-bottom: 10px;
            border-bottom: 3px solid #f39c12;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: #2c3e50;
            font-weight: 500;
        }

        .form-control {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 16px;
            transition: border 0.3s;
            font-family: inherit;
        }

        .form-control:focus {
            border-color: #f39c12;
            outline: none;
        }

        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }

        .map {
            margin-top: 40px;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        .map iframe {
            width: 100%;
            height: 400px;
            border: none;
        }

        .footer {
            background: #2c3e50;
            color: #ecf0f1;
            padding: 40px 0 20px;
            margin-top: 60px;
        }

        .footer-content {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            margin-bottom: 30px;
        }

        .footer-section {
            flex: 1;
            min-width: 250px;
            margin-bottom: 30px;
        }

        .footer-section h3 {
            color: #f39c12;
            margin-bottom: 20px;
            font-size: 20px;
        }

        .footer-section p, .footer-section a {
            color: #bdc3c7;
            margin-bottom: 10px;
            display: block;
            text-decoration: none;
        }

        .footer-section a:hover {
            color: #f39c12;
        }

        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #34495e;
            color: #95a5a6;
            font-size: 14px;
        }

        .whatsapp-button {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            background: #25D366;
            color: white;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            box-shadow: 0 4px 15px rgba(37,211,102,0.3);
            z-index: 1000;
            font-size: 1.8rem;
        }

        @media (max-width: 768px) {
            .header-top {
                flex-direction: column;
                text-align: center;
            }

            nav ul {
                justify-content: center;
                margin-top: 15px;
            }

            nav ul li {
                margin: 0 10px;
            }

            .contact-hero h1 {
                font-size: 36px;
            }

            .contact-hero p {
                font-size: 18px;
            }
            
            .footer-content {
                flex-direction: column;
            }
        }
    
        .logo{font-size:1.3rem;font-weight:700;color:#0a2540;text-decoration:none}
        .phone-header{text-decoration:none;color:#0a2540;font-weight:700;font-size:1.1rem;white-space:nowrap}
        .btn--urgent{background:#dc2626;color:#fff;font-size:0.9rem;padding:0.6rem 1.2rem;white-space:nowrap;animation:pulse 2s infinite}
        @keyframes pulse{0%,100%{box-shadow:0 0 0 0 rgba(220,38,38,0.7)}50%{box-shadow:0 0 0 8px rgba(220,38,38,0)}}
        .menu-toggle{display:none;flex-direction:column;gap:5px;background:none;border:none;cursor:pointer;padding:8px}
        .menu-toggle span{width:28px;height:3px;background:#0a2540;border-radius:2px;transition:all 0.3s}
        
        @media(max-width:768px){
            .logo{display:none}
            .header__container{justify-content:space-between;gap:0.5rem}
            .btn--urgent{padding:0.5rem 0.8rem;font-size:0.8rem;white-space:nowrap}
            .phone-header{font-size:0.9rem}
            .menu-toggle{display:flex}
            .nav{position:fixed;top:60px;left:0;width:100%;background:#fff;box-shadow:0 5px 15px rgba(0,0,0,0.1);transform:translateY(-100%);opacity:0;visibility:hidden;transition:all 0.3s;z-index:999;flex-direction:column;padding:1rem;gap:0}
            .nav.active{transform:translateY(0);opacity:1;visibility:visible}
            .nav__list{flex-direction:column;gap:0;width:100%}
            .nav__link{display:block;padding:0.8rem;border-bottom:1px solid #e2e8f0}
        }