:root {
    /* Colors - Florida Vibe */
    --clr-ocean: #0077b6;
    --clr-ocean-light: #00b4d8;
    --clr-ocean-dark: #023e8a;
    --clr-sunshine: #ffb703;
    --clr-sunshine-hover: #fb8500;
    --clr-coral: #ff6b6b;
    --clr-sand: #fbf8f1;
    --clr-leaf: #38b000;
    
    /* Neutral */
    --clr-text-main: #023047;
    --clr-text-muted: #495057;
    --clr-bg-white: #ffffff;
    --clr-bg-light: #f4f9f9;
    
    /* Typography */
    --font-heading: 'Nunito', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Shadows & Radii */
    --shadow-sm: 0 4px 6px rgba(0,0,0,0.05);
    --shadow-md: 0 10px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 20px 40px rgba(0,0,0,0.12);
    --radius-md: 16px;
    --radius-lg: 30px;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
}

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

h1, h2, h3, h4, .logo {
    font-family: var(--font-heading);
    font-weight: 800;
    line-height: 1.2;
}

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

.section {
    padding: 100px 0;
}

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

/* Typography styles */
p {
    color: var(--clr-text-muted);
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

/* ================= Navbar ================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    padding: 1rem 0;
    transition: var(--transition-smooth);
}

.navbar.scrolled {
    padding: 0.5rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-links a:not(.btn) {
    text-decoration: none;
    color: var(--clr-text-main);
    font-weight: 600;
    font-size: 1.05rem;
    transition: var(--transition-fast);
}

.nav-links a:not(.btn):hover {
    color: var(--clr-ocean);
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--clr-text-main);
}

/* ================= Buttons ================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: 700;
    font-family: var(--font-heading);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-primary {
    background-color: var(--clr-ocean);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 119, 182, 0.3);
}

.btn-primary:hover {
    background-color: var(--clr-ocean-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 119, 182, 0.4);
    color: white;
}

.btn-outline {
    background-color: transparent;
    color: var(--clr-ocean);
    border: 2px solid var(--clr-ocean);
}

.btn-outline:hover {
    background-color: var(--clr-ocean);
    color: white;
}

.btn-yellow {
    background-color: var(--clr-sunshine);
    color: var(--clr-text-main);
    box-shadow: 0 4px 15px rgba(255, 183, 3, 0.3);
}

.btn-yellow:hover {
    background-color: var(--clr-sunshine-hover);
    transform: translateY(-2px);
}

/* ================= Hero ================= */
.hero {
    background: linear-gradient(135deg, var(--clr-sand) 0%, var(--clr-bg-white) 100%);
    padding-top: 150px;
    padding-bottom: 120px;
    position: relative;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.badge {
    display: inline-block;
    background-color: rgba(255, 183, 3, 0.2);
    color: var(--clr-sunshine-hover);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--clr-ocean-dark);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.hero-image-wrapper {
    position: relative;
}

.blob-shape {
    position: absolute;
    top: -10%;
    left: -10%;
    width: 120%;
    height: 120%;
    background: var(--clr-beach-gradient, linear-gradient(45deg, var(--clr-ocean-light), var(--clr-sunshine)));
    opacity: 0.15;
    filter: blur(40px);
    border-radius: 50%;
    z-index: 1;
}

.hero-img {
    position: relative;
    z-index: 2;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 8px solid white;
    transform: rotate(2deg);
    transition: var(--transition-smooth);
}

.hero-img:hover {
    transform: rotate(0) scale(1.02);
}

.wave-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: translateY(1px); /* Fix visual glitch */
}

.wave-bottom svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 80px;
}

.wave-bottom .shape-fill {
    fill: #ffffff;
}

/* ================= Insurance Section ================= */
.insurance {
    background: white;
}

.insurance-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 3rem;
    opacity: 0.7;
}

.insurance-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    filter: grayscale(100%);
    transition: var(--transition-smooth);
}

.insurance-logo img {
    max-height: 100%;
    max-width: 150px;
    object-fit: contain;
}

.insurance-logo h4 {
    font-size: 1.5rem;
    color: var(--clr-text-muted);
}

.insurance-logo:hover {
    filter: grayscale(0%);
    transform: scale(1.05);
    opacity: 1;
}

/* ================= Section Header ================= */
.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--clr-ocean-dark);
    margin-bottom: 1rem;
}

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

.service-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: 1px solid rgba(0,0,0,0.05);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: var(--clr-ocean);
    transition: var(--transition-smooth);
}

.service-card.color-blue::before { background: var(--clr-ocean); }
.service-card.color-yellow::before { background: var(--clr-sunshine); }
.service-card.color-pink::before { background: var(--clr-coral); }
.service-card.color-green::before { background: var(--clr-leaf); }

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

.service-card:hover::before {
    height: 100%;
    opacity: 0.05;
    z-index: -1;
}

.icon-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.color-blue .icon-circle { background: rgba(0, 119, 182, 0.1); color: var(--clr-ocean); }
.color-yellow .icon-circle { background: rgba(255, 183, 3, 0.1); color: var(--clr-sunshine-hover); }
.color-pink .icon-circle { background: rgba(255, 107, 107, 0.1); color: var(--clr-coral); }
.color-green .icon-circle { background: rgba(56, 176, 0, 0.1); color: var(--clr-leaf); }

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--clr-text-main);
}

/* ================= About ================= */
.bg-light-blue {
    background-color: var(--clr-bg-light);
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--clr-sunshine);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transform: rotate(-5deg);
}

.experience-badge .number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--clr-text-main);
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--clr-text-main);
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--clr-ocean-dark);
}

.feature-list {
    list-style: none;
    margin-top: 2rem;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--clr-text-main);
}

.text-green {
    color: var(--clr-leaf);
    font-size: 1.5rem;
}

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

.testimonial-card {
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    border-top: 5px solid var(--clr-ocean-light);
    transition: var(--transition-smooth);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.stars {
    display: flex;
    gap: 0.2rem;
    font-size: 1rem;
}

.text-sunshine {
    color: var(--clr-sunshine);
}

.quote-icon {
    font-size: 2rem;
    color: rgba(0, 119, 182, 0.1);
}

.testimonial-text {
    font-style: italic;
    flex-grow: 1;
    margin-bottom: 2rem;
    color: var(--clr-text-main);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    font-size: 2.5rem;
    color: var(--clr-text-muted);
    opacity: 0.5;
}

.author-info h4 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--clr-ocean-dark);
}

.author-info p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--clr-text-muted);
}

.author-info p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--clr-text-muted);
}

/* ================= FAQ Accordion ================= */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: var(--transition-fast);
    border: 1px solid rgba(0,0,0,0.05);
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 1.5rem 2rem;
    background: none;
    border: none;
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--clr-ocean-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition-fast);
}

.faq-question i {
    color: var(--clr-ocean);
    transition: transform 0.3s ease;
}

.faq-question:hover {
    color: var(--clr-ocean);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease;
    background: #fafafa;
}

.faq-item.active .faq-answer {
    padding: 0 2rem 1.5rem 2rem;
}

.faq-answer p {
    margin: 0;
    color: var(--clr-text-muted);
}

/* ================= Team Section ================= */
.team-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md) !important;
}

.team-card:hover img {
    transform: scale(1.05);
}

.faq-answer p {
    margin: 0;
    color: var(--clr-text-muted);
}

/* ================= 20x EXPANSION UTILS ================= */
.py-5 { padding-top: 5rem !important; padding-bottom: 5rem !important; }
.py-8 { padding-top: 8rem !important; padding-bottom: 8rem !important; }
.bg-gradient-ocean { background: linear-gradient(135deg, var(--clr-ocean-dark) 0%, var(--clr-ocean) 100%); color: white; }
.text-white { color: white !important; }

/* Stats Counter */
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; text-align: center; }
.stat-card { padding: 2rem; }
.stat-number { font-size: 3.5rem; font-weight: 900; color: var(--clr-sunshine); line-height: 1; margin-bottom: 0.5rem; font-family: var(--font-heading); }
.stat-label { font-size: 1.1rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,0.9); }

/* Alternating Rows (Services/About Content) */
.split-row { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; margin-bottom: 5rem; }
.split-row.reverse { direction: rtl; }
.split-row.reverse > * { direction: ltr; }
.split-row img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); transition: var(--transition-smooth); }
.split-row img:hover { transform: scale(1.02); }
.split-content h3 { font-size: 2rem; color: var(--clr-ocean-dark); margin-bottom: 1rem; }
.split-content .check-list { list-style: none; margin-top: 1.5rem; }
.split-content .check-list li { margin-bottom: 0.75rem; display: flex; gap: 0.75rem; }
.split-content .check-list i { color: var(--clr-leaf); margin-top: 4px; }
@media (max-width: 900px) { .split-row { grid-template-columns: 1fr; gap: 2rem; margin-bottom: 3rem; } .split-row.reverse { direction: ltr; } }

/* Process/Steps Section */
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 3rem; }
.step-card { text-align: center; position: relative; }
.step-number { width: 60px; height: 60px; background: var(--clr-sunshine); color: var(--clr-ocean-dark); font-size: 1.5rem; font-weight: 900; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; z-index: 2; position: relative; box-shadow: 0 0 0 5px rgba(255,183,3,0.2); }
@media (min-width: 901px) {
    .step-card:not(:last-child)::after { content: ''; position: absolute; top: 30px; left: 60%; width: 100%; height: 2px; background: dashed 2px var(--clr-ocean-light); z-index: 1; }
}

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

.footer-cta {
    background: var(--clr-ocean);
    padding: 4rem;
    border-radius: var(--radius-lg);
    text-align: center;
    margin-top: -140px;
    margin-bottom: 4rem;
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 10;
}

.footer-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.footer-cta p {
    color: white;
    opacity: 0.9;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 4rem;
}

.footer-logo {
    margin-bottom: 1rem;
    display: inline-block;
}
.footer-logo .logo-img {
    height: 70px;
    background: white;
    border-radius: 50%;
    padding: 5px;
}

.florida-text {
    color: var(--clr-sunshine);
    font-weight: 700;
    margin-top: 1rem;
}

.footer-brand p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 0.5rem;
}

.footer-links h3, .footer-contact h3 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: white;
}

.footer-links a {
    display: block;
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    margin-bottom: 0.75rem;
    transition: var(--transition-fast);
}

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

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 1rem;
}

.footer-contact i {
    color: var(--clr-sunshine);
}

.footer-bottom {
    background: rgba(0,0,0,0.2);
    padding: 1.5rem 0;
    text-align: center;
    margin: 0 -5%;
}

.footer-bottom p {
    margin: 0;
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
}

/* ================= Responsive ================= */
@media (max-width: 900px) {
    .hero-container, .about-container, .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero h1 {
        font-size: 2.75rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .experience-badge {
        right: 0;
        bottom: -10px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 2rem;
        box-shadow: var(--shadow-md);
        gap: 1.5rem;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .footer-cta {
        padding: 2rem;
        margin-top: -100px;
    }
    
    .footer-cta h2 {
        font-size: 2rem;
    }
}

/* ================= Shared Page Header ================= */
.page-header {
    padding-top: 150px;
    padding-bottom: 80px;
    position: relative;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    color: var(--clr-ocean-dark);
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ================= Utility Classes ================= */
.pt-0 { padding-top: 0 !important; }
.pt-4 { padding-top: 2rem !important; }
.pb-0 { padding-bottom: 0 !important; }
.mt-5 { margin-top: 3rem !important; }
.text-center { text-align: center !important; }
.p-md { padding: 3rem !important; }
.rounded-lg { border-radius: var(--radius-lg) !important; }
.rounded-img { border-radius: var(--radius-md); box-shadow: var(--shadow-md); }

/* Text Colors */
.color-blue-text { color: var(--clr-ocean); }
.color-yellow-text { color: var(--clr-sunshine-hover); }
.color-coral-text { color: var(--clr-coral); }
.color-green-text { color: var(--clr-leaf); }

/* Backgrounds */
.bg-blue { background-color: var(--clr-ocean); color: white; }
.bg-yellow { background-color: var(--clr-sunshine); color: var(--clr-text-main); }
.bg-coral { background-color: var(--clr-coral); color: white; }
.bg-green { background-color: var(--clr-leaf); color: white; }

.bg-blue-light { background-color: rgba(0, 119, 182, 0.1); color: var(--clr-ocean-dark); }
.bg-yellow-light { background-color: rgba(255, 183, 3, 0.1); color: var(--clr-sunshine-hover); }
.bg-coral-light { background-color: rgba(255, 107, 107, 0.1); color: #d62828; }
.bg-green-light { background-color: rgba(56, 176, 0, 0.1); color: var(--clr-leaf); }

/* Navigation Active Link */
.nav-links .active-link {
    color: var(--clr-ocean);
    border-bottom: 2px solid var(--clr-ocean);
    padding-bottom: 2px;
}

/* ================= Quotes Section (About Page) ================= */
.quotes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.quote-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    position: relative;
    transition: var(--transition-smooth);
    border: 1px solid rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
}

.quote-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.quote-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.quote-text {
    font-size: 1.125rem;
    font-style: italic;
    color: var(--clr-text-main);
    flex-grow: 1;
    margin-bottom: 1.5rem;
}

.quote-author {
    font-weight: 700;
    color: var(--clr-text-muted);
    font-size: 1rem;
    margin-bottom: 1rem;
}

.quote-tag {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 700;
    align-self: flex-start;
}

/* ================= Resources Section (About Page) ================= */
.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.resource-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: var(--radius-md);
    border-top: 4px solid var(--clr-ocean-light);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-fast);
}

.resource-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.resource-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--clr-text-main);
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--clr-ocean);
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition-fast);
}

.read-more:hover {
    gap: 0.75rem;
    color: var(--clr-ocean-dark);
}

/* ================= Services Pages ================= */
.service-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.service-row.reverse .service-content {
    order: 2;
}

.service-row.reverse .service-img {
    order: 1;
}

.service-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* ================= News Section (News Page) ================= */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.news-card {
    display: flex;
    flex-direction: column;
    background: white;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    border: 1px solid rgba(0,0,0,0.05);
    position: relative;
}

.news-card h3 a::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
}

.news-card .read-more {
    position: relative;
    z-index: 2;
}

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

.news-img {
    position: relative;
    height: 220px;
}

.news-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.news-card:hover .news-img img {
    transform: scale(1.05);
}

.news-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.news-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.news-meta {
    display: flex;
    gap: 1.5rem;
    color: var(--clr-text-muted);
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.news-content h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.news-content h3 a {
    color: var(--clr-text-main);
    text-decoration: none;
    transition: var(--transition-fast);
}

.news-content h3 a:hover {
    color: var(--clr-ocean);
}

.news-content p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

@media (max-width: 900px) {
    .service-row, .service-row.reverse {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-row.reverse .service-content {
        order: 1;
    }
    
    .service-row.reverse .service-img {
        order: 2;
    }
}
