    /* GLOBAL RESET */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: Arial, sans-serif;
        }

        body {
            background: #f4f8f7;
            color: #333;
        }

        header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 40px;
            background: #062f2a;
            color: #fff;
        }

        header .logo {
            font-size: 20px;
            font-weight: bold;
        }

        nav a {
            margin: 0 10px;
            text-decoration: none;
            color: #fff;
            transition: color 0.3s;
        }

        nav a:hover {
            color: #ffcc70;
        }

        .menu-toggle {
            display: none;
            cursor: pointer;
        }

        /* CONTACT SECTION */
        .contact-section {
            min-height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 60px 20px;
        }

        .contact-container {
            display: flex;
            max-width: 1100px;
            width: 100%;
            background: #ffffff;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 12px 30px rgba(0,0,0,0.12);
        }

        /* LEFT SIDE */
        .contact-info {
            flex: 1;
            background: #062f2a;
            color: #fff;
            padding: 50px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .contact-info h2 {
            font-size: 26px;
            margin-bottom: 8px;
        }

        .tagline {
            color: #ffcc70;
            font-weight: bold;
            margin-bottom: 12px;
            font-size: 16px;
        }

        .description {
            font-size: 15px;
            margin-bottom: 25px;
            line-height: 1.7;
        }

        .info-item {
            margin-bottom: 12px;
            font-size: 15px;
        }

        .info-item strong {
            color: #ffcc70;
        }

        .contact-image img {
            width: 100%;
            border-radius: 12px;
            margin-top: 25px;
            box-shadow: 0 6px 15px rgba(0,0,0,0.25);
        }

        /* RIGHT SIDE */
        .contact-form {
            flex: 1;
            padding: 50px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .contact-form h2 {
            margin-bottom: 12px;
            color: #062f2a;
            font-size: 24px;
        }

        .subtitle {
            margin-bottom: 25px;
            color: #555;
            font-size: 15px;
        }

        .contact-form input,
        .contact-form textarea {
            width: 100%;
            padding: 14px;
            margin-bottom: 18px;
            border: 1px solid #ccc;
            border-radius: 8px;
            outline: none;
            transition: border-color 0.3s, box-shadow 0.3s;
        }

        .contact-form input:focus,
        .contact-form textarea:focus {
            border-color: #ff6600;
            box-shadow: 0 0 6px rgba(255,102,0,0.3);
        }

        .contact-form textarea {
            height: 140px;
            resize: none;
        }

        .contact-form button {
            padding: 14px;
            background: #ff6600;
            color: #fff;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            transition: 0.3s;
            font-size: 16px;
            font-weight: bold;
        }

        .contact-form button:hover {
            background: #cc5200;
        }

        .back-home {
            margin-top: 20px;
            text-align: center;
        }

        .back-home a {
            text-decoration: none;
            color: white;
            font-size: 14px;
            transition: color 0.3s;
        }

        .back-home a:hover {
            color: #ff6600;
        }

        /* RESPONSIVE */
        /* Large desktops */
@media (min-width: 1200px) {
    .contact-container {
        max-width: 1200px;
    }
}

/* Laptops */
@media (max-width: 1024px) {
    .contact-container {
        flex-direction: row;
        padding: 30px;
    }
}

/* Tablets */
@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
    }
    .contact-info, .contact-form {
        padding: 25px;
        text-align: center;
    }
}

/* Phones */
@media (max-width: 480px) {
    .contact-form input,
    .contact-form textarea,
    .contact-form button {
        font-size: 14px;
        padding: 10px;
    }
    .contact-info h2 {
        font-size: 20px;
    }
}
/* services */
