@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,700;1,400&family=Caveat:wght@500;700&display=swap');

:root {
    --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --secondary-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --accent-gradient: linear-gradient(135deg, #ff8c00 0%, #ff4e50 100%);
    --card-gradient: linear-gradient(135deg, #ffffff 0%, #f8f0ff 100%);
    --bg-gradient: linear-gradient(160deg, #f0e6ff 0%, #e8f4ff 50%, #fff0f6 100%);
    --accent-color: #ff8c00;
    --accent-alt: #764ba2;
    --text-color: #1a1a2e;
    --text-muted: #6b7280;
    --white: #ffffff;
    --light-gray: #e9ecef;
    --shadow-sm: 0 4px 15px rgba(102, 126, 234, 0.15);
    --shadow-md: 0 8px 30px rgba(102, 126, 234, 0.25);
    --shadow-lg: 0 20px 60px rgba(102, 126, 234, 0.3);
    --radius: 20px;
    --radius-sm: 10px;
}

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

body {
    font-family: 'Inter', 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background: var(--bg-gradient);
    background-attachment: fixed;
    overflow-x: hidden;
}

/* ── Artsy floating blobs ── */
body::before,
body::after {
    content: '';
    position: fixed;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.35;
    pointer-events: none;
    z-index: 0;
}

body::before {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, #c084fc, #818cf8);
    top: -150px;
    left: -150px;
    animation: blobDrift 18s ease-in-out infinite alternate;
}

body::after {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #fb7185, #f472b6);
    bottom: -100px;
    right: -100px;
    animation: blobDrift 22s ease-in-out infinite alternate-reverse;
}

@keyframes blobDrift {
    0%   { transform: translate(0, 0) scale(1); }
    50%  { transform: translate(40px, 30px) scale(1.08); }
    100% { transform: translate(-20px, 50px) scale(0.95); }
}

section, nav, footer { position: relative; z-index: 1; }

a {
    text-decoration: none;
    color: var(--text-color);
    transition: all 0.3s ease;
}

/* ── Section Titles ── */
.section-title {
    text-align: center;
    margin-bottom: 2.5rem;
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    font-weight: 700;
    font-style: italic;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    padding-bottom: 1.2rem;
    letter-spacing: -0.5px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 5px;
    border-radius: 50px;
    background: var(--accent-gradient);
    /* wavy underline effect */
    clip-path: polygon(0% 0%, 10% 100%, 20% 0%, 30% 100%, 40% 0%, 50% 100%, 60% 0%, 70% 100%, 80% 0%, 90% 100%, 100% 0%);
}

section {
    padding: 5rem 0;
}

/* ── Navbar ── */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 5%;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(102, 126, 234, 0.15);
    border-bottom: 1px solid rgba(255, 255, 255, 0.8);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 65px;
}

.logo a h5 {
    font-family: 'Caveat', cursive;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    font-size: 1.3rem;
    letter-spacing: 0.5px;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-gradient);
    margin: 3px 0;
    border-radius: 2px;
    transition: 0.3s;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 0.5rem;
}

.nav-links a {
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.5rem 1.2rem;
    border-radius: 25px;
    background: rgba(102, 126, 234, 0.1);
    color: var(--accent-alt);
    transition: all 0.3s ease;
    border: 1px solid rgba(102, 126, 234, 0.2);
}

.nav-links a:hover {
    background: var(--primary-gradient);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
    border-color: transparent;
}

/* ── First Section ── */
.first-section {
    margin-top: 65px;
    padding-top: 3rem;
}

/* ── About Section ── */
.about {
    background: transparent;
    overflow: visible;
}

.about-content {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    align-items: center;
    gap: 3rem;
}

.about-image {
    flex: 1;
    text-align: center;
}

.about-image img {
    width: 100%;
    max-width: 280px;
    height: 280px;
    object-fit: cover;
    /* organic blob shape instead of circle */
    border-radius: 60% 40% 55% 45% / 50% 60% 40% 50%;
    box-shadow: 0 0 0 6px rgba(102, 126, 234, 0.2), 0 0 0 14px rgba(240, 147, 251, 0.12), var(--shadow-lg);
    transition: transform 0.6s ease, border-radius 0.6s ease, box-shadow 0.4s ease;
    animation: morphBlob 10s ease-in-out infinite;
}

@keyframes morphBlob {
    0%   { border-radius: 60% 40% 55% 45% / 50% 60% 40% 50%; }
    33%  { border-radius: 45% 55% 40% 60% / 60% 40% 55% 45%; }
    66%  { border-radius: 55% 45% 60% 40% / 40% 55% 45% 60%; }
    100% { border-radius: 60% 40% 55% 45% / 50% 60% 40% 50%; }
}

.about-image img:hover {
    transform: scale(1.05) rotate(2deg);
    box-shadow: 0 0 0 8px rgba(102, 126, 234, 0.3), 0 0 0 18px rgba(240, 147, 251, 0.15), var(--shadow-lg);
    animation-play-state: paused;
}

.about-image centre {
    display: block;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--text-muted);
    font-style: italic;
}

.about-text {
    flex: 2;
}

.about-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    font-style: italic;
    margin-bottom: 0.5rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

.about-text p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.about-text em {
    color: var(--accent-alt);
    font-style: normal;
    font-weight: 600;
}

.connect {
    margin-top: 2rem;
}

.connect h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    padding: 0.4rem 0.8rem;
    font-size: 0.85rem;
    background: var(--white);
    border-radius: 25px;
    border: 1px solid rgba(102, 126, 234, 0.2);
    color: var(--accent-alt);
    font-weight: 500;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-gradient);
    color: var(--white);
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.social-links i {
    margin-right: 0.3rem;
}

/* ── Services Section ── */
.services {
    background: transparent;
    overflow: visible;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.service-card {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(255, 255, 255, 0.8);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-12px) rotate(-1deg);
    box-shadow: var(--shadow-lg);
    border-color: rgba(102, 126, 234, 0.3);
}

.service-card:nth-child(even):hover {
    transform: translateY(-12px) rotate(1deg);
}

.service-card i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.service-card h3 {
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-color);
}

.service-card ul {
    list-style: none;
    text-align: left;
}

.service-card ul li {
    font-size: 0.875rem;
    color: var(--text-muted);
    padding: 0.3rem 0;
    padding-left: 1rem;
    position: relative;
    line-height: 1.5;
}

.service-card ul li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

/* ── Articles Section ── */
.articles {
    background: transparent;
}

.articles-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.articles-wrapper {
    position: relative;
    margin-bottom: 2rem;
}

.articles-grid {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 1rem 0.5rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.articles-grid::-webkit-scrollbar { display: none; }

.article-card {
    background: var(--card-gradient);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(255, 255, 255, 0.8);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    min-width: 280px;
    max-width: 280px;
    flex-shrink: 0;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
}

.article-card:nth-child(odd)  { transform: rotate(-1deg); }
.article-card:nth-child(even) { transform: rotate(1deg); }

.article-card:hover {
    transform: translateY(-10px) rotate(0deg) scale(1.02);
    box-shadow: var(--shadow-lg);
    border-color: rgba(102, 126, 234, 0.3);
}

.article-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.article-image img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    background-color: var(--light-gray);
}

.article-title h3 {
    font-family: 'Playfair Display', serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-color);
    line-height: 1.4;
    margin: 0;
}

.read-article {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.85rem;
    font-weight: 600;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}

.read-article:hover {
    gap: 0.6rem;
}

.scroll-arrow {
    display: none;
}

.read-more {
    text-align: center;
    margin-top: 1rem;
}

.read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 2rem;
    background: var(--primary-gradient);
    color: var(--white);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.read-more-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    color: var(--white);
}

/* ── CTA Section ── */
.cta {
    background: transparent;
    padding: 3rem 0;
    text-align: center;
}

.cta-container {
    max-width: 750px;
    margin: 0 auto;
    padding: 2.5rem 2rem;
    background: var(--card-gradient);
    border-radius: 40% 60% 55% 45% / 8% 8% 8% 8%;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.cta-container p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-muted);
}

.cta-container b {
    color: var(--text-color);
    font-weight: 700;
}

.cta-container em {
    background: var(--secondary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-style: normal;
    font-weight: 600;
}

/* ── Newsletter Section ── */
.newsletter {
    background: transparent;
    padding: 2rem 0 4rem;
    text-align: center;
}

.newsletter-container {
    max-width: 480px;
    margin: 0 auto;
    padding: 2.5rem 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(255, 255, 255, 0.8);
    position: relative;
}

.newsletter-container::before {
    content: '✦';
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: spinStar 6s linear infinite;
}

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

.newsletter h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    font-style: italic;
    margin-bottom: 0.5rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.newsletter p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
    max-width: 380px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 0.85rem 1rem;
    border: 1.5px solid rgba(102, 126, 234, 0.2);
    border-radius: 30px;
    font-family: inherit;
    font-size: 0.9rem;
    background: var(--white);
    color: var(--text-color);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    outline: none;
}

.newsletter-form input:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.15);
}

.newsletter-form button {
    padding: 0.85rem 1.5rem;
    background: var(--primary-gradient);
    color: var(--white);
    border: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
    white-space: nowrap;
}

.newsletter-form button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ── Subscription Popup ── */
.subscription-popup {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--white);
    padding: 1.5rem 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    display: none;
    z-index: 2000;
    text-align: center;
    border: 1px solid rgba(102, 126, 234, 0.2);
    min-width: 200px;
}

.subscription-popup.show { display: block; }

.subscription-popup i {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    display: block;
    background: linear-gradient(135deg, #28a745, #20c997);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subscription-popup p {
    margin: 0;
    font-weight: 700;
    color: var(--text-color);
    font-size: 1rem;
}

/* ── CAPTCHA ── */
.captcha-container {
    display: none;
    margin: 0.75rem 0;
    padding: 0.75rem 1rem;
    background: rgba(102, 126, 234, 0.05);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(102, 126, 234, 0.2);
}

.captcha-container.show { display: block; }

.captcha-question {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-size: 0.9rem;
}

.captcha-input {
    width: 80px;
    padding: 0.5rem;
    border: 1.5px solid rgba(102, 126, 234, 0.3);
    border-radius: var(--radius-sm);
    text-align: center;
    font-family: inherit;
    outline: none;
}

.captcha-input:focus {
    border-color: #667eea;
}

/* ── Privacy Modal ── */
.privacy-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(26, 26, 46, 0.6);
    backdrop-filter: blur(4px);
}

.privacy-modal-content {
    background: var(--white);
    margin: 5% auto;
    padding: 2.5rem;
    border-radius: var(--radius);
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    box-shadow: var(--shadow-lg);
}

.privacy-close {
    position: absolute;
    right: 1.5rem;
    top: 1rem;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-muted);
    transition: color 0.3s ease;
    line-height: 1;
}

.privacy-close:hover {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ── Service Modal ── */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(26, 26, 46, 0.7);
    backdrop-filter: blur(4px);
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: var(--white);
    border-radius: var(--radius);
    max-width: 800px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-lg);
}

.modal-carousel {
    position: relative;
    height: 300px;
    overflow: hidden;
    border-radius: var(--radius) var(--radius) 0 0;
}

.modal-carousel-inner { height: 100%; position: relative; }

.modal-slide { display: none; height: 100%; }
.modal-slide.active { display: block; }
.modal-slide img { width: 100%; height: 100%; object-fit: cover; }

.modal-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.modal-control:hover {
    background: var(--primary-gradient);
    color: var(--white);
}

.modal-control.prev { left: 15px; }
.modal-control.next { right: 15px; }

.modal-description { padding: 2rem; }
.description-slide { display: none; }
.description-slide.active { display: block; }
.description-slide h3 { margin-bottom: 1rem; font-weight: 700; }
.description-slide p { color: var(--text-muted); line-height: 1.6; }

.modal-caption {
    padding: 1rem 2rem 2rem;
    border-top: 1px solid var(--light-gray);
    background: linear-gradient(135deg, #f8f0ff 0%, #f0f4ff 100%);
    border-radius: 0 0 var(--radius) var(--radius);
}

.caption-slide { display: none; }
.caption-slide.active { display: block; }
.caption-slide h4 { margin-bottom: 0.5rem; font-weight: 700; }
.caption-slide p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.5; }

/* ── Footer ── */
.footer {
    background: var(--primary-gradient);
    color: var(--white);
    padding: 2rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--secondary-gradient);
}

.footer p {
    font-family: 'Caveat', cursive;
    font-size: 1.1rem;
    opacity: 0.95;
    letter-spacing: 0.5px;
}

/* ── Animations ── */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
    to { opacity: 1; transform: translateY(0); }
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    animation: slideInLeft 0.8s ease forwards;
}

@keyframes slideInLeft {
    to { opacity: 1; transform: translateX(0); }
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    animation: slideInRight 0.8s ease forwards;
}

@keyframes slideInRight {
    to { opacity: 1; transform: translateX(0); }
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }
.service-card:nth-child(5) { animation-delay: 0.5s; }
.service-card:nth-child(6) { animation-delay: 0.6s; }

/* ── Loading ── */
.loading {
    text-align: center;
    padding: 2rem;
    color: var(--text-muted);
    font-style: italic;
}

/* ── Desktop scroll arrows ── */
@media (min-width: 768px) {
    .articles-wrapper { display: flex; align-items: center; }
    .articles-grid { margin: 0 3rem; overflow-x: hidden; }
    .article-card { min-width: 300px; max-width: 300px; padding: 2rem; }
    .article-image img { width: 80px; height: 80px; }
    .article-title h3 { font-size: 1rem; }

    .scroll-arrow {
        display: block;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: var(--white);
        border: none;
        width: 42px;
        height: 42px;
        border-radius: 50%;
        font-size: 1.2rem;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: var(--shadow-sm);
        z-index: 10;
    }

    .scroll-arrow:hover {
        background: var(--primary-gradient);
        color: var(--white);
        transform: translateY(-50%) scale(1.1);
        box-shadow: var(--shadow-md);
    }

    .scroll-left { left: 0; }
    .scroll-right { right: 0; }
}

/* ── Tablet ── */
@media (max-width: 992px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── Mobile ── */
@media (max-width: 768px) {
    .hamburger { display: flex; }

    .nav-links {
        position: fixed;
        top: 65px;
        right: -100%;
        width: 100%;
        height: calc(100vh - 65px);
        background: rgba(255, 255, 255, 0.97);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: right 0.3s ease;
        gap: 1rem;
    }

    .nav-links.active { right: 0; }
    .nav-links li { margin: 0; }

    .about-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .about-image { padding-right: 0; }
    .social-links { justify-content: center; }
    .modal-carousel { height: 250px; }
}

@media (max-width: 576px) {
    .services-grid { grid-template-columns: 1fr; }
    .navbar { padding: 0.5rem 3%; }
    .section-title { font-size: 1.8rem; }
    .modal-content { width: 98%; }
    .modal-carousel { height: 200px; }
    .modal-description { padding: 1rem; }
    .newsletter-form { flex-direction: column; }
    .newsletter-form button { width: 100%; }
}
