/* ===== CSS Variables ===== */
:root {
    --green: #1B7A3D;
    --green-dark: #145E2F;
    --green-light: #23994D;
    --blue: #1A5276;
    --blue-dark: #133D59;
    --blue-light: #2175A5;
    --white: #FFFFFF;
    --off-white: #F7F9FC;
    --gray-100: #F1F5F0;
    --gray-200: #E2E8E0;
    --gray-300: #C5CEC3;
    --gray-600: #5A6858;
    --gray-800: #2D3A2B;
    --gray-900: #1A231A;
    --radius-signature: 50px 0 50px 0;
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 30px;
    --shadow-natural: 0 6px 20px rgba(27, 122, 61, 0.08);
    --shadow-hover: 0 12px 40px rgba(27, 122, 61, 0.15);
    --shadow-deep: 0 12px 50px rgba(0, 0, 0, 0.12);
    --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --font: 'Barlow', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ===== Reset & Base ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

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

ul {
    list-style: none;
}

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

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

/* ===== Typography ===== */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
}

h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 700;
}

h3 {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    font-weight: 600;
}

/* ===== Navbar ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: var(--transition);
    border-bottom: 1px solid transparent;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--gray-200);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

.nav-container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.nav-logo img {
    height: 55px;
    width: auto;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-menu a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--gray-800);
    position: relative;
    padding: 8px 0;
}

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

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--green);
}

/* Dropdown */
.has-dropdown {
    position: relative;
}

.dropdown {
    position: absolute;
    top: 100%;
    left: -16px;
    min-width: 240px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-deep);
    padding: 12px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
}

.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown li a {
    display: block;
    padding: 10px 24px;
    font-size: 0.9rem;
}

.dropdown li a:hover {
    background: var(--gray-100);
}

.dropdown li a::after {
    display: none;
}

.nav-cta {
    background: var(--green);
    color: var(--white) !important;
    padding: 12px 28px;
    border-radius: var(--radius-signature);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.02em;
}

.nav-cta:hover {
    background: var(--green-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(27, 122, 61, 0.3);
}

/* Mobile Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--gray-800);
    transition: var(--transition);
}

/* ===== Hero ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 40%, var(--blue) 100%);
    background-size: cover;
    background-position: center;
    overflow: hidden;
    padding: 120px 24px 80px;
}

.hero[style*="background-image"] {
    background-blend-mode: overlay;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-overlay {
    display: none;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 2;
}

.hero h1 {
    color: var(--white);
    font-weight: 700;
    margin-bottom: 24px;
}

.hero h1 span {
    background: linear-gradient(90deg, #FFFFFF, rgba(255, 255, 255, 0.8));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.15rem;
    max-width: 600px;
    margin-bottom: 40px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 48px;
    flex-wrap: wrap;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--white);
}

.stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.65);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.hero-decoration {
    position: absolute;
    right: -100px;
    top: 50%;
    transform: translateY(-50%);
    width: 500px;
    height: 500px;
    opacity: 0.15;
    animation: rotate 40s linear infinite;
}

@keyframes rotate {
    from { transform: translateY(-50%) rotate(0deg); }
    to { transform: translateY(-50%) rotate(360deg); }
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    font-family: var(--font);
    font-size: 1rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    letter-spacing: 0.02em;
}

.btn-primary {
    background: var(--green);
    color: var(--white);
    border-radius: var(--radius-signature);
}

.btn-primary:hover {
    background: var(--green-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(27, 122, 61, 0.35);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: var(--radius-signature);
}

.btn-outline:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.btn-full {
    width: 100%;
}

/* ===== Sections ===== */
.section {
    padding: 100px 0;
}

.section-light {
    background: var(--white);
}

.section-dark {
    background: var(--gray-900);
    position: relative;
}

.section-dark::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(20, 94, 47, 0.8), rgba(27, 122, 61, 0.8));
    z-index: 1;
}

.section-dark > * {
    position: relative;
    z-index: 2;
}

.section-green {
    background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 50%, var(--blue) 100%);
    position: relative;
}

.section-green::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(20, 94, 47, 0.8), rgba(27, 122, 61, 0.8));
    z-index: 1;
}

.section-green > * {
    position: relative;
    z-index: 2;
}

.section-blue {
    background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 100%);
    position: relative;
}

.section-blue::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 54, 93, 0.85), rgba(44, 82, 130, 0.8));
    z-index: 1;
}

.section-blue > * {
    position: relative;
    z-index: 2;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header-left {
    text-align: left;
}

.section-header h2 {
    color: var(--gray-900);
    margin-bottom: 16px;
}

.section-header p {
    color: var(--gray-600);
    font-size: 1.1rem;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.7;
}

.section-header-left p {
    margin: 0;
}

.section-header-light h2,
.section-header-light p {
    color: var(--white);
}

.section-header-light p {
    color: rgba(255, 255, 255, 0.8);
}

.section-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--green);
    margin-bottom: 12px;
    padding: 6px 16px;
    background: rgba(27, 122, 61, 0.08);
    border-radius: 50px;
}

.section-tag-light {
    color: var(--white);
    background: rgba(255, 255, 255, 0.15);
}

/* ===== Blog Grid ===== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px 15px;
}

.blog-card {
    background: var(--white);
    border-radius: var(--radius-signature);
    overflow: hidden;
    box-shadow: var(--shadow-natural);
    transition: var(--transition);
}

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

.blog-card-image {
    height: 200px;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
    filter: brightness(0.85);
}

.blog-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--gray-100), var(--gray-200));
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-placeholder svg {
    width: 48px;
    height: 48px;
    color: var(--gray-300);
}

.blog-card-content {
    padding: 28px;
}

.blog-date {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--green);
}

.blog-card-content h3 {
    margin: 8px 0 12px;
    color: var(--gray-900);
}

.blog-card-content p {
    color: var(--gray-600);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ===== Team Section ===== */
.team-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: stretch;
    width: 100%;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border-radius: 50px 0 50px 0;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.2);
    padding: 0 60px 0 0;
    overflow: hidden;
}

.team-image {
    overflow: hidden;
}

.team-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    border: none;
    box-shadow: none;
}

.team-text {
    padding: 50px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.team-text h2 {
    color: var(--white);
    font-size: clamp(1.6rem, 3vw, 3.2rem);
    font-weight: 700;
    line-height: 1.25 !important;
    margin-bottom: 20px;
}

.team-text p {
    color: var(--white);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 32px;
}

.team-links {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.team-links .btn-primary {
    background: var(--white);
    color: var(--green);
    font-weight: 600;
}

.team-links .btn-primary:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* ===== Services Grid (4 cols) ===== */
.services-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px 15px;
}

.service-card-compact {
    background: var(--white);
    padding: 0;
    border-radius: var(--radius-signature);
    box-shadow: var(--shadow-natural);
    transition: var(--transition);
    border: 1px solid var(--gray-200);
    overflow: hidden;
}

.service-card-compact-image {
    height: 180px;
    overflow: hidden;
}

.service-card-compact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-card-compact:hover .service-card-compact-image img {
    transform: scale(1.05);
    filter: brightness(0.85);
}

.service-card-compact h3,
.service-card-compact p,
.service-card-compact .service-link {
    padding-left: 28px;
    padding-right: 28px;
}

.service-card-compact h3 {
    padding-top: 24px;
}

.service-card-compact .service-link {
    padding-bottom: 28px;
}

.service-card-compact:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: var(--green);
}

.service-icon {
    width: 52px;
    height: 52px;
    background: rgba(27, 122, 61, 0.08);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-icon svg {
    width: 26px;
    height: 26px;
    color: var(--green);
}

.service-card-compact h3 {
    color: var(--gray-900);
    margin-bottom: 12px;
}

.service-card-compact p {
    color: var(--gray-600);
    font-size: 1.13rem;
    line-height: 1.25;
    margin-bottom: 20px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--green);
}

.service-link:hover {
    color: var(--green-dark);
    gap: 10px;
}

.service-link span {
    transition: var(--transition);
}

.service-link-light {
    color: var(--white);
}

.service-link-light:hover {
    color: rgba(255, 255, 255, 0.8);
}

/* ===== Services Grid (3 cols - dark) ===== */
.services-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px 15px;
}

.service-card {
    background: #d4d4d42e;
    padding: 36px 28px;
    border-radius: var(--radius-signature);
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: var(--transition);
}

.service-card.service-card-img {
    padding: 0;
    overflow: hidden;
}

.service-card-image {
    height: 180px;
    overflow: hidden;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-card:hover .service-card-image img {
    transform: scale(1.05);
    filter: brightness(0.8);
}

.service-card-body {
    padding: 28px;
}

.service-card:hover {
    background: rgba(255, 255, 255, 0.14);
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.service-category {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 12px;
}

.service-card h3 {
    color: var(--white);
    margin-bottom: 12px;
    font-size: 1.3rem;
}

.service-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* ===== Help Grid ===== */
.help-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px 15px;
}

.help-card {
    text-align: center;
    padding: 40px 24px;
    border-radius: var(--radius-signature);
    background: var(--off-white);
    transition: var(--transition);
    border: 1px solid transparent;
}

.help-card:hover {
    border-color: var(--green);
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.help-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--green), var(--blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.help-icon svg {
    width: 28px;
    height: 28px;
    color: var(--white);
}

.help-icon img {
    filter: brightness(0) invert(1);
}

.help-card h3 {
    color: var(--gray-900);
    margin-bottom: 12px;
}

.help-card p {
    color: var(--gray-600);
    font-size: 0.92rem;
    line-height: 1.6;
}

/* ===== Reviews ===== */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px 15px;
}

.review-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    padding: 36px;
    border-radius: var(--radius-signature);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.review-card:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-4px);
}

.review-stars {
    color: #FFD700;
    font-size: 1.3rem;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.review-card p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 16px;
}

.review-author {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    font-weight: 600;
}

/* ===== Contact ===== */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.medical-aid-info {
    margin-top: 40px;
    padding: 32px;
    background: var(--off-white);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--green);
}

.medical-aid-info h3 {
    color: var(--green);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 1rem;
}

.medical-aid-info p {
    color: var(--gray-600);
    font-size: 0.92rem;
    line-height: 1.6;
    margin-bottom: 12px;
}

.medical-aid-info p:last-child {
    margin-bottom: 0;
}

.contact-form-wrapper {
    background: var(--off-white);
    padding: 48px;
    border-radius: var(--radius-signature);
    box-shadow: var(--shadow-natural);
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    font-family: var(--font);
    font-size: 0.95rem;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-sm);
    background: var(--white);
    color: var(--gray-800);
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 4px rgba(27, 122, 61, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* ===== Footer ===== */
.footer {
    background: var(--gray-900);
    color: rgba(255, 255, 255, 0.75);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo {
    height: 60px;
    width: auto;
    margin-bottom: 16px;
    filter: brightness(0) invert(1);
}

.footer-brand p {
    font-size: 0.92rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.55);
}

.footer-col h4 {
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.55);
}

.footer-col ul li a:hover {
    color: var(--white);
    padding-left: 4px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 14px !important;
    line-height: 1.5;
}

.footer-contact li svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--green-light);
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.55);
}

.footer-contact a:hover {
    color: var(--white);
}

.footer-hours {
    margin-top: 24px;
}

.footer-hours h4 {
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 10px;
}

.footer-hours p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 4px;
}

.footer-bottom {
    padding: 24px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.35);
}

/* ===== Animations ===== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .services-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .help-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 24px;
        gap: 0;
        box-shadow: var(--shadow-deep);
        transform: translateY(-120%);
        opacity: 0;
        transition: var(--transition);
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu a {
        display: block;
        padding: 14px 0;
        border-bottom: 1px solid var(--gray-100);
    }

    .nav-toggle {
        display: flex;
    }

    .nav-cta {
        display: none;
    }

    .dropdown {
        position: static;
        box-shadow: none;
        border-radius: 0;
        padding: 0 0 0 20px;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
    }

    .has-dropdown:hover .dropdown,
    .has-dropdown.open .dropdown {
        display: block;
    }

    .hero {
        min-height: auto;
        padding: 140px 24px 80px;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero-stats {
        gap: 32px;
    }

    .hero-decoration {
        display: none;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .team-content {
        grid-template-columns: 1fr;
        gap: 0;
        width: 95%;
        padding: 0;
    }

    .team-text {
        padding: 30px 24px;
    }

    .team-photo {
        max-width: 400px;
        margin: 0 auto;
    }

    .services-grid-4,
    .services-grid-3,
    .help-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-form-wrapper {
        padding: 32px 24px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .section {
        padding: 70px 0;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        text-align: center;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .stat-number {
        font-size: 1.4rem;
    }
}
