/* ---------------------------------
   PHONETIC GROUP — BRIGHT ELEGANT THEME
----------------------------------- */

:root {
    --primary: #f8f9fa;
    --secondary: #ffffff;
    --accent: #e6b89c;
    --accent-dark: #d4a384;
    --text: #333333;
    --text-light: #666666;
    --text-muted: #888888;
    --card-bg: rgba(255, 255, 255, 0.95);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 15px 40px rgba(0, 0, 0, 0.12);
    --radius: 16px;
    --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    --maxw: 1200px;
    --ff-display: 'Playfair Display', serif;
    --ff-sans: 'Poppins', sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    height: 100%;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    color: var(--text);
    font-family: var(--ff-sans);
    line-height: 1.6;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* Add padding to body to account for fixed header */
body {
    padding-top: 80px;
}

.container {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 20px;
}

/* ------------------------------
   HEADER
------------------------------ */

.site-header {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    padding: 10px 0;
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
}

/* Updated Brand Layout - Text under logo */
.brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    transition: var(--transition);
    gap: 8px;
}

.brand:hover {
    transform: translateY(-2px);
}

.logo {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
   
}

.logo img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
    display: block;
}

.brand-text {
    text-align: center;
}

.brand-text .name {
    font-weight: 700;
    color: var(--text);
    font-size: 1rem;
    line-height: 1.1;
    margin-bottom: 2px;
}

.brand-text .tag {
    font-size: 0.7rem;
    color: var(--text-muted);
    line-height: 1;
    font-weight: 500;
}

.main-nav ul {
    display: flex;
    gap: 25px;
    align-items: center;
    list-style: none;
}

.main-nav a {
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 30px;
    transition: var(--transition);
    position: relative;
}

.main-nav a:not(.cta):hover {
    color: var(--accent-dark);
}

.main-nav a:not(.cta):after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: var(--transition);
    transform: translateX(-50%);
}

.main-nav a:not(.cta):hover:after {
    width: 70%;
}

.main-nav a.cta {
    background: var(--accent);
    color: var(--text);
    font-weight: 600;
    box-shadow: var(--shadow);
}

.main-nav a.cta:hover {
    background: var(--accent-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

/* ------------------------------
   HERO SECTION
------------------------------ */

.hero {
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-left {
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-family: var(--ff-display);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-sub {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 30px;
    max-width: 500px;
}

.hero-cta {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
}

.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    text-align: center;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.btn-primary {
    background: var(--accent);
    color: var(--text);
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    background: var(--accent-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.btn-ghost {
    border: 2px solid var(--accent);
    color: var(--text);
    background: transparent;
}

.btn-ghost:hover {
    background: var(--accent);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.quick-list {
    list-style: none;
}

.quick-list li {
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    color: var(--text-light);
}

.quick-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

.hero-right {
    position: relative;
    animation: fadeInRight 1s ease-out;
    width: 100%;
}

/* HOMEPAGE SLIDER STYLES */
.homepage-slider {
    width: 100%;
    height: 400px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-hover);
    position: relative;
}

.homepage-slider .swiper-wrapper {
    width: 100%;
    height: 100%;
}

.homepage-slider .swiper-slide {
    width: 100%;
    height: 100%;
    position: relative;
}

.homepage-slider .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.homepage-pagination {
    bottom: 20px !important;
    z-index: 10;
}

.homepage-pagination .swiper-pagination-bullet {
    background: white;
    opacity: 0.5;
    width: 10px;
    height: 10px;
    transition: var(--transition);
}

.homepage-pagination .swiper-pagination-bullet-active {
    background: var(--accent);
    opacity: 1;
    transform: scale(1.2);
}

/* Fallback if Swiper doesn't work */
.homepage-slider .swiper-slide:not(:first-child) {
    display: none;
}

/* ------------------------------
   FEATURES SECTION
------------------------------ */

.features {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background: var(--card-bg);
    padding: 40px 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.feature-card h3 {
    font-family: var(--ff-display);
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text);
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* ------------------------------
   CLIENT SHOWCASE SECTION
------------------------------ */

.client-showcase {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.client-title {
    font-family: var(--ff-display);
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 15px;
    color: var(--text);
}

.client-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 50px;
    font-size: 1.1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Right-Moving Marquee */
.client-marquee {
    overflow: hidden;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 0;
    mask: linear-gradient(90deg, 
        transparent, 
        white 20%, 
        white 80%, 
        transparent
    );
    -webkit-mask: linear-gradient(90deg, 
        transparent, 
        white 20%, 
        white 80%, 
        transparent
    );
}

.marquee-track {
    display: flex;
    gap: 50px;
    width: max-content;
}

.marquee-right {
    animation: marqueeRight 40s linear infinite;
}

.marquee-right:hover {
    animation-play-state: paused;
}

@keyframes marqueeRight {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0%);
    }
}

.client-logo {
    flex-shrink: 0;
    padding: 20px;
    background: var(--card-bg);
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100px;
    width: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.client-logo:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: var(--shadow-hover);
}

.client-logo img {
    max-width: 100%;
    max-height: 60px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: var(--transition);
}

.client-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* ------------------------------
   ABOUT PAGE
------------------------------ */

.about-hero, .services-hero, .portfolio-hero, .contact-hero {
    padding: 120px 0 60px;
    text-align: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.about-hero h1, .services-hero h1, .portfolio-hero h1, .contact-hero h1 {
    font-family: var(--ff-display);
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--text);
}

.about-hero .lead, .services-hero .lead, .portfolio-hero .lead, .contact-hero .lead {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.values {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.grid-values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.card {
    background: var(--card-bg);
    padding: 40px 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.card h3 {
    font-family: var(--ff-display);
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text);
}

.card p {
    color: var(--text-light);
    line-height: 1.6;
}

.team {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.team h2 {
    font-family: var(--ff-display);
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 15px;
    color: var(--text);
}

.team .muted {
    text-align: center;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.team-swiper, .testimonial-swiper {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    max-width: 800px;
    margin: 0 auto;
}

.team-swiper .swiper-slide img {

    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
}

.testimonial-swiper .swiper-slide {
    text-align: center;
    font-style: italic;
    font-size: 1.2rem;
    padding: 40px;
    background: var(--card-bg);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
}

/* ------------------------------
   SERVICES PAGE
------------------------------ */

.services-list {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.services-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--card-bg);
    padding: 40px 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--accent);
}

.service-card h3 {
    font-family: var(--ff-display);
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text);
}

.service-card p {
    color: var(--text-light);
    line-height: 1.6;
}
.service-card {
    text-align: center;
    padding: 40px 25px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: rgba(230, 184, 156, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px auto;
}

.service-icon i {
    font-size: 32px;
    color: var(--accent);
}

.service-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text);
}

.service-card p {
    color: var(--text-muted);
    line-height: 1.6;
}

.service-pledge {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
}

.pledge-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 50px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-hover);
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.pledge-card h3 {
    font-family: var(--ff-display);
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--text);
}

.pledge-card p {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* ------------------------------
   PORTFOLIO PAGE
------------------------------ */

.gallery {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.gallery-item {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    background: var(--card-bg);
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.testimonials {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.testimonials h2 {
    font-family: var(--ff-display);
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 40px;
    color: var(--text);
}

/* ------------------------------
   CONTACT PAGE
------------------------------ */

.contact-hero p {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.contact-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    padding: 80px 0;
    align-items: start;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.contact-form {
    background: var(--card-bg);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-form:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    color: var(--text);
    font-weight: 500;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 16px;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.9);
    color: var(--text);
    margin-bottom: 20px;
    font-size: 1rem;
    transition: var(--transition);
    font-family: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 12px rgba(230, 184, 156, 0.4);
    outline: none;
    background: rgba(255, 255, 255, 1);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-info {
    position: sticky;
    top: 120px;
}

.info-card {
    background: var(--card-bg);
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.info-card h3 {
    font-family: var(--ff-display);
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--text);
}

.contact-item {
    margin-bottom: 20px;
}

.contact-item strong {
    display: block;
    margin-bottom: 5px;
    color: var(--text);
}

.contact-item p {
    color: var(--text-light);
    line-height: 1.6;
}
.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.contact-item i {
    color: var(--accent);
    width: 20px;
    margin-right: 12px;
    font-size: 16px;
}

.contact-item a {
    color: var(--text);
    text-decoration: none;
    transition: var(--transition);
}

.contact-item a:hover {
    color: var(--accent-dark);
}

.contact-item span {
    color: var(--text);
}

/* ------------------------------
   FOOTER STYLES
------------------------------ */

.site-footer {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 60px 0 20px;
    position: relative;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--accent-dark));
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-main {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
   
}

.footer-logo img {
    max-width: 70%;
    max-height: 70%;
    object-fit: contain;
}

.footer-brand-text h3 {
    font-family: var(--ff-display);
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: white;
}

.footer-brand-text p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-size: 0.95rem;
}

.footer-social h4 {
    color: white;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.social-icon:hover {
    background: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(230, 184, 156, 0.3);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column h4 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.1rem;
    position: relative;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--accent);
}

.footer-column ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
}

.footer-column ul li a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.contact-icon {
    margin-top: 2px;
    flex-shrink: 0;
    color: var(--accent);
}

.contact-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.contact-item a:hover {
    color: var(--accent);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-legal a:hover {
    color: var(--accent);
}

/* ------------------------------
   ANIMATIONS
------------------------------ */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-up.show {
    opacity: 1;
    transform: translateY(0);
}

/* ------------------------------
   RESPONSIVE
------------------------------ */

@media (max-width: 1000px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .grid-values, .services-grid-2, .gallery-grid, .features-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .about-hero h1, .services-hero h1, .portfolio-hero h1, .contact-hero h1 {
        font-size: 2.2rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .main-nav ul {
        display: none;
    }
    
    .grid-values, .services-grid-2, .gallery-grid, .features-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .values, .services-list, .gallery, .testimonials, .team, .features, .client-showcase {
        padding: 60px 0;
    }
    
    .contact-form {
        padding: 30px;
    }
    
    .card, .service-card, .feature-card {
        padding: 30px 20px;
    }
    
    .homepage-slider {
        height: 300px;
    }
    
    .site-footer {
        padding: 40px 0 20px;
    }
    
    .footer-main {
        text-align: center;
        align-items: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .footer-legal {
        justify-content: center;
    }
    
    /* Mobile brand layout */
    .brand {
        flex-direction: row;
        gap: 12px;
    }
    
    .brand-text {
        text-align: left;
    }
    
    .brand-text .name {
        font-size: 0.9rem;
    }
    
    .brand-text .tag {
        font-size: 0.65rem;
    }
    
    .logo {
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .about-hero h1, .services-hero h1, .portfolio-hero h1, .contact-hero h1 {
        font-size: 1.8rem;
    }
    
    .hero-sub, .about-hero .lead, .services-hero .lead, .portfolio-hero .lead, .contact-hero p {
        font-size: 1rem;
    }
    
    .nav-inner {
        padding: 0 10px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .card, .service-card, .pledge-card, .feature-card {
        padding: 25px 20px;
    }
    
    .hero-cta .btn {
        width: 100%;
        text-align: center;
    }
    
    .homepage-slider {
        height: 250px;
    }
    
    .footer-links {
        gap: 25px;
    }
    
    .footer-column h4 {
        font-size: 1rem;
    }
    
    .footer-column ul li a,
    .contact-item {
        font-size: 0.9rem;
    }
    
    .social-icons {
        gap: 10px;
    }
    
    .social-icon {
        width: 35px;
        height: 35px;
    }
    
    /* Mobile brand layout adjustments */
    .brand {
        gap: 8px;
    }
    
    .brand-text .name {
        font-size: 0.85rem;
    }
    
    .brand-text .tag {
        font-size: 0.6rem;
    }
    
    .logo {
        width: 40px;
        height: 40px;
    }
}
