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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Scroll offset for sections to account for fixed navbar */
section[id] {
    scroll-margin-top: 100px;
}

/* Navigation Styles */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 2rem 0;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
    padding: 1rem 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

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

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

.logo-img {
    height: 100px;
    width: auto;
    transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    object-fit: contain;
}

.navbar.scrolled .logo-img {
    height: 60px;
}

.logo h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    transition: color 0.3s ease;
    letter-spacing: -0.5px;
}

.navbar.scrolled .logo h2 {
    color: #1a1a1a;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-menu li a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    letter-spacing: 0.3px;
}

.navbar.scrolled .nav-menu li a {
    color: #333;
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: currentColor;
    transition: width 0.3s ease;
}

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

.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background: #fff;
    margin: 3px 0;
    transition: all 0.3s ease;
}

.navbar.scrolled .menu-toggle span {
    background: #1a1a1a;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-image: url('images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.3) 100%);
}

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

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
    line-height: 1.1;
}

.hero-description {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 400;
    margin-bottom: 2.5rem;
    opacity: 1;
    letter-spacing: 0.5px;
    line-height: 1.5;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hero-desc-main {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    letter-spacing: -0.5px;
    line-height: 1.2;
    text-transform: uppercase;
    background: linear-gradient(135deg, #fff 0%, #e0e0e0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc-sub {
    font-size: clamp(1.1rem, 2vw, 1.6rem);
    font-weight: 300;
    letter-spacing: 1px;
    opacity: 0.9;
    font-style: italic;
}

.hero-cta {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid #fff;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    letter-spacing: 0.5px;
    text-decoration: none;
}

.hero-cta:hover {
    background: #fff;
    color: #333;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Contact Page Hero */
.hero-contact {
    height: 50vh;
    min-height: 400px;
}

.hero-title-contact {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -1px;
    line-height: 1.1;
}

.hero-desc-contact {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    font-weight: 300;
    opacity: 0.95;
    letter-spacing: 0.3px;
}

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

/* About Section */
.about-section {
    background: #C9A961;
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 0;
    align-items: center;
    position: relative;
}

.about-image-wrapper {
    position: relative;
    z-index: 1;
    padding-right: 0;
    display: flex;
    justify-content: center;
}

.about-image {
    width: 100%;
    max-width: 650px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    display: block;
}

.about-decor-circle {
    position: absolute;
    top: -80px;
    right: -80px;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    z-index: 1;
}

.about-content-card {
    background: #fff;
    padding: 3rem 2.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 2;
    margin-left: -220px;
    max-width: 600px;
}

.about-title {
    font-size: clamp(1.3rem, 3vw, 2.0rem);
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.2rem;
    letter-spacing: -0.5px;
}

.about-text {
    font-size: clamp(0.9rem, 3.0vw, 1.1rem);
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 1.2rem;
}

.about-cta {
    margin-top: 1.5rem;
    padding: 1rem 2.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
    background: #C9A961;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.about-cta:hover {
    background: #b89850;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Why Choose Us Section */
.why-choose-section {
    background: #fff;
    padding: 100px 20px 0;
}

.why-choose-container {
    max-width: 1200px;
    padding: 0px 20px;
    margin: 0 auto;
}

.why-choose-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.why-choose-lead {
    font-size: clamp(0.9rem, 2vw, 1.35rem);
    line-height: 1.8;
    color: #444;
    max-width: 900px;
    margin: 0 auto;
    font-weight: 400;
}

.why-choose-content {
    margin-bottom: 4rem;
}

.why-choose-title {
    font-size: clamp(1.3rem, 3.5vw, 3rem);
    font-weight: 700;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 3rem;
    letter-spacing: -0.5px;
}

.why-choose-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.feature-item {
    text-align: center;
    padding: 2rem 1.5rem;
}

.feature-icon {
    font-size: 3rem;
    font-weight: 700;
    color: #C9A961;
    margin-bottom: 1rem;
    line-height: 1;
}

.feature-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.8rem;
    letter-spacing: -0.3px;
}

.feature-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
}

.why-choose-cta-text {
    text-align: center;
    font-size: clamp(0.9rem, 1.8vw, 1.25rem);
    line-height: 1.8;
    color: #333;
    max-width: 800px;
    margin: 0 auto;
    font-weight: 500;
}

.why-choose-specialties {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 5rem 20px;
    text-align: center;
    width: 100%;
}

.specialties-content {
    max-width: 1200px;
    margin: 0 auto;
}

.specialties-heading {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 600;
    color: #fff;
    margin-bottom: 3rem;
    letter-spacing: -0.5px;
}

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

.specialty-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(201, 169, 97, 0.3);
    border-radius: 12px;
    padding: 2.5rem 2rem;
    transition: all 0.4s ease;
    text-align: center;
}

.specialty-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: #C9A961;
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(201, 169, 97, 0.2);
}

.specialty-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    filter: grayscale(30%);
    transition: all 0.3s ease;
}

.specialty-card:hover .specialty-icon {
    transform: scale(1.1);
    filter: grayscale(0%);
}

.specialty-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1rem;
    letter-spacing: -0.3px;
}

.specialty-desc {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* Gallery Section */
.gallery-section {
    background: #fff;
    padding: 80px 20px;
}

.gallery-container {
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-heading {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 600;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 3rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.gallery-item {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

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

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(201, 169, 97, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-icon {
    font-size: 3rem;
    color: #fff;
}

/* Mission Section */
.mission-section {
    background: #fff;
    padding: 100px 20px;
}

.mission-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
}

.mission-image-main {
    position: relative;
    z-index: 1;
    max-width: 650px;
    width: 100%;
}

.mission-img-main {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    display: block;
}

.mission-image-small {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    max-width: 280px;
    width: 30%;
}

.mission-img-small {
    width: 100%;
    height: auto;
    border-radius: 1px;
    border: 2px solid #fff;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    display: block;
}

.mission-content-card {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    background: #fff;
    padding: 3rem 2.5rem;
    max-width: 450px;
    width: 40%;
}

.mission-title {
    font-size: clamp(2rem, 3vw, 2.8rem);
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
}

.mission-text {
    font-size: clamp(1.05rem, 1.5vw, 1.2rem);
    line-height: 1.8;
    color: #5a5a5a;
    font-weight: 400;
    letter-spacing: 0.2px;
}

/* Contact Section */
.contact-section {
    background: #fff;
    padding: 100px 20px;
}

.contact-page {
    padding-top: 80px;
}

.contact-container-pro {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 5rem;
}

.contact-info-side {
    border-right: 1px solid #e5e5e5;
    padding-right: 4rem;
}

.contact-info-header {
    margin-bottom: 3rem;
}

.contact-section-title {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.8rem;
    letter-spacing: -0.5px;
}

.contact-section-subtitle {
    font-size: 1.05rem;
    color: #666;
    font-weight: 400;
    line-height: 1.6;
}

.contact-info-block {
    margin-bottom: 2.5rem;
}

.contact-info-label {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #C9A961;
    margin-bottom: 1rem;
}

.contact-info-text {
    font-size: 1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 1.5rem;
}

.contact-link-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: transparent;
    border: 2px solid #C9A961;
    color: #C9A961;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.contact-link-btn:hover {
    background: #C9A961;
    color: #fff;
}

/* Contact Form */
.contact-form-block {
    margin-top: 3rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(201, 169, 97, 0.2);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.95rem;
    font-weight: 600;
    color: #1a1a1a;
    letter-spacing: -0.2px;
}

.form-group input,
.form-group textarea {
    padding: 0.9rem 1rem;
    border: 1.5px solid #e0e0e0;
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    background: #fff;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #C9A961;
    box-shadow: 0 0 0 3px rgba(201, 169, 97, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.g-recaptcha {
    margin-top: 0.5rem;
}

.form-submit-btn {
    padding: 1rem 2rem;
    background: #C9A961;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
}

.form-submit-btn:hover {
    background: #b89451;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(201, 169, 97, 0.3);
}

.form-submit-btn:active {
    transform: translateY(0);
}

.contact-departments-side {
    padding-left: 2rem;
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2.5rem;
}

.contact-item {
    padding-bottom: 2rem;
    border-bottom: 1px solid #f0f0f0;
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-dept-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.8rem;
    letter-spacing: -0.2px;
}

.contact-item-details {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.contact-person-name {
    font-size: 0.95rem;
    color: #555;
    font-weight: 500;
}

.contact-person-email {
    font-size: 0.95rem;
    color: #C9A961;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-person-email:hover {
    color: #b89850;
    text-decoration: underline;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: #e0e0e0;
    padding: 60px 20px 20px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #333;
}

.footer-brand {
    max-width: 350px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer-logo-img {
    height: 50px;
    width: auto;
}

.footer-logo h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    letter-spacing: -0.3px;
}

.footer-description {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #b0b0b0;
}

.footer-heading {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1.5rem;
    letter-spacing: -0.2px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

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

.footer-contact {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.footer-contact li {
    font-size: 0.9rem;
    line-height: 1.7;
    color: #b0b0b0;
}

.footer-contact strong {
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
}

.footer-contact a {
    color: #C9A961;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: #d4b872;
    text-decoration: underline;
}

.maps-link {
    display: inline-block;
    margin-top: 0.5rem;
    font-size: 0.9rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: #888;
}

.footer-dev {
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-dev a {
    color: #C9A961;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-dev a:hover {
    color: #d4b872;
    text-decoration: underline;
}

/* Cookie Consent Banner */
.cookie-banner {
    position: fixed;
    bottom: -100%;
    left: 0;
    width: 100%;
    background: rgba(26, 26, 26, 0.98);
    backdrop-filter: blur(10px);
    padding: 1.5rem 2rem;
    box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    transition: bottom 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border-top: 2px solid #C9A961;
}

.cookie-banner.show {
    bottom: 0;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cookie-text {
    flex: 1;
}

.cookie-text h4 {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.cookie-text p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

.cookie-link {
    color: #C9A961;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.cookie-link:hover {
    color: #d4b872;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cookie-btn-primary {
    background: #C9A961;
    color: #fff;
}

.cookie-btn-primary:hover {
    background: #b89451;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(201, 169, 97, 0.3);
}

.cookie-btn-secondary {
    background: transparent;
    color: rgba(255, 255, 255, 0.85);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cookie-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

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

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 6rem 2rem 2rem;
        gap: 2rem;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu li a {
        color: #333;
        font-size: 1.1rem;
    }

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

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

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

    .menu-toggle.active span {
        background: #1a1a1a;
    }

    .navbar {
        padding: 1.5rem 0;
    }

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

    .logo-img {
        height: 80px;
    }

    .navbar.scrolled .logo-img {
        height: 50px;
    }

    .logo h2 {
        font-size: 1.2rem;
    }

    .hero {
        background-attachment: scroll;
    }

    .hero-content {
        padding: 1rem;
    }

    .hero-title {
        margin-bottom: 1rem;
    }

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

    .hero-cta {
        padding: 0.9rem 2rem;
        font-size: 0.95rem;
    }

    .about-section {
        padding: 60px 10px;
    }

    .about-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .about-image-wrapper {
        padding-right: 0;
    }

    .about-image {
        max-width: 100%;
        margin: 0 auto;
    }

    .about-content-card {
        margin-left: 0;
        max-width: 100%;
    }

    .about-decor-lines {
        width: 120px;
        height: 120px;
        bottom: -20px;
        left: -20px;
    }

    .about-decor-circle {
        width: 200px;
        height: 200px;
        top: -50px;
        right: -50px;
    }

    .about-content-card {
        padding: 2.5rem 2rem;
    }

    .about-cta {
        width: 100%;
        padding: 1rem 2rem;
    }

    .why-choose-section {
        padding: 60px 0px;
    }

    .why-choose-intro {
        margin-bottom: 3rem;
    }

    .why-choose-content {
        margin-bottom: 3rem;
    }

    .why-choose-features {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .feature-item {
        padding: 1.5rem 1rem;
    }

    .why-choose-specialties {
        padding: 3rem 20px;
    }

    .specialties-heading {
        margin-bottom: 2rem;
    }

    .specialties-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .specialty-card {
        padding: 2rem 1.5rem;
    }

    .specialty-icon {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .specialty-title {
        font-size: 1.1rem;
    }

    .specialty-desc {
        font-size: 0.9rem;
    }

    .gallery-section {
        padding: 60px 20px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .gallery-img {
        height: 250px;
    }

    .mission-section {
        padding: 60px 20px;
    }

    .mission-container {
        flex-direction: column;
        min-height: auto;
        gap: 2rem;
    }

    .mission-image-main {
        position: relative;
        max-width: 100%;
    }

    .mission-image-small {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        max-width: 250px;
        width: 60%;
        margin: -50px auto 0;
    }

    .mission-img-small {
        border-width: 6px;
    }

    .mission-content-card {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        max-width: 100%;
        width: 100%;
        padding: 2.5rem 2rem;
    }

    .contact-section {
        padding: 60px 20px;
    }

    .contact-container-pro {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-info-side {
        border-right: none;
        border-bottom: 1px solid #e5e5e5;
        padding-right: 0;
        padding-bottom: 3rem;
    }

    .contact-departments-side {
        padding-left: 0;
    }

    .contact-list {
        gap: 1.5rem;
    }

    .footer {
        padding: 40px 20px 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        margin-bottom: 2rem;
    }

    .footer-brand {
        max-width: 100%;
    }

    .footer-logo-img {
        height: 40px;
    }

    .footer-logo h3 {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 1.5rem;
    }

    .logo-img {
        height: 60px;
    }

    .navbar.scrolled .logo-img {
        height: 45px;
    }

    .logo h2 {
        font-size: 1.1rem;
    }

    .nav-menu {
        width: 80%;
    }

    .about-content-card {
        padding: 2rem 1.5rem;
    }

    .about-decor-lines {
        width: 80px;
        height: 80px;
    }

    .about-decor-circle {
        width: 150px;
        height: 150px;
    }

    .cookie-content {
        flex-direction: column;
        align-items: stretch;
        gap: 1.5rem;
    }

    .cookie-buttons {
        flex-direction: column;
        width: 100%;
    }

    .cookie-btn {
        width: 100%;
    }

    .cookie-banner {
        padding: 1.5rem;
    }
}
