/* ==========================================================================
   CSS Variables & Global Styles
   ========================================================================== */
   :root {
    /* Colorful eye-catching palette */
    --color-primary: #FF5A5F;    /* Soft vibrant red */
    --color-secondary: #08B2E3;  /* Bright sky blue */
    --color-accent-1: #FFD166;   /* Cheerful yellow */
    --color-accent-2: #06D6A0;   /* Vibrant mint */
    --color-accent-3: #8338EC;   /* Playful purple */
    --color-accent-4: #EF476F;   /* Pink */
    
    --color-text: #2B2D42;       /* Dark navy text */
    --color-text-light: #6C757D;
    --color-bg-light: #F8F9FA;
    --color-white: #FFFFFF;
    
    --font-primary: 'Montserrat', sans-serif;
    
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 15px 35px rgba(0, 0, 0, 0.12);
    --transition: all 0.3s ease;
    --border-radius: 12px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    color: var(--color-text);
    line-height: 1.6;
    background-color: var(--color-white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    color: var(--color-text);
}

a {
    text-decoration: none;
    color: var(--color-secondary);
    transition: var(--transition);
}

a:hover {
    color: var(--color-primary);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center { text-align: center; }
.mt-3 { margin-top: 1.5rem; }
.d-inline-block { display: inline-block; }
.font-weight-bold { font-weight: 600; }
.bg-light { background-color: var(--color-bg-light); }
.bg-primary-soft { background-color: rgba(255, 90, 95, 0.05); }

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-white);
    box-shadow: 0 4px 15px rgba(255, 90, 95, 0.3);
}

.btn-primary:hover {
    background-color: #e6454a;
    color: var(--color-white);
    box-shadow: 0 6px 20px rgba(255, 90, 95, 0.4);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-secondary);
    border-color: var(--color-secondary);
}

.btn-secondary:hover {
    background-color: var(--color-secondary);
    color: var(--color-white);
    box-shadow: 0 6px 20px rgba(8, 178, 227, 0.3);
    transform: translateY(-2px);
}

/* Section Common */
section {
    padding: 80px 0;
}

.section-subtitle {
    color: var(--color-primary);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    display: block;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.section-heading {
    max-width: 700px;
    margin: 0 auto 50px;
}

/* ==========================================================================
   Topbar
   ========================================================================== */
.topbar {
    background-color: var(--color-accent-3);
    color: var(--color-white);
    padding: 10px 0;
    font-size: 0.9rem;
}

.topbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.topbar-info span {
    margin-right: 20px;
    font-weight: 500;
}

.topbar-info i {
    margin-right: 5px;
    color: var(--color-accent-1);
}

.topbar-social a {
    color: var(--color-white);
    margin-left: 15px;
    font-size: 1rem;
}

.topbar-social a:hover {
    color: var(--color-accent-1);
}

/* ==========================================================================
   Header / Navigation
   ========================================================================== */
.header {
    background-color: var(--color-white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
    transition: var(--transition);
}

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

.logo img {
    height: 70px;
    max-width: 100%;
}

.navigation {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    margin-right: 30px;
}

.nav-list li {
    margin: 0 15px;
}

.nav-list a {
    color: var(--color-text);
    font-weight: 600;
    font-size: 1rem;
    position: relative;
    padding-bottom: 5px;
}

.nav-list a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--color-primary);
    transition: var(--transition);
}

.nav-list a:hover {
    color: var(--color-primary);
}

.nav-list a:hover::after {
    width: 100%;
}

/* Dropdown Styles */
.nav-list li.dropdown {
    position: relative;
}

.nav-list .caret {
    font-size: 0.8rem;
    margin-left: 5px;
    transition: var(--transition);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--color-white);
    min-width: 220px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-radius: 8px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 100;
}

.nav-list li.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-list li.dropdown:hover .caret {
    transform: rotate(180deg);
}

.dropdown-menu li {
    margin: 0 !important;
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    font-weight: 500 !important;
    font-size: 0.95rem !important;
}

.dropdown-menu a::after {
    display: none;
}

.dropdown-menu a:hover {
    background-color: var(--color-bg-light);
    color: var(--color-primary);
    padding-left: 25px;
}

.menu-toggle, .hamburger {
    display: none;
}

/* ==========================================================================
   Hero Section & Slider
   ========================================================================== */
.hero {
    position: relative;
    padding: 60px 0 100px;
    overflow: hidden;
}

/* Old style fallback/general styles */
.hero:not(.hero-slider) {
    background: linear-gradient(135deg, rgba(239, 71, 111, 0.05) 0%, rgba(8, 178, 227, 0.05) 100%);
}
.hero:not(.hero-slider)::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,209,102,0.15) 0%, rgba(255,255,255,0) 70%);
    z-index: 0;
}
.hero-inner {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    flex: 1;
    padding-right: 50px;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero h1 .highlight {
    color: var(--color-secondary);
    position: relative;
}

.hero h1 .highlight::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 8px;
    bottom: 5px;
    left: 0;
    background-color: var(--color-accent-1);
    z-index: -1;
    border-radius: 4px;
}

.hero p {
    font-size: 1.2rem;
    color: var(--color-text-light);
    margin-bottom: 30px;
}

.hero-buttons .btn {
    margin-right: 15px;
}

/* Slider Styles */
.hero-slider {
    padding: 150px 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #2b2d42; 
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transform: scale(1);
    transition: opacity 1.5s ease-in-out, transform 7s linear;
    z-index: 0;
    will-change: transform, opacity;
    image-rendering: high-quality;
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1.1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(43, 45, 66, 0.6);
    z-index: 1;
}

.hero-slider .hero-inner {
    flex-direction: column;
    text-align: center;
    width: 100%;
}

.hero-slider .hero-content {
    padding-right: 0;
    max-width: 800px;
    margin: 0 auto;
}

.hero-slider h1, .hero-slider p {
    color: var(--color-white);
}

.hero-slider p {
    color: #e0e0e0;
    font-size: 1.3rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.hero-slider h1 {
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.hero-buttons .btn-outline {
    background-color: transparent;
    color: var(--color-white);
    border-color: var(--color-white);
}

.hero-buttons .btn-outline:hover {
    background-color: var(--color-white);
    color: var(--color-text);
}

/* End Slider Styles */

.hero-image {
    flex: 1;
    position: relative;
}

.hero-image img {
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    position: relative;
    z-index: 2;
}

.hero-image::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    background-color: var(--color-accent-2);
    z-index: 1;
}

/* ==========================================================================
   About Us
   ========================================================================== */
.about {
    position: relative;
}

.about-inner {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-image {
    flex: 1;
    position: relative;
}

.about-image img {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
    border: 10px solid var(--color-white);
}

.about-content {
    flex: 1;
}

.about-content p {
    color: var(--color-text-light);
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.about-features {
    margin-top: 25px;
}

.about-features li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-weight: 600;
    font-size: 1.1rem;
}

.about-features i {
    color: var(--color-accent-2);
    font-size: 1.5rem;
    margin-right: 15px;
}

/* About page */
.page-header .page-header-lead {
    max-width: 720px;
    margin: 1rem auto 0;
    color: var(--color-text-light);
    font-size: 1.1rem;
    line-height: 1.7;
}

.about-page-closing-section .about-page-closing {
    text-align: center;
    max-width: 760px;
    margin: 0 auto;
}

.about-page-closing-quote {
    font-size: clamp(1.25rem, 2.5vw, 1.55rem);
    font-weight: 700;
    line-height: 1.45;
    color: var(--color-text);
    margin-bottom: 1rem;
}

.about-page-closing-lead {
    color: var(--color-text-light);
    margin-bottom: 1.75rem;
    font-size: 1.05rem;
    line-height: 1.65;
}

.about-page-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

/* Image placeholders (service / inner pages) */
.content-placeholder-figure {
    margin: 0;
}

.content-placeholder-figure img {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
    width: 100%;
    height: auto;
}

.about-image .content-placeholder-figure img {
    border: 10px solid var(--color-white);
}

.choose-image .content-placeholder-figure img {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-hover);
}

.content-placeholder-caption {
    margin-top: 10px;
    font-size: 0.85rem;
    color: var(--color-text-light);
    text-align: center;
}

.content-placeholder-figure--wide img {
    width: 100%;
    max-height: 340px;
    object-fit: cover;
}

.aba-banner-section {
    padding-top: 0;
    padding-bottom: 40px;
}

.aba-process-grid .service-card h3 {
    font-size: 1.35rem;
}

/* ==========================================================================
   Services Section
   ========================================================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--color-white);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border-bottom: 4px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.service-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 25px;
    transition: var(--transition);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.service-card p {
    color: var(--color-text-light);
}

/* Colorful Cards */
.style-1 { border-color: var(--color-primary); }
.style-1 .service-icon { background: rgba(255, 90, 95, 0.1); color: var(--color-primary); }
.style-1:hover .service-icon { background: var(--color-primary); color: var(--color-white); }

.style-2 { border-color: var(--color-secondary); }
.style-2 .service-icon { background: rgba(8, 178, 227, 0.1); color: var(--color-secondary); }
.style-2:hover .service-icon { background: var(--color-secondary); color: var(--color-white); }

.style-3 { border-color: var(--color-accent-1); }
.style-3 .service-icon { background: rgba(255, 209, 102, 0.1); color: #e6b840; } /* slightly darker yellow for visibility */
.style-3:hover .service-icon { background: var(--color-accent-1); color: var(--color-text); }

.style-4 { border-color: var(--color-accent-2); }
.style-4 .service-icon { background: rgba(6, 214, 160, 0.1); color: var(--color-accent-2); }
.style-4:hover .service-icon { background: var(--color-accent-2); color: var(--color-white); }

.style-5 { border-color: var(--color-accent-3); }
.style-5 .service-icon { background: rgba(131, 56, 236, 0.1); color: var(--color-accent-3); }
.style-5:hover .service-icon { background: var(--color-accent-3); color: var(--color-white); }

.style-6 { border-color: var(--color-accent-4); }
.style-6 .service-icon { background: rgba(239, 71, 111, 0.1); color: var(--color-accent-4); }
.style-6:hover .service-icon { background: var(--color-accent-4); color: var(--color-white); }


/* ==========================================================================
   Why Choose Us
   ========================================================================== */
.choose-inner {
    display: flex;
    align-items: center;
    gap: 60px;
}

.choose-content {
    flex: 1;
}

.choose-image {
    flex: 1;
}

.choose-image img {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-hover);
}

.choose-content > p {
    color: var(--color-text-light);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.choose-item {
    display: flex;
    margin-bottom: 25px;
}

.icon-box {
    width: 60px;
    height: 60px;
    min-width: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--color-white);
    margin-right: 20px;
}

.bg-accent-1 { background-color: var(--color-primary); }
.bg-accent-2 { background-color: var(--color-secondary); }
.bg-accent-3 { background-color: var(--color-accent-2); }

.choose-item h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.choose-item p {
    color: var(--color-text-light);
    font-size: 0.95rem;
}

/* ==========================================================================
   Testimonials
   ========================================================================== */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--color-white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
    position: relative;
    border-top: 5px solid var(--color-secondary);
}

.quote-icon {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 3rem;
    color: rgba(8, 178, 227, 0.1);
}

.feedback {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--color-text-light);
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.client-info {
    display: flex;
    align-items: center;
}

.client-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
    border: 3px solid rgba(8, 178, 227, 0.2);
}

.client-name {
    margin-bottom: 2px;
}

.client-role {
    font-size: 0.85rem;
    color: var(--color-secondary);
    font-weight: 600;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    background-color: var(--color-text);
    color: var(--color-white);
    padding-top: 80px;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-logo {
    height: 90px;
    margin-bottom: 20px;
    background-color: white; /* helps if logo has white elements */
    padding: 10px;
    border-radius: 8px;
}

.footer-widget p {
    color: #b0b5b9;
    margin-bottom: 20px;
}

.footer-social a {
    display: inline-flex;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    color: var(--color-white);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}

.footer-social a:hover {
    background: var(--color-primary);
    transform: translateY(-3px);
}

.footer-widget h3 {
    color: var(--color-white);
    font-size: 1.3rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-widget h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--color-primary);
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #b0b5b9;
}

.footer-links a:hover {
    color: var(--color-secondary);
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    margin-bottom: 15px;
    color: #b0b5b9;
}

.footer-contact i {
    color: var(--color-primary);
    margin-right: 15px;
    font-size: 1.2rem;
    margin-top: 3px;
}

.footer-bottom {
    background-color: #1f202f;
    padding: 20px 0;
    color: #8c9298;
    font-size: 0.9rem;
}

/* ==========================================================================
   Modal & Contact Form
   ========================================================================== */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.6);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.modal-content {
    background-color: var(--color-white);
    padding: 40px;
    border-radius: var(--border-radius);
    width: 90%;
    max-width: 550px;
    position: relative;
    box-shadow: 0 15px 50px rgba(0,0,0,0.2);
    transform: translateY(-20px);
    transition: transform 0.3s ease;
    max-height: 90vh;
    overflow-y: auto;
}

.modal.show .modal-content {
    transform: translateY(0);
}

.close-modal {
    color: var(--color-text-light);
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
}

.close-modal:hover {
    color: var(--color-primary);
}

.modal-header {
    text-align: center;
    margin-bottom: 25px;
}

.modal-header h2 {
    color: var(--color-primary);
    margin-bottom: 10px;
    font-size: 2rem;
}

.modal-header p {
    color: var(--color-text-light);
    font-size: 1rem;
}

.contact-form .form-group {
    margin-bottom: 20px;
    text-align: left;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--color-text);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #eee;
    border-radius: 8px;
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: var(--transition);
    background-color: var(--color-bg-light);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--color-secondary);
    background-color: var(--color-white);
    box-shadow: 0 0 0 4px rgba(8, 178, 227, 0.1);
}

.btn-block {
    display: block;
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
    margin-top: 10px;
}

.btn-whatsapp {
    background-color: #25d366;
    color: var(--color-white);
    border-color: #25d366;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.35);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-whatsapp:hover {
    background-color: #1ebe57;
    border-color: #1ebe57;
    color: var(--color-white);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
    transform: translateY(-2px);
}

.contact-page-section {
    padding: 80px 0;
}

.contact-page-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 48px;
    justify-content: space-between;
}

.contact-page-info {
    flex: 1;
    min-width: 280px;
    max-width: 520px;
}

.contact-page-intro {
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    line-height: 1.65;
}

.contact-info-card {
    background: var(--color-bg-light);
    border-radius: var(--border-radius);
    padding: 28px;
    margin-bottom: 1.25rem;
    border: 1px solid rgba(43, 45, 66, 0.06);
}

.contact-info-list li {
    display: flex;
    gap: 18px;
    margin-bottom: 22px;
}

.contact-info-list li:last-child {
    margin-bottom: 0;
}

.contact-info-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 12px;
    background: rgba(8, 178, 227, 0.12);
    color: var(--color-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.contact-info-list strong {
    display: block;
    margin-bottom: 6px;
    color: var(--color-text);
}

.contact-info-list p {
    color: var(--color-text-light);
    margin: 0;
    line-height: 1.55;
}

.contact-whatsapp-direct {
    margin-top: 0.5rem;
}

.contact-page-note {
    margin-top: 1rem;
    color: var(--color-text-light);
    line-height: 1.5;
}

.contact-page-note a {
    color: var(--color-secondary);
}

.contact-page-form-wrap {
    flex: 1;
    min-width: 300px;
    max-width: 560px;
    margin-left: auto;
    background: var(--color-white);
    padding: 36px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(43, 45, 66, 0.06);
}

.contact-form-title {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--color-text);
}

.contact-form-hint {
    color: var(--color-text-light);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.55;
}

.contact-form .required-mark {
    color: var(--color-primary);
    font-weight: 700;
}

.contact-map-section .section-heading {
    margin-bottom: 40px;
}

.contact-map-section .section-heading p {
    color: var(--color-text-light);
    margin-top: 8px;
}

.contact-map-wrap {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(43, 45, 66, 0.08);
    line-height: 0;
    background: #e5e5e5;
}

.contact-map-wrap iframe {
    width: 100%;
    height: min(420px, 70vh);
    min-height: 280px;
    border: 0;
    display: block;
}

.contact-map-link-wrap {
    margin-top: 24px;
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */
@media (max-width: 992px) {
    .hero h1 { font-size: 2.8rem; }
    .contact-page-inner { flex-direction: column; }
    .contact-page-form-wrap {
        margin-left: 0;
        max-width: 100%;
    }
    .about-inner, .choose-inner { flex-direction: column; gap: 40px; }
    .hero-inner { flex-direction: column; text-align: center; gap: 50px; }
    .hero-content { padding-right: 0; }
    .hero-buttons { justify-content: center; }
    .hero::before { display: none; }
    
    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .contact-page-form-wrap { padding: 24px; }
    .topbar { display: none; }
    
    .hamburger {
        display: block;
        font-size: 1.5rem;
        cursor: pointer;
        color: var(--color-text);
    }
    
    .navigation {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--color-white);
        flex-direction: column;
        padding: 20px 0;
        box-shadow: 0 10px 10px rgba(0,0,0,0.05);
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        transition: var(--transition);
        visibility: hidden;
        opacity: 0;
    }

    #menu-toggle:checked ~ .navigation {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
        visibility: visible;
        opacity: 1;
    }

    .nav-list {
        flex-direction: column;
        margin: 0 0 20px 0;
        width: 100%;
        text-align: center;
    }

    .nav-list li {
        margin: 10px 0;
    }

    .dropdown-menu {
        position: static;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        background-color: var(--color-bg-light);
        display: none; 
    }
    .nav-list li.dropdown:hover .dropdown-menu {
        display: block;
    }

    .hero h1 { font-size: 2.2rem; }
    .section-title { font-size: 2rem; }
    
    .footer-top {
        grid-template-columns: 1fr;
    }
}
