/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    position: relative;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

.italic {
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    font-weight: 400;
}

/* ===== BADGE ===== */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #4a9d7a;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: #4a9d7a;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* ===== SECTION HEADER ===== */
.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-title {
    font-size: 48px;
    font-weight: 600;
    line-height: 1.2;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.section-description {
    font-size: 18px;
    line-height: 1.7;
    color: #666;
}

/* ===== BUTTONS ===== */
.cta-button {
    background: #3d7a7a;
    color: white;
    border: none;
    padding: 18px 35px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(61, 122, 122, 0.3);
}

.cta-button:hover {
    background: #2c5f5f;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(61, 122, 122, 0.4);
}

.cta-button.full-width {
    width: 100%;
}

/* ===== HERO SECTION ===== */
.hero {
    background: linear-gradient(135deg, 
        #1a4d4d 0%, 
        #2c5f5f 15%, 
        #3d7a7a 35%, 
        #4a8a8a 50%, 
        #5a9d9d 65%, 
        #4a9d7a 85%, 
        #3d8a7a 100%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    min-height: 130vh;
    padding: 20px;
    padding-bottom: 100px;
    position: relative;
    overflow: visible;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 60%);
    animation: float 25s ease-in-out infinite;
    border-radius: 50%;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 400px;
    background: linear-gradient(to bottom, 
        rgba(61, 138, 122, 0) 0%,
        rgba(90, 157, 157, 0.03) 10%,
        rgba(150, 195, 190, 0.08) 20%,
        rgba(180, 210, 205, 0.15) 30%,
        rgba(200, 220, 218, 0.25) 40%,
        rgba(215, 232, 230, 0.4) 50%,
        rgba(230, 240, 238, 0.6) 60%,
        rgba(238, 244, 243, 0.75) 70%,
        rgba(244, 248, 247, 0.88) 80%,
        rgba(248, 250, 251, 0.95) 90%,
        #f8fafb 100%);
    pointer-events: none;
    z-index: 2;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(5deg); }
    66% { transform: translate(-20px, 20px) rotate(-5deg); }
}

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Scroll reveal classes */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

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

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

.scroll-reveal-left.revealed {
    opacity: 1;
    transform: translateX(0);
}

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

.scroll-reveal-right.revealed {
    opacity: 1;
    transform: translateX(0);
}

.hero .container {
    position: relative;
    z-index: 1;
}

/* Navigation */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: rgba(255, 255, 255, 0.98);
    border-radius: 50px;
    margin-bottom: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    position: relative;
}

/* Back to Portfolio Button */
.back-to-portfolio {
    position: fixed;
    left: 20px;
    top: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: rgba(61, 122, 122, 0.95);
    border: 1px solid rgba(61, 122, 122, 0.3);
    border-radius: 25px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.back-to-portfolio:hover {
    background: rgba(61, 122, 122, 1);
    transform: translateX(-2px);
    box-shadow: 0 4px 12px rgba(61, 122, 122, 0.4);
}

.back-to-portfolio svg {
    transition: transform 0.3s ease;
}

.back-to-portfolio:hover svg {
    transform: translateX(-3px);
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 22px;
    font-weight: 700;
    color: #2c5f5f;
    padding: 8px 16px;
    background: linear-gradient(135deg, #e8f4f0 0%, #d4ece3 100%);
    border-radius: 50px;
}

.logo svg {
    color: #3d7a7a;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #3d7a7a;
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: #3d7a7a;
}

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

.nav-contact {
    display: flex;
    align-items: center;
    gap: 15px;
}

.phone-icon {
    color: #3d7a7a;
}

.phone-number {
    font-weight: 600;
    color: #333;
}

.contact-link {
    text-decoration: none;
    color: white;
    font-weight: 600;
    cursor: pointer;
    background: linear-gradient(135deg, #3d7a7a 0%, #2c5f5f 100%);
    padding: 12px 28px;
    border-radius: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(61, 122, 122, 0.3);
}

.contact-link:hover {
    background: linear-gradient(135deg, #2c5f5f 0%, #1a4d4d 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(61, 122, 122, 0.4);
}

.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: #2c5f5f;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Hero Content */
.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 60px 40px;
    background: rgba(255, 255, 255, 0.98);
    border-radius: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.hero-text {
    padding: 40px;
}

.hero-title {
    font-size: 72px;
    font-weight: 600;
    line-height: 1.1;
    color: #1a1a1a;
    margin-bottom: 30px;
}

.hero-description {
    font-size: 18px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-image {
    position: relative;
    height: 600px;
    border-radius: 30px;
    overflow: hidden;
    background: linear-gradient(180deg, #c8dfe9 0%, #a8c9d8 100%);
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

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

/* ===== SERVICES SECTION ===== */
.services {
    padding: 120px 20px 100px 20px;
    background: #f8fafb;
    position: relative;
    z-index: 3;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(61, 122, 122, 0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e8f4f0 0%, #d4ece3 100%);
    border-radius: 20px;
    color: #3d7a7a;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, #3d7a7a 0%, #5a9d9d 100%);
    color: white;
    transform: rotate(5deg);
}

.service-card h3 {
    font-size: 24px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.service-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
}

.read-more-btn {
    background: transparent;
    color: #3d7a7a;
    border: 2px solid #3d7a7a;
    padding: 12px 28px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
}

.read-more-btn:hover {
    background: #3d7a7a;
    color: white;
    transform: translateX(5px);
}

.service-card {
    display: flex;
    flex-direction: column;
}

/* ===== ABOUT SECTION ===== */
.about {
    padding: 100px 20px;
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.about-card {
    position: absolute;
    bottom: 30px;
    right: -30px;
    background: white;
    padding: 30px 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.about-card-number {
    font-size: 48px;
    font-weight: 700;
    color: #3d7a7a;
    line-height: 1;
}

.about-card-text {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-top: 10px;
}

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

.about-text p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 40px 0;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 42px;
    font-weight: 700;
    color: #3d7a7a;
    line-height: 1;
}

.stat-label {
    font-size: 14px;
    color: #666;
    margin-top: 10px;
}

.features-list {
    list-style: none;
    margin-top: 30px;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 17px;
    color: #333;
    margin-bottom: 15px;
}

.features-list svg {
    flex-shrink: 0;
}

/* ===== TEAM SECTION ===== */
.team {
    padding: 100px 20px;
    background: linear-gradient(135deg, #ffffff 0%, #f5faf8 50%, #e8f4f0 100%);
    position: relative;
    overflow: hidden;
}

.team::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(74, 157, 122, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.team-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #3d7a7a 0%, #4a9d7a 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.team-card:hover::before {
    transform: scaleX(1);
}

.team-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 50px rgba(61, 122, 122, 0.25);
}

.team-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
    position: relative;
}

.team-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to top, rgba(255,255,255,0.9) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.team-card:hover .team-image::after {
    opacity: 1;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    filter: grayscale(0.2);
}

.team-card:hover .team-image img {
    transform: scale(1.08);
    filter: grayscale(0);
}

.team-info {
    padding: 35px 30px;
    text-align: center;
    background: linear-gradient(to bottom, #ffffff 0%, #fafcfb 100%);
}

.team-info h3 {
    font-size: 26px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.team-card:hover .team-info h3 {
    color: #3d7a7a;
}

.team-role {
    font-size: 16px;
    font-weight: 600;
    color: #3d7a7a;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.team-specialty {
    font-size: 15px;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.5;
}

.team-education {
    font-size: 14px;
    color: #999;
    font-style: italic;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials {
    padding: 100px 20px;
    background: linear-gradient(135deg, #e8f4f0 0%, #f0f8f5 100%);
}

.testimonials-slider {
    position: relative;
    max-width: 900px;
    margin: 60px auto 40px;
    min-height: 350px;
}

.testimonial-card {
    background: white;
    padding: 50px;
    border-radius: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.5s ease;
    pointer-events: none;
}

.testimonial-card.active {
    opacity: 1;
    transform: translateX(0);
    position: relative;
    pointer-events: all;
}

.stars {
    font-size: 24px;
    margin-bottom: 25px;
    color: #ffc107;
}

.testimonial-text {
    font-size: 20px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 30px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 20px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3d7a7a 0%, #5a9d9d 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 600;
}

.author-name {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
}

.author-location {
    font-size: 14px;
    color: #999;
}

.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.slider-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid #3d7a7a;
    background: white;
    color: #3d7a7a;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background: #3d7a7a;
    color: white;
}

.slider-dots {
    display: flex;
    gap: 12px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #3d7a7a;
    width: 30px;
    border-radius: 6px;
}

/* ===== APPOINTMENT SECTION ===== */
.appointment {
    padding: 100px 20px;
    background: white;
}

.appointment-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: start;
}

.appointment-info h2 {
    text-align: left;
    margin-bottom: 20px;
}

.appointment-info p {
    font-size: 18px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contact-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e8f4f0 0%, #d4ece3 100%);
    border-radius: 12px;
}

.contact-label {
    font-size: 14px;
    color: #999;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-value {
    font-size: 17px;
    color: #333;
    font-weight: 500;
}

.appointment-form-wrapper {
    background: #f8fafb;
    padding: 50px;
    border-radius: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.appointment-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 15px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3d7a7a;
    box-shadow: 0 0 0 3px rgba(61, 122, 122, 0.1);
}

.form-group textarea {
    resize: vertical;
}

.form-note {
    font-size: 13px;
    color: #999;
    text-align: center;
    margin-top: 10px;
}

/* ===== GALLERY SECTION ===== */
.gallery {
    padding: 100px 20px;
    background: linear-gradient(135deg, #f8fafb 0%, #e8f4f0 50%, #f0f8f5 100%);
}

.gallery-masonry {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    grid-auto-flow: dense;
}

.gallery-item {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    cursor: pointer;
}

.gallery-item.tall {
    grid-row: span 2;
}

.gallery-item.wide {
    grid-column: span 2;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(61, 122, 122, 0.2);
}

.gallery-image {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.gallery-item:hover .gallery-image img {
    transform: scale(1.15);
}

.gallery-info {
    padding: 20px;
    background: white;
}

.gallery-info h4 {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 5px;
}

.gallery-info p {
    font-size: 14px;
    color: #999;
}

/* ===== FOOTER ===== */
.footer {
    background: #1a1a1a;
    color: #fff;
    padding: 80px 20px 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 50px;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: white;
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 25px;
    padding: 12px 24px;
    background: linear-gradient(135deg, rgba(61, 122, 122, 0.2) 0%, rgba(74, 157, 122, 0.15) 100%);
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.footer-logo:hover {
    background: linear-gradient(135deg, rgba(61, 122, 122, 0.3) 0%, rgba(74, 157, 122, 0.25) 100%);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.footer-logo svg {
    color: #4a9d7a;
    filter: drop-shadow(0 2px 4px rgba(74, 157, 122, 0.3));
}

.footer-description {
    font-size: 16px;
    line-height: 1.6;
    color: #aaa;
    margin-bottom: 25px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #3d7a7a;
    transform: translateY(-3px);
}

.footer-column h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #aaa;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    color: #aaa;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: #aaa;
    font-size: 14px;
}

.footer-legal {
    display: flex;
    gap: 15px;
    align-items: center;
}

.footer-legal a {
    color: #aaa;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: white;
}

.footer-legal span {
    color: #666;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 60px;
    }
    
    .section-title {
        font-size: 42px;
    }
    
    .about-content {
        gap: 50px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-title {
        font-size: 52px;
    }
    
    .hero-image {
        height: 500px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .about-card {
        right: 20px;
    }
    
    .appointment-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .gallery-masonry {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-item.wide {
        grid-column: span 1;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 20px;
    }
    
    .back-to-portfolio {
        left: 10px;
        top: 10px;
        padding: 8px 12px;
        font-size: 12px;
    }
    
    .back-to-portfolio span {
        display: none;
    }
    
    .nav-links {
        display: none;
    }
    
    .nav-contact {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-text {
        padding: 20px;
    }
    
    .hero-title {
        font-size: 42px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .stat-number {
        font-size: 32px;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-card {
        padding: 30px;
    }
    
    .testimonial-text {
        font-size: 18px;
    }
    
    .appointment-form-wrapper {
        padding: 30px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .gallery-masonry {
        grid-template-columns: 1fr;
    }
    
    .gallery-item.tall,
    .gallery-item.wide {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 32px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
}
