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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333333; /* Charcoal Gray */
    background: #FAFAF8; /* Soft White */
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: transparent;
    backdrop-filter: none;
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: none;
    box-shadow: none;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(250, 250, 248, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid #F4C430;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar .nav-logo h2,
.navbar .nav-link {
    color: rgba(255, 255, 255, 0);
    transition: color 0.3s ease;
}

.navbar.scrolled .nav-logo h2,
.navbar.scrolled .nav-link {
    color: #000000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-logo h2 {
    color: #000000; /* Black */
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    font-family: 'Inter', sans-serif;
    transition: transform 0.3s ease;
}

.nav-logo h2:hover {
    transform: scale(1.05);
}

.nav-logo a {
    text-decoration: none;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: #333333; /* Charcoal Gray */
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    position: relative;
}

.nav-link:hover {
    color: #000000; /* Black */
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: #F4C430; /* Golden Yellow */
    transition: width 0.3s ease;
}

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

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: rgba(255, 255, 255, 0);
    transition: all 0.3s;
}

.navbar.scrolled .mobile-menu-toggle span {
    background: #000000;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, rgba(250, 250, 248, 0.7) 0%, rgba(237, 237, 237, 0.7) 100%), url('../images/hero.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="%23F4C430" opacity="0.1"/><circle cx="80" cy="40" r="1.5" fill="%23E53935" opacity="0.1"/><circle cx="60" cy="80" r="1" fill="%23F4C430" opacity="0.1"/></svg>');
    animation: float 20s ease-in-out infinite;
    z-index: 1;
}

/* Animated overlay elements */
.hero .floating-heart {
    position: absolute;
    font-size: 2rem;
    color: rgba(244, 196, 48, 0.4);
    animation: floatLeftRight 8s linear infinite;
    animation-fill-mode: backwards;
    z-index: 1;
}

.hero .floating-heart:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.hero .floating-heart:nth-child(2) {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.hero .floating-heart:nth-child(3) {
    top: 40%;
    left: 70%;
    animation-delay: 4s;
}

@keyframes floatLeftRight {
    0% {
        transform: translateX(-100vw);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateX(100vw);
        opacity: 0;
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes slideInLeft {
    from {
        transform: translateX(-100px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

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

.hero-content {
    text-align: center;
    max-width: 900px;
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
}

.hero-portrait {
    margin-bottom: 2rem;
    text-align: center;
}

.portrait-image {
    width: 200px;
    height: 200px;
    border-radius: 20px;
    object-fit: cover;
    border: 4px solid rgba(244, 196, 48, 0.8);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    z-index: 3;
}

.portrait-image:hover {
    transform: scale(1.05);
}

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

.hero-title {
    font-size: 5rem;
    margin-bottom: 0.5rem;
    font-weight: 900;
    letter-spacing: 5px;
    font-family: 'Inter', sans-serif;
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.8);
    animation: textGlow 3s ease-in-out infinite alternate;
}

@keyframes textGlow {
    from {
        text-shadow: 0 2px 4px rgba(255, 255, 255, 0.8);
    }
    to {
        text-shadow: 0 2px 4px rgba(255, 255, 255, 0.8), 0 0 20px rgba(244, 196, 48, 0.5);
    }
}

.gradient-text {
    color: #000000;
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.8);
}
    100% {
        background-position: -100% 0;
    }
}

.hero-subtitle-large {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #000000;
    font-weight: 700;
    letter-spacing: 4px;
    font-family: 'Inter', sans-serif;
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.8);
    animation: fadeInUp 1s ease-out 0.2s both, textPulse 2s ease-in-out infinite 1s;
}

@keyframes textPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

.hero-tagline {
    margin-bottom: 2rem;
    padding: 1rem 2rem;
    border-top: 2px solid #F4C430;
    border-bottom: 2px solid #F4C430;
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.tagline-text {
    font-size: 1.3rem;
    color: #000000;
    font-weight: 600;
    letter-spacing: 3px;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

.hero-contact {
    margin-bottom: 2rem;
}

.contact-badge {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: rgba(244, 196, 48, 0.9);
    border: 2px solid #F4C430;
    border-radius: 25px;
    color: #333333;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
    backdrop-filter: blur(10px);
}

.contact-badge:hover {
    background: #000000; /* Black */
    border-color: #000000;
    color: #FAFAF8; /* Soft White */
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.02); }
    100% { transform: scale(1); }
}

.contact-badge i {
    margin-right: 0.5rem;
    color: #000000;
}

.contact-badge:hover i {
    color: #333333;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #000000;
    line-height: 1.8;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
    animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
}

.btn-primary {
    background: #F4C430; /* Golden Yellow */
    color: #333333; /* Charcoal Gray */
    border-radius: 25px;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.btn-primary:hover {
    background: #E0B945; /* Slightly darker yellow */
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 30px rgba(244, 196, 48, 0.4);
}

.btn-secondary {
    background: #000000; /* Black */
    color: #FAFAF8; /* Soft White */
    border: 2px solid #000000;
    border-radius: 25px;
    animation: fadeInUp 1s ease-out 1s both;
}

.btn-secondary:hover {
    background: #FAFAF8; /* Soft White */
    color: #000000; /* Black */
    border-color: #000000;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

/* Section Titles */
.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #000000; /* Black */
    font-weight: 700;
    letter-spacing: 2px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #F4C430; /* Golden Yellow */
    border-radius: 2px;
}

/* Projects/Services Section */
.projects {
    padding: 5rem 0;
    background: #EDEDED; /* Light Gray */
    animation: slideInLeft 1s ease-out;
    animation-delay: 0.2s;
    animation-fill-mode: both;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.project-card {
    background: #FAFAF8; /* Soft White */
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid #EDEDED;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
    display: flex;
    flex-direction: column;
    min-height: 400px;
}

.project-card > *:not(button) {
    flex-grow: 1;
}

.project-card button {
    margin-top: auto;
    align-self: center;
}

.project-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 35px rgba(229, 57, 53, 0.2);
    border-color: #F4C430;
}

.project-card:nth-child(1) {
    animation-delay: 0.1s;
}

.project-card:nth-child(2) {
    animation-delay: 0.2s;
}

.project-card:nth-child(3) {
    animation-delay: 0.3s;
}

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

.project-icon {
    font-size: 3rem;
    color: #F4C430; /* Golden Yellow */
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.project-card:hover .project-icon {
    transform: scale(1.1) rotate(5deg);
    color: #E53935; /* Warm Red */
}

.project-card h3 {
    margin-bottom: 1rem;
    color: #000000; /* Black */
    font-size: 1.3rem;
    font-weight: 600;
}

.project-card p {
    color: #333333; /* Charcoal Gray */
    line-height: 1.6;
}

/* About Section */
.about {
    padding: 5rem 0;
    background: #FAFAF8; /* Soft White */
    animation: slideInRight 1s ease-out;
    animation-delay: 0.5s;
    animation-fill-mode: both;
}

.about-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    max-width: 1200px;
}

.about-image {
    flex-shrink: 0;
}

.profile-photo {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #F4C430;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.profile-photo:hover {
    transform: scale(1.05);
}

.about-text-content {
    max-width: 600px;
    text-align: left;
}

.about-text-content h2 {
    text-align: center;
    margin-bottom: 1.5rem;
}

.about-text {
    font-size: 1.2rem;
    color: #333333; /* Charcoal Gray */
    line-height: 1.8;
}

/* Why Choose Section */
.why-choose {
    padding: 5rem 0;
    background: #EDEDED; /* Light Gray */
    animation: slideInLeft 1s ease-out;
    animation-delay: 1s;
    animation-fill-mode: both;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.why-item {
    text-align: center;
    padding: 2rem;
    background: #FAFAF8; /* Soft White */
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 2px solid #EDEDED;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
}

.why-item:nth-child(1) {
    animation-delay: 0.1s;
}

.why-item:nth-child(2) {
    animation-delay: 0.2s;
}

.why-item:nth-child(3) {
    animation-delay: 0.3s;
}

.why-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 35px rgba(229, 57, 53, 0.2);
    border-color: #F4C430;
}

.why-icon {
    font-size: 2.5rem;
    color: #F4C430; /* Golden Yellow */
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.why-item:hover .why-icon {
    transform: scale(1.1) rotate(5deg);
    color: #000000; /* Black */
}

.why-item h3 {
    margin-bottom: 1rem;
    color: #000000; /* Black */
    font-size: 1.2rem;
    font-weight: 600;
}

.why-item p {
    color: #333333; /* Charcoal Gray */
    line-height: 1.6;
}

/* Team Section */
.team {
    padding: 5rem 0;
    background: #FAFAF8; /* Soft White */
}

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

.team-member {
    text-align: center;
    padding: 2rem;
    background: #FAFAF8; /* Soft White */
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 2px solid #EDEDED;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.team-member:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 35px rgba(229, 57, 53, 0.2);
    border-color: #F4C430;
}

.member-photo {
    font-size: 4rem;
    color: #F4C430; /* Golden Yellow */
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.team-member:hover .member-photo {
    transform: scale(1.1) rotate(5deg);
    color: #000000; /* Black */
}

.team-member h3 {
    margin-bottom: 0.5rem;
    color: #000000; /* Black */
    font-size: 1.5rem;
    letter-spacing: 2px;
    font-weight: 700;
}

.member-role {
    color: #F4C430; /* Golden Yellow */
    font-weight: 500;
}

.member-bio {
    color: #333333; /* Charcoal Gray */
    line-height: 1.6;
}

/* FAQ Section */
.faq {
    padding: 5rem 0;
    background: #EDEDED; /* Light Gray */
}

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

.faq-item {
    background: #FAFAF8; /* Soft White */
    padding: 2rem;
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 2px solid #EDEDED;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.faq-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 35px rgba(229, 57, 53, 0.2);
    border-color: #F4C430;
}

.faq-item h3 {
    color: #000000; /* Black */
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.faq-item p {
    color: #333333; /* Charcoal Gray */
    line-height: 1.6;
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background: #FAFAF8; /* Soft White */
}

.contact > .container > p {
    text-align: center;
    font-size: 1.1rem;
    color: #333333; /* Charcoal Gray */
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.contact-item {
    text-align: center;
    color: #333333; /* Charcoal Gray */
    transition: transform 0.3s ease;
}

.contact-item:hover {
    color: #000000; /* Black */
    transform: translateY(-5px);
}

.contact-item i {
    font-size: 1.5rem;
    color: #F4C430; /* Golden Yellow */
    margin-bottom: 0.5rem;
    display: block;
    transition: transform 0.3s ease;
}

.contact-item:hover i {
    transform: scale(1.2);
    color: #000000; /* Black */
}

.contact-item p {
    margin: 0.5rem 0;
    color: #333333; /* Charcoal Gray */
}

.contact-item a {
    color: #000000; /* Black */
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 600;
    font-size: 1.1rem;
}

.contact-item a:hover {
    color: #F4C430; /* Golden Yellow */
}

.contact-form {
    max-width: 500px;
    margin: 0 auto 3rem auto;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 1rem;
    border: 2px solid #EDEDED;
    border-radius: 10px;
    background: #FAFAF8; /* Soft White */
    color: #333333; /* Charcoal Gray */
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #F4C430; /* Golden Yellow */
    box-shadow: 0 0 20px rgba(244, 196, 48, 0.3);
}

.contact-form button {
    width: 100%;
    padding: 15px;
    background: #F4C430; /* Golden Yellow */
    color: #333333; /* Charcoal Gray */
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-form button:hover {
    background: #000000; /* Black */
    color: #FAFAF8; /* Soft White */
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}
    color: #0a0a0a;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
}

.contact-form button:hover {
    background: #e0b945;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.contact-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    animation: slideIn 0.3s ease;
}

.contact-message.success {
    background: rgba(46, 213, 115, 0.1);
    border: 1px solid #2ed573;
    color: #2ed573;
}

.contact-message.error {
    background: rgba(255, 71, 87, 0.1);
    border: 1px solid #ff4757;
    color: #ff4757;
}

.contact-message i {
    font-size: 1.2rem;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Footer */
.footer {
    background: #EDEDED; /* Light Gray */
    padding: 3rem 0 1rem;
    border-top: 3px solid #F4C430; /* Golden Yellow */
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 2rem;
}

.footer-section {
    flex: 1;
    min-width: 250px;
}

@media (max-width: 768px) {
    .footer-section {
        min-width: 100%;
        text-align: center;
    }
}

.footer-section h3 {
    color: #000000; /* Black */
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.footer-section h4 {
    color: #333333; /* Charcoal Gray */
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-section p {
    color: #333333; /* Charcoal Gray */
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #333333; /* Charcoal Gray */
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #000000; /* Black */
}

.footer-brand {
    font-size: 1.5rem;
    color: #ffffff;
    font-weight: 700;
    letter-spacing: 2px;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: #a0a0a0;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #d4af37;
}

.footer-bottom {
    text-align: center;
    border-top: 2px solid #F4C430; /* Golden Yellow */
    padding-top: 2rem;
    color: #333333; /* Charcoal Gray */
    max-width: 1200px;
    margin: 0 auto;
}

/* Responsive */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 1rem 2rem;
        gap: 1rem;
        border-top: 1px solid #F4C430;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        display: flex;
    }

    .hero-title {
        font-size: 2.5rem;
        letter-spacing: 3px;
    }

    .hero-profile-photo {
        width: 120px;
        height: 120px;
    }

    .hero-subtitle-large {
        font-size: 1.3rem;
        letter-spacing: 2px;
    }

    .tagline-text {
        font-size: 1rem;
        letter-spacing: 2px;
    }

    .contact-badge {
        font-size: 0.9rem;
        padding: 0.6rem 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero {
        padding-top: 6rem;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-section {
        text-align: center;
    }

    .footer-section ul {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .section-title {
        font-size: 2rem;
    }

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

    .about-image {
        order: -1;
    }

    .profile-photo {
        width: 200px;
        height: 200px;
    }

    .about-text-content {
        text-align: center;
        max-width: 100%;
    }

    .about-text-content h2 {
        text-align: center;
    }

    .faq-item {
        text-align: center;
        max-width: 500px;
        margin: 0 auto;
    }

    /* Mobile scroll reveal animation */
    .project-card,
    .why-item,
    .team-member,
    .faq-item {
        animation: none;
        opacity: 1;
        transform: translateY(0);
    }

    section.scroll-reveal {
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.6s ease, transform 0.6s ease;
    }

    section.scroll-reveal.active {
        opacity: 1;
        transform: translateY(0);
    }

    .projects {
        animation: fadeInUp 1s ease-out;
        animation-delay: 0.2s;
        animation-fill-mode: both;
    }

    .about {
        animation: fadeInUp 1s ease-out;
        animation-delay: 0.5s;
        animation-fill-mode: both;
    }

    .why-choose {
        animation: fadeInUp 1s ease-out;
        animation-delay: 1s;
        animation-fill-mode: both;
    }
}