:root {
    --gold: #D4AF37;
    --gold-light: #E8D5A0;
    --gold-dark: #B8962E;
   --gold-opacity: rgba(232, 213, 160, 0.8);
  --gold-dark-opacity:  rgba(184, 150, 46, 0.8);
    --white: #FFFFFF;
    --off-white: #FAFAFA;
    --gray-100: #F5F5F5;
    --gray-200: #E5E5E5;
    --gray-300: #D4D4D4;
    --gray-600: #6B6B6B;
    --gray-800: #3A3A3A;
    --gray-900: #1F1F1F;
    --shadow: rgba(0, 0, 0, 0.08);
    --shadow-lg: rgba(0, 0, 0, 0.12);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--gray-800);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
     font-family: "Playfair Display", serif;
    font-weight: 500;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

/* Navigation */
 .navbar {
    position: sticky;
    top: 0;
    width: 100%;
    background: var(--white);
    box-shadow: 0 2px 20px var(--shadow);
    z-index: 1000;
    transition: all 0.3s ease;
}

  .navbar.scrolled {
 
    box-shadow: 0 4px 30px var(--shadow-lg);
}
  .nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--gray-900);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo img{
    width:250px;
}

.logo-accent {
    color: var(--gold);
}

.navbar .nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.navbar  .nav-menu a {
    text-decoration: none;
    color: var(--gray-800);
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.navbar  .nav-menu a:hover {
    color: var(--gold);
}

.navbar  .nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.navbar  .nav-menu a:hover::after {
    width: 100%;
}





.cta-button {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: white !important;
    padding: 0.8rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
  
}

.cta-button:hover {
        background: linear-gradient(235deg, var(--gold), var(--gold-dark));

    transform: translateY(-2px);
    color:white;
     
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--gray-900);
    transition: all 0.3s ease;
}

/* Hero Section */

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    animation: pulse 15s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.1) rotate(10deg); }
}

.hero-content {
    max-width: 900px;
    position: relative;
    z-index: 1;
    animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1 {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-weight: 300;
}

.hero h1 .highlight {
    color: var(--gold);
    font-weight: 600;
}

.hero p {
    font-size: 1.2rem;
    color: var(--gray-600);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--white);
    padding: 1.2rem 3rem;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
   
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.4);
}


.btn-primary-sm {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--white);
    padding: 1rem 3rem;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
    margin-top:20px;
    display:inline-block;
    font-size:1rem;
   
}

.btn-primary-sm:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
    background: var(--white);
    color: var(--gray-900);
    padding: 1.2rem 3rem;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid var(--gray-300);
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-3px);
}

/* Features Section */
.features {
    padding: 8rem 2rem;
    background: var(--off-white);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-subtitle {
    color: var(--gold);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.section-description {
    color: var(--gray-600);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 3rem;
}

.feature-card {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 5px 20px var(--shadow);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    transition: left 0.4s ease;
}

.feature-card:hover::before {
    left: 0;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px var(--shadow-lg);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2rem;
}

.feature-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--gray-600);
    line-height: 1.8;
}

/* Services Section */
.services {
    padding: 5rem 2rem;
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.service-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 25px var(--shadow);
    transition: all 0.4s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 45px var(--shadow-lg);
}

.service-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.service-card:hover .service-image {
    transform: scale(1.05);
}

.service-content {
    padding: 2.5rem;
}

.service-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.service-content p {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.service-link {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
}

.service-link:hover {
    gap: 1rem;
}

/* Stats Section */
.stats {
    background: linear-gradient(135deg, var(--gray-900), var(--gray-800));
    padding: 6rem 2rem;
    color: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 4rem;
    font-family: 'Cormorant Garamond', serif;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: var(--gray-300);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Testimonials */
.testimonials {
    padding: 8rem 2rem;
     background: linear-gradient(135deg, var(--gray-900), var(--gray-800));
color:white;
}

.testimonials h2{
    color:white;
}

.testimonials-slider {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.testimonial {
    background: var(--white);
    padding: 4rem;
    border-radius: 15px;
    box-shadow: 0 10px 40px var(--shadow);
    text-align: center;
    display: none;
}

.testimonial.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.testimonial-text {
    font-size: 1.3rem;
    line-height: 2;
    color: var(--gray-600);
    font-style: italic;
    margin-bottom: 2rem;
}

.testimonial-author {
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.testimonial-stars {
    color: var(--gold);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.slider-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gray-300);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: var(--gold);
    width: 40px;
    border-radius: 10px;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(232, 213, 160, 0.2)),
                url('https://images.unsplash.com/photo-1576091160399-112ba8d25d1d?w=1920&q=85') center/cover;
    padding: 8rem 2rem;
    text-align: center;
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.95);
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.2rem;
    color: var(--gray-600);
    margin-bottom: 3rem;
}

/* Footer */
.footer {
    background: var(--gray-900);
    color: var(--gray-300);
    padding: 5rem 2rem 2rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.footer-section p,
.footer-section a {
    color: var(--gray-300);
    text-decoration: none;
    display: block;
    margin-bottom: 0.8rem;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--gold);
}

.footer-bottom {
    border-top: 1px solid var(--gray-800);
    padding-top: 2rem;
    text-align: center;
    color: var(--gray-600);
}

/* Page Header (for subpages) */
.page-header {

    background: url('https://aesthetictravel.pl/data/uploads/medycyna-estetyczna.jpg') center/cover;
    padding: 6rem 2.5rem;
    position: relative;
    text-align: center;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(184, 150, 46, 0.75);
    backdrop-filter: blur(5px);
}

.page-header-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.page-header h1 {
    color: #ffffff;
    font-size: 3rem;
    font-weight: 700;
    margin: 0 0 1rem;
    letter-spacing: -0.03em;
}

.breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    font-size: 0.875rem;
    color: #ffffff;
}

.breadcrumb a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    opacity: 0.9;
    transition: opacity 0.2s;
}

.breadcrumb a:hover {
    opacity: 1;
}

/* Content Section */
.content-section {
    padding: 6rem 2rem;
    background: var(--white);
}

.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
}


.content-grid-full {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
}

.main-content h2 {
    font-size: 2.2rem;
    margin: 3rem 0 1.5rem;
}

.main-content h2:first-child {
    margin-top: 0;
}

.main-content h3 {
    font-size: 1.8rem;
    margin: 2rem 0 1rem;
    color: var(--gold);
}

.main-content p {
    color: var(--gray-600);
    line-height: 1.9;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.main-content ul {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.main-content li {
    color: var(--gray-600);
    margin-bottom: 0.8rem;
    line-height: 1.8;
}

.highlight-box {
    background: var(--off-white);
    padding: 2.5rem;
    border-radius: 15px;
    border-left: 4px solid var(--gold);
    margin: 2rem 0;
}

.highlight-box h3 {
    margin-top: 0;
}

.image-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

.image-gallery img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 5px 20px var(--shadow);
}

/* Sidebar */
.sidebar {
    position: sticky;
    top: 120px;
    height: fit-content;
}

.sidebar-card {
    background: var(--off-white);
    padding: 2.5rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    box-shadow: 0 5px 20px var(--shadow);
}

.sidebar-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.sidebar-card ul {
    list-style: none;
}

.sidebar-card li {
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--gray-200);
}

.sidebar-card li:last-child {
    border-bottom: none;
}

.sidebar-card a {
    color: var(--gray-800);
    text-decoration: none;
    transition: color 0.3s ease;
}

.sidebar-card a:hover {
    color: var(--gold);
}

.price-box {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
}

.price-box h3 {
    color: var(--white);
    margin-bottom: 1rem;
}

.price {
    font-size: 3rem;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    margin: 1rem 0;
}

.price-note {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

.btn-white {
    background: var(--white);
    color: var(--gold);
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

/* Responsive */
@media (max-width: 968px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
     
        display:none !important;
    }
    
    .nav-menu.active {
        left: 0;
    }

 

 .wSub{
        position: absolute;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .services-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
    }
    
    .sidebar {
        position: static;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 640px) {
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .stat-number {
        font-size: 3rem;
    }
    
    .testimonial {
        padding: 2rem;
    }
    
    .testimonial-text {
        font-size: 1.1rem;
    }
    
    .image-gallery {
        grid-template-columns: 1fr;
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}


/* custom */

p{
margin-bottom: 10px;
}

.aboutus{
padding:100px 15px;
}

.aboutus p{
    color:rgba(0, 0, 0, 0.7)
}


.column-2{
    display:grid;
    align-items: center;
    grid-template-columns: 1fr 1fr;
    gap:4rem;
}

.column-2 img{
    width:100%;
    border-radius:5px;
        box-shadow: 0 5px 20px var(--shadow);
}

.wSub{
    position:relative;
}

.nav-menu .subMenu{
    position: absolute;
    background: #fff;
    min-width:250px;
    z-index: 99;
    display:none;

}

.subMenu li{
    list-style-type: none;
    padding:10px;
}

.subMenu li a{
    color:inherit;
}

.subMenu li a:hover{
    color:black;
}

.subMenu li:hover{
    background: rgba(0, 0, 0, 0.03);
}

.nav-menu .wSub:hover .subMenu{
    display:block;
}

.blogitem-content a{
    color:var(--gold);
    text-decoration: none;
}

.main-content a:not(.btn-primary-sm){
  color:var(--gold);
    text-decoration: none;
}

.blogitem.withcover a{
    margin: 0;
    padding: 0;
}



.mobile-nav{
    position: sticky;
    top:128px;
    left:0;
    display:flex;
    flex-direction: column;
    text-align: center;
    padding: 20px;
    box-shadow: rgba(0, 0, 0, 0.03);
    border:solid 1px #ddd;
    background:white;
    z-index: 11;;
}

.mobile-nav-menu{
    line-height: 2;
}

.mobile-nav-menu li{
    position: relative;
    padding: 10px 0;
    list-style-type: none;
    display:flex;
    justify-content: space-between;
    flex-wrap: wrap;
    border-bottom:solid 1px var(--gray-100);
}

.mobile-nav-menu li{
    padding:10px;
}

.mobile-nav-menu .subMenu{
    width:100% !important;
    background:var(--gray-100) !important;

}

.mobile-nav-menu .subMenu a{
      width:100%;
      text-align: left;
          padding:10px !important;
}

.mobile-nav-menu a{
    color:var(--gray-900);
    text-decoration: none;
  
}

.mobile-nav-menu ul{
    all:unset;
    position: absolute;
    display:block;
    width:100%;
    transform: translate(0,0);
    z-index: 1;
    background:var(--gray-100);
    margin: 0;
    padding: 0;
 
}

.mobile-nav-menu .subMenu{
    all:unset;
}

.mobile-nav .wSub:hover ul{
    all:unset;
}

.mobile-nav-menu .wSub:hover .subMenu {
    all:unset;
}

.hideul{
    display:none !important;
}

.footer-menu ul{
    display:none;
}

.footer-menu{
    margin: 0;
    padding: 0;
    margin-left: 15px;
    line-height: 1.2;
}

.footer li{
list-style-type: square;
}
.footer-menu li::marker{
    color:var(--gold)
}

.cke-outer{
    padding:10px;
    background: rgba(0, 0, 0, 0.03);
    font-weight: 300;
}
.cke-outer textarea{
    height:250px;
}

.main-content img{
	border-radius:5px;
	box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.my-2{
	margin:20px 0;
}

.blogitem{
box-shadow:none !important;	
}