@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&family=Lato:wght@300;400;500;600;700&display=swap');

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

body {
    font-family: 'Lato', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
    margin: 0;
    padding: 0;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    line-height: 1.2;
}

/* Global container for content width restriction */
.main-container {
    max-width: 1400px;
    margin: 0 auto;
    background: white;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    min-height: 100vh;
}

@media (max-width: 1400px) {
    .main-container {
        margin: 0;
        box-shadow: none;
    }
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

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

.nav-logo h2,
.nav-logo h2 a {
    color: #333;
    font-family: 'Source Sans 3', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 300;
    font-size: 1.8rem;
    text-shadow: none;
    letter-spacing: 5.4px;
    text-decoration: none;
}

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

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-link:hover {
    color: #D6C5B8;
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 250px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    list-style: none;
    padding: 1rem 0;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: #333;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.dropdown-menu a:hover {
    background-color: #f8f9fa;
    color: #D6C5B8;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    width: 100%;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
}


.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    text-align: center;
    color: white;
    max-width: 800px;
    width: 100%;
    padding: 0 2rem;
}

.hero h1 {
    font-family: 'Source Sans 3', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 4rem;
    font-weight: 300;
    color: #D6C5B8;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 5.4px;
}

.hero-subtitle {
    font-size: 1.8rem;
    color: white;
    margin-bottom: 1rem;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, #D6C5B8, #E0CFC2);
    color: white;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
    box-shadow: 0 4px 15px rgba(214, 197, 184, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
    box-shadow: 0 6px 20px rgba(214, 197, 184, 0.4);
}

.btn-secondary {
    background: #D6C5B8;
    color: white;
    border: 2px solid #D6C5B8;
}

.btn-secondary:hover {
    background: rgba(214, 197, 184, 0.5);
    color: white;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: #333;
    border: 2px solid #ddd;
}

.btn-outline:hover {
    background: #D6C5B8;
    color: white;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
    border-color: #D6C5B8;
    transform: translateY(-2px);
}

/* Sections */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: #333;
}

.section-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

/* Zabiegi Section */
.zabiegi-section {
    padding: 80px 0;
    background: white;
}

.zabiegi-slider-container {
    position: relative;
    margin-top: 3rem;
    padding: 50px 80px 50px 80px;
    padding-right: 100px;
}

.zabiegi-slider {
    overflow: hidden;
    position: relative;
    width: 100%;
    padding: 30px 20px 30px 20px;
    padding-right: 40px;
    margin: -30px -20px;
    margin-right: -40px;
}

.zabiegi-slider-track {
    display: flex;
    transition: transform 0.5s ease;
    padding: 0;
    will-change: transform;
    transform: translateX(0);
}

.zabiegi-slider-track .zabieg-card {
    flex-shrink: 0;
    box-sizing: border-box;
    padding-left: 5%;
    padding-right: 5%;
    align-self: flex-start;
}

.zabieg-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    height: 100%;
    padding-top: 2.5rem;
}

.zabieg-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.zabieg-image {
    height: 400px;
    overflow: hidden;
    margin-top: 0;
}

.zabieg-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.zabieg-content {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-grow: 1;
}

.zabieg-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.zabieg-content p {
    color: #666;
    line-height: 1.6;
}

/* Lifting image crop to focus on eyes */
.lifting-image {
    object-fit: cover;
    object-position: center 60%;
    transform: scale(1.0);
}

/* Slider styles */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #D6C5B8;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.slider-arrow:hover {
    background: #c4b0a0;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.slider-arrow:active {
    transform: translateY(-50%) scale(0.95);
}

.slider-arrow-left {
    left: 0;
}

.slider-arrow-right {
    right: 0;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2rem;
}

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

.dot:hover {
    background: #D6C5B8;
    transform: scale(1.2);
}

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

/* About Section */
.about-section {
    padding: 80px 0;
    background: #FAF8F5;
}

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

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

.about-image img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    object-position: top center;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #333;
}

.about-description {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 1.1rem;
}

/* Gallery Section */
.gallery-section {
    padding: 80px 0;
    background: white;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
    aspect-ratio: 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.gallery-more {
    text-align: center;
}

/* Reviews Section */
.reviews-section {
    padding: 80px 0;
    background: white;
}

.reviews-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.review-card {
    background: #FAF8F5;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.review-stars {
    color: #FFD700;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    gap: 0.2rem;
}

.review-text {
    font-style: italic;
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.review-author h4 {
    color: #333;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.review-author span {
    color: #D6C5B8;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: #FAF8F5;
}

/* Modern Contact Section */
.contact-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #FAF8F5 0%, #F5F3F0 100%);
}

.contact-header {
    text-align: center;
    margin-bottom: 4rem;
}

.contact-header .section-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-top: 1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.contact-card {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid #F0F0F0;
}

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

.info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #D6C5B8, #CBBBAE);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.info-item:hover .info-icon {
    transform: scale(1.1);
}

.info-icon i {
    font-size: 1.3rem;
    color: white;
}

.info-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.info-content p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.info-content a {
    color: #D6C5B8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-content a:hover {
    color: #CBBBAE;
}

.cta-card {
    background: linear-gradient(135deg, #D6C5B8, #CBBBAE);
    border-radius: 20px;
    padding: 3rem;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.cta-card-header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
}

.cta-card-buttons {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
}

.cta-card-social {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
}

.cta-card-header h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0;
    color: black;
    text-align: center;
}

.cta-card-header p {
    font-size: 1rem;
    margin-top: 0.25rem;
    margin-bottom: 0;
    opacity: 0.9;
    text-align: center;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 3rem;
}

.cta-buttons .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.cta-buttons .btn-primary {
    background: white;
    color: #000;
    border-color: white;
}

.cta-buttons .btn-primary:hover {
    background: #F8F8F8;
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.cta-buttons .btn-outline {
    background: transparent;
    color: white;
    border-color: white;
}

.cta-buttons .btn-outline:hover {
    background: white;
    color: #D6C5B8;
    transform: translateY(-2px);
}

.social-links {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.social-links h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: white;
    text-align: center;
    display: block;
}

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

.social-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.social-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.social-btn i {
    font-size: 1.1rem;
}

/* Treatment Lists with Checkmarks */
.treatment-list,
.benefits-list {
    list-style: none;
    padding-left: 0;
}

.treatment-list li,
.benefits-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 0.8rem;
}

.treatment-list li::before,
.benefits-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #D6C5B8;
    font-weight: bold;
    font-size: 1.1rem;
}

.benefits-list li {
    font-weight: normal;
}

.benefits-list li strong {
    font-weight: bold;
}

/* Process Description Styling */
.process-description {
    margin: 1.5rem 0;
}

.process-description p {
    position: relative;
    padding-left: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    color: #333;
}

.process-description p::before {
    content: counter(step-counter);
    counter-increment: step-counter;
    position: absolute;
    left: 0;
    top: 0;
    width: 1.5rem;
    height: 1.5rem;
    background: transparent;
    color: #D6C5B8;
    border: 2px solid #D6C5B8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.8rem;
}

.process-description {
    counter-reset: step-counter;
}

.process-description strong {
    color: #000;
    font-weight: bold;
}

.contact-info-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    align-items: center;
}

.contact-row {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.contact-row-single {
    justify-content: center;
}

.contact-row-triple {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 900px;
}

.contact-row-double {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 600px;
}

.contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
    width: 100%;
    max-width: 300px;
}

.contact-item i {
    font-size: 1.5rem;
    color: #D6C5B8;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.contact-item div {
    flex: 1;
    text-align: center;
    width: 100%;
}

.contact-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.contact-item p {
    color: #666;
    line-height: 1.6;
}

.contact-item a {
    color: #D6C5B8;
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

.contact-social {
    display: flex;
    justify-content: center;
    gap: 3rem;
}

.social-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.social-label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #D6C5B8;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #CBBBAE;
    transform: translateY(-2px);
}

.contact-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
}

.lightbox-content {
    position: relative;
    margin: auto;
    padding: 20px;
    width: 90%;
    max-width: 800px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 2001;
}

.lightbox-close:hover {
    color: #D6C5B8;
}

#lightbox-img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
}

.lightbox-prev,
.lightbox-next {
    background: rgba(214, 197, 184, 0.8);
    color: white;
    border: none;
    padding: 15px 20px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    transition: all 0.3s ease;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: #D6C5B8;
    transform: scale(1.1);
}

/* Footer */
.footer {
    background: #333;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo h3 {
    color: #D6C5B8;
    margin-bottom: 1rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

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

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

.footer-contact p {
    color: #ccc;
    margin-bottom: 0.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #555;
    color: #999;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .zabiegi-slider-container {
        padding: 0 50px;
    }
}

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

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 38px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: left;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 1rem 2rem 2rem 2rem;
        z-index: 999;
    }

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

    .nav-menu li {
        margin: 1rem 0;
    }

    .navbar {
        padding: 0.5rem 0;
        transition: all 0.3s ease;
        transform: translateZ(0);
        z-index: 1001;
    }

    .nav-logo h2 {
        font-size: 1.5rem;
    }

    .hero {
        min-height: 65vh;
        padding: 2rem 1rem;
    }

    .hero h1 {
        font-size: 2.5rem;
        line-height: 1.1;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }

    .hero-description {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
        line-height: 1.5;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 0.8rem;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .btn {
        width: 100%;
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .zabiegi-slider-container {
        padding: 30px 50px;
        padding-right: 60px;
    }
    
    .zabiegi-slider {
        padding: 20px 15px;
        padding-right: 25px;
        margin: -20px -15px;
        margin-right: -25px;
    }
    
    .zabieg-image {
        height: 250px;
    }
    
    .zabieg-card {
        padding-top: 1.5rem;
        padding-left: 3%;
        padding-right: 3%;
    }
    
    .zabieg-content {
        padding: 1.5rem;
    }
    
    .zabieg-content h3 {
        font-size: 1.3rem;
    }
    
    .zabieg-content p {
        font-size: 0.9rem;
    }
    
    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

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

    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-card {
        padding: 2rem;
    }
    
    .cta-card {
        padding: 3rem 2rem;
    }
    
    .cta-card h3 {
        margin-top: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .cta-card p {
        margin-bottom: 3rem;
    }
    
    .social-buttons {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .contact-actions {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .contact-social {
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 65vh;
        padding: 1.5rem 0.5rem;
    }

    .hero h1 {
        font-size: 2rem;
        line-height: 1.1;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-description {
        font-size: 0.85rem;
    }

    .hero-buttons {
        max-width: 280px;
        gap: 0.6rem;
    }

    .btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.85rem;
    }

    .navbar {
        padding: 0.3rem 0;
    }

    .nav-logo h2 {
        font-size: 1.3rem;
    }

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

    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info-grid {
        gap: 1.5rem;
    }
    
    .contact-row-triple {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-row-double {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

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

    .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* Treatment Pages Styles */
.treatment-header {
    position: relative;
    height: 65vh;
    overflow: hidden;
}

.treatment-hero {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.treatment-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

.lifting-header-image {
    object-position: center 30%;
}

.laser-header-image {
    object-position: center 10%;
}

.treatment-hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 2;
}

.treatment-hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.treatment-subtitle {
    font-size: 1.3rem;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.treatment-content {
    padding: 100px 0;
    background: white;
}

.treatment-description {
    max-width: 800px;
    margin: 0 auto;
}

.treatment-description h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #333;
    text-align: center;
}

.treatment-description h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin: 2rem 0 1rem;
    color: #D6C5B8;
}

.treatment-list,
.benefits-list,
.process-list {
    margin: 1rem 0 2rem;
    padding-left: 0;
}

.treatment-list li,
.benefits-list li,
.process-list li {
    margin: 0.8rem 0;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.treatment-list li::before {
    content: "•";
    color: #D6C5B8;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.benefits-list li::before {
    content: "✓";
    color: #D6C5B8;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.process-list {
    counter-reset: step-counter;
}

.process-list li {
    counter-increment: step-counter;
    list-style: none;
}

.process-list li::before {
    content: counter(step-counter);
    color: #D6C5B8;
    font-weight: bold;
    position: absolute;
    left: 0;
    background: #D6C5B8;
    color: white;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.treatment-cta {
    text-align: center;
    margin-top: 6.125rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.treatment-gallery {
    padding: 80px 0;
    background: #FAF8F5;
}

.treatment-gallery h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #333;
}

/* Pricing Page Styles */
.pricing-header {
    padding: 180px 0 140px;
    background: linear-gradient(135deg, rgba(248, 249, 250, 0.7) 0%, rgba(233, 236, 239, 0.7) 100%), url('https://images.unsplash.com/photo-1450101499163-c8848c66ca85?w=1920&h=1080&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
    position: relative;
}

.pricing-header h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.8);
}

.pricing-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 600;
}

.pricing-content {
    padding: 100px 0;
    background: white;
}

.pricing-category {
    margin-bottom: 4rem;
}

.pricing-category h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #D6C5B8;
    margin-bottom: 2rem;
    text-align: center;
}

.pricing-table {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.pricing-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 1rem;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid #f0f0f0;
    align-items: center;
}

.pricing-row:last-child {
    border-bottom: none;
}

.pricing-row.header {
    background: #D6C5B8;
    color: white;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
    font-weight: 600;
    font-size: 1.1rem;
}

.pricing-row.header .service-name {
    color: black;
}

.pricing-subcategory {
    margin-bottom: 3rem;
}

.pricing-subcategory h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1.5rem;
    margin-top: 2rem;
}

.pricing-subcategory:first-child h3 {
    margin-top: 0;
}

.pricing-table-packages .pricing-row {
    grid-template-columns: 1.6fr 1.2fr 1.2fr 1.2fr 1.2fr;
}

.pricing-table-packages .pricing-row.header .service-price {
    color: black;
    font-weight: 600;
}

.process-title {
    margin-top: 3rem;
    margin-bottom: 1.5rem;
}

.treatment-section h2 {
    margin-top: 4rem;
    color: #D6C5B8;
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.treatment-section:first-child h2 {
    margin-top: 0;
}

.treatment-section h3 {
    margin-top: 2.5rem;
    color: #333;
    font-size: 1.4rem;
    font-weight: 500;
}

.treatment-section .process-title {
    color: #333;
    font-size: 1.4rem;
    font-weight: 500;
}

.team-member-reverse {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.team-member-reverse .team-info {
    text-align: left;
    flex: 1;
    padding-right: 2rem;
}

.team-member-reverse .team-photo {
    flex-shrink: 0;
    order: 2;
}

.team-member .team-photo img,
.team-member-reverse .team-photo img {
    width: 250px;
    height: 250px;
    object-fit: cover;
    object-position: center top;
    border-radius: 8px;
}

.team-member + .team-member {
    margin-top: 3rem;
}

.pricing-row:nth-child(even) {
    background: #f8f9fa;
}

.service-name {
    font-weight: 500;
    color: #333;
}

.service-price {
    font-weight: 700;
    color: #D6C5B8;
    font-size: 1.2rem;
}

.service-duration {
    color: #666;
    font-size: 0.9rem;
}

.pricing-cta {
    text-align: center;
    background: #FAF8F5;
    padding: 3rem 2rem;
    border-radius: 20px;
    margin-top: 3rem;
}

.pricing-cta h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

.pricing-cta p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
}

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

@media (max-width: 768px) {
    .pricing-table:not(.pricing-table-packages) {
        display: block;
    }
    
    .pricing-table:not(.pricing-table-packages) .pricing-row {
        display: block;
        grid-template-columns: none;
        gap: 0;
        padding: 1.5rem;
        margin-bottom: 1rem;
        border: 1px solid #e0e0e0;
        border-radius: 10px;
        background: #fafafa;
    }
    
    .pricing-table:not(.pricing-table-packages) .pricing-row:last-child {
        margin-bottom: 0;
    }
    
    .pricing-table:not(.pricing-table-packages) .pricing-row.header {
        display: none;
    }
    
    .pricing-table:not(.pricing-table-packages) .pricing-row .service-name {
        font-weight: 700;
        font-size: 1.1rem;
        color: #333;
        margin-bottom: 0.75rem;
        text-align: left;
    }
    
    .pricing-table:not(.pricing-table-packages) .pricing-row .service-price {
        display: block;
        font-weight: 700;
        color: #333;
        font-size: 1.2rem;
        text-align: left;
        padding-top: 0.5rem;
        border-top: 1px solid #e0e0e0;
    }
    
    .pricing-table:not(.pricing-table-packages) .pricing-row .service-price::before {
        content: "Cena: ";
        font-weight: 600;
        color: #666;
        font-size: 0.9rem;
        margin-right: 0.5rem;
    }
    
    .pricing-row {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        text-align: center;
    }
    
    .pricing-row.header {
        grid-template-columns: 1fr;
        display: none; /* Hide header row on mobile */
    }
    
    .pricing-table-packages {
        display: block;
    }
    
    .pricing-table-packages .pricing-row {
        display: block;
        grid-template-columns: none;
        gap: 0;
        padding: 1.5rem;
        margin-bottom: 1.5rem;
        border: 1px solid #e0e0e0;
        border-radius: 10px;
        background: #fafafa;
    }
    
    .pricing-table-packages .pricing-row:last-child {
        margin-bottom: 0;
    }
    
    .pricing-table-packages .pricing-row .service-name {
        font-weight: 700;
        font-size: 1.2rem;
        color: #333;
        margin-bottom: 1.25rem;
        padding-bottom: 0.75rem;
        border-bottom: 2px solid #D6C5B8;
        text-align: left;
    }
    
    .pricing-table-packages .pricing-row .service-price {
        display: block;
        padding: 0.75rem 0;
        border-bottom: 1px solid #e0e0e0;
        text-align: left;
    }
    
    .pricing-table-packages .pricing-row .service-price:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
    
    .pricing-table-packages .pricing-row .service-price::before {
        content: attr(data-label);
        display: block;
        font-weight: 600;
        color: #666;
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }
    
    .pricing-table-packages .pricing-row .service-price {
        font-weight: 700;
        color: #333;
        font-size: 1.1rem;
    }
    
    .pricing-table-packages .pricing-row.header {
        display: none;
    }
    
    .pricing-subcategory h3 {
        font-size: 1.3rem;
        margin-top: 1.5rem;
    }
    
    .service-name {
        font-weight: 600;
        margin-bottom: 0.5rem;
    }
    
    .service-price {
        font-size: 1.1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* About Page Styles */
.about-page-header {
    padding: 180px 0 140px;
    background: linear-gradient(135deg, rgba(248, 249, 250, 0.7) 0%, rgba(233, 236, 239, 0.7) 100%), url('nowe fotki/Makijaż_permanentny_brwi_usta_kosmetologia_Gdańsk_Trójmiasto_usuwanie_laserowe_zabiegi_pielęgnacyjne_rzęsy_lifting_laminacja_oczyszczanie_wodorowe_usuwanie_makijażu_permanentnego_estetycznie_IMG_8674.JPG');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
    position: relative;
}

.about-page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.8);
}

.about-page-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 600;
}

.about-page-content {
    padding: 100px 0;
    background: white;
}

.about-main {
    margin-bottom: 4rem;
}

.about-main-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-main-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 2rem;
}

.about-main-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 1.5rem;
}

.about-main-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.mission-section {
    margin-bottom: 4rem;
    text-align: center;
}

.mission-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 3rem;
}

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

.mission-item {
    text-align: center;
    padding: 2rem;
    background: #FAF8F5;
    border-radius: 20px;
    transition: transform 0.3s ease;
}

.mission-item:hover {
    transform: translateY(-5px);
}

.mission-icon {
    width: 80px;
    height: 80px;
    background: #D6C5B8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.mission-item h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}

.mission-item p {
    color: #666;
    line-height: 1.6;
}

.team-section {
    margin-bottom: 4rem;
}

.team-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    text-align: center;
    margin-bottom: 3rem;
}

.team-member {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    align-items: center;
    background: #FAF8F5;
    padding: 3rem;
    border-radius: 20px;
}

.team-photo img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
}

.team-info h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.team-role {
    color: #D6C5B8;
    font-weight: 500;
    margin-bottom: 1rem;
}

.team-info p {
    color: #666;
    line-height: 1.6;
}

.values-section {
    margin-bottom: 4rem;
}

.values-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    text-align: center;
    margin-bottom: 3rem;
}

.values-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.values-text h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #D6C5B8;
    margin: 2rem 0 1rem;
}

.values-text h3:first-child {
    margin-top: 0;
}

.values-text p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.values-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-cta {
    text-align: center;
    background: #FAF8F5;
    padding: 3rem 2rem;
    border-radius: 20px;
}

.about-cta h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

.about-cta p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
}

.about-cta .btn-primary {
    color: black;
    text-shadow: none;
}

@media (max-width: 768px) {
    .about-page-header {
        background-position: right center;
    }
    
    .about-main-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .team-member {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .values-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .mission-grid {
        grid-template-columns: 1fr;
    }
}

/* Gallery Page Styles */
.gallery-page-header {
    padding: 180px 0 140px;
    background: linear-gradient(135deg, rgba(248, 249, 250, 0.7) 0%, rgba(233, 236, 239, 0.7) 100%), url('zdjecia strona/Makijaż_permanentny_brwi_usta_kosmetologia_Gdańsk_Trójmiasto_usuwanie_laserowe_zabiegi_pielęgnacyjne_rzęsy_lifting_laminacja_oczyszczanie_wodorowe_usuwanie_makijażu_permanentnego_estetycznie_F867553F-3387-43C2-9020-563CB89BFC3A.JPG');
    background-size: cover;
    background-position: center 110%;
    background-attachment: fixed;
    text-align: center;
    position: relative;
}

.gallery-page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.8);
}

.gallery-page-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 600;
}

.gallery-page-content {
    padding: 100px 0;
    background: white;
}

.gallery-filter {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    background: transparent;
    border: 2px solid #ddd;
    border-radius: 25px;
    color: #666;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: #D6C5B8;
    border-color: #D6C5B8;
    color: white;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
    aspect-ratio: 1;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.gallery-overlay i {
    font-size: 2rem;
    color: white;
}

.lightbox-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .gallery-grid-full {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1rem;
    }
    
    .gallery-filter {
        gap: 0.5rem;
    }
    
    .filter-btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
}

/* Contact Page Styles */
.contact-page-header {
    padding: 180px 0 140px;
    background: linear-gradient(135deg, rgba(248, 249, 250, 0.7) 0%, rgba(233, 236, 239, 0.7) 100%), url('https://www.academyorthopedics.com/wp-content/uploads/2022/11/smartphone-finger-pain-scaled.jpeg');
    background-size: cover;
    background-position: 40% center;
    background-attachment: fixed;
    text-align: center;
    position: relative;
}


.contact-page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.8);
}

.contact-page-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 600;
}

.contact-page-content {
    padding: 100px 0;
    background: white;
}

.contact-page-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.contact-info-section h2,
.contact-form-section h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 2rem;
}

.contact-info-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: #D6C5B8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-details h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: #666;
    line-height: 1.6;
}

.contact-details a {
    color: #D6C5B8;
    text-decoration: none;
}

.contact-details a:hover {
    text-decoration: underline;
}

.social-media-section {
    margin-bottom: 3rem;
}

.social-media-section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}

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

.social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: #f8f9fa;
    border-radius: 25px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #D6C5B8;
    color: white;
    transform: translateY(-2px);
}

.contact-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.contact-cta .btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Contact Form */
.contact-form {
    display: grid;
    gap: 1.5rem;
}

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

.form-group label {
    font-weight: 500;
    color: #333;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem 1rem;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #D6C5B8;
}

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

.contact-form .btn {
    justify-self: start;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Map Section */
.map-section {
    background: #FAF8F5;
    padding: 0;
}

.map-container {
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 0;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

@media (max-width: 768px) {
    .contact-page-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-cta {
        flex-direction: column;
    }
    
    .social-links {
        flex-direction: column;
    }
    
    .contact-form .btn {
        justify-self: stretch;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}
