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

:root {
    --sr-primary: #8B4513;
    --sr-primary-dark: #654321;
    --sr-secondary: #D4AF37;
    --sr-accent: #E8D5B7;
    --sr-text: #2C1810;
    --sr-text-light: #5A4A3A;
    --sr-bg: #F5F1E8;
    --sr-white: #FFFFFF;
    --sr-overlay: rgba(44, 24, 16, 0.85);
    --sr-shadow: rgba(44, 24, 16, 0.15);
    --sr-shadow-hover: rgba(44, 24, 16, 0.25);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--sr-text);
    background-color: var(--sr-bg);
    background-image: url('images/background.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(245, 241, 232, 0.92);
    z-index: -1;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    line-height: 1.2;
    color: var(--sr-text);
}

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

/* Header Styles */
.sr-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(245, 241, 232, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px var(--sr-shadow);
    z-index: 1000;
    transition: all 0.3s ease;
}

.sr-header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.sr-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

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

.sr-logo__icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sr-logo__icon svg {
    width: 100%;
    height: 100%;
    animation: logoFloat 3s ease-in-out infinite;
}

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

.sr-logo__text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--sr-primary);
    letter-spacing: 0.5px;
}

.sr-nav__list {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.sr-nav__link {
    font-size: 16px;
    font-weight: 500;
    color: var(--sr-text);
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
    padding: 5px 0;
}

.sr-nav__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--sr-secondary);
    transition: width 0.3s ease;
}

.sr-nav__link:hover::after,
.sr-nav__link--active::after {
    width: 100%;
}

.sr-nav__link:hover,
.sr-nav__link--active {
    color: var(--sr-primary);
}

.sr-nav__link--cta {
    background: var(--sr-primary);
    color: var(--sr-white);
    padding: 10px 20px;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.sr-nav__link--cta::after {
    display: none;
}

.sr-nav__link--cta:hover {
    background: var(--sr-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px var(--sr-shadow);
}

.sr-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.sr-burger__line {
    width: 25px;
    height: 3px;
    background: var(--sr-primary);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.sr-nav__close {
    display: none;
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 32px;
    color: var(--sr-text);
    cursor: pointer;
    z-index: 1001;
}

/* Hero Section */
.sr-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

@media (max-width: 768px) {
    .sr-hero {
        min-height: 75vh;
    }
}

.sr-hero__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--sr-primary) 0%, var(--sr-primary-dark) 100%);
    opacity: 0.1;
    z-index: -1;
}

.sr-hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(245, 241, 232, 0.6);
    z-index: -1;
    background-image: 
        url('images/hero-overlay-optimized.webp'),
        radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(139, 69, 19, 0.08) 0%, transparent 50%);
    background-size: cover, 200% 200%, 180% 180%;
    background-position: center center, 0% 0%, 100% 100%;
    background-blend-mode: overlay, normal, normal;
    background-repeat: no-repeat, no-repeat, no-repeat;
    animation: heroOverlayAnimation 25s ease-in-out infinite;
    opacity: 0.75;
    filter: brightness(1.1) contrast(0.95);
}

@keyframes heroOverlayAnimation {
    0%, 100% {
        background-position: center center, 0% 0%, 100% 100%;
        opacity: 0.75;
        transform: scale(1);
    }
    25% {
        background-position: 30% 30%, 100% 50%, 0% 0%;
        opacity: 0.8;
        transform: scale(1.02);
    }
    50% {
        background-position: center center, 50% 100%, 50% 50%;
        opacity: 0.7;
        transform: scale(1);
    }
    75% {
        background-position: 70% 70%, 0% 50%, 100% 0%;
        opacity: 0.78;
        transform: scale(1.01);
    }
}

.sr-hero__overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(135deg, rgba(245, 241, 232, 0.4) 0%, rgba(212, 175, 55, 0.15) 50%, rgba(245, 241, 232, 0.3) 100%);
    animation: overlayBrightness 12s ease-in-out infinite;
    opacity: 0.5;
    mix-blend-mode: soft-light;
}

@keyframes overlayBrightness {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 0.7;
    }
}

.sr-hero__overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at top left, rgba(212, 175, 55, 0.12) 0%, transparent 60%),
        radial-gradient(ellipse at bottom right, rgba(139, 69, 19, 0.1) 0%, transparent 60%);
    animation: glowPulse 10s ease-in-out infinite;
    mix-blend-mode: overlay;
}

@keyframes glowPulse {
    0%, 100% {
        opacity: 0.6;
        transform: scale(1);
    }
    50% {
        opacity: 0.85;
        transform: scale(1.03);
    }
}

.sr-hero__animated-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.sr-hero__wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200%;
    height: 100px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    animation: wave 15s linear infinite;
}

.sr-hero__wave:nth-child(2) {
    animation-delay: -5s;
    opacity: 0.7;
}

.sr-hero__wave:nth-child(3) {
    animation-delay: -10s;
    opacity: 0.5;
}

@keyframes wave {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0%); }
}

.sr-hero__content {
    text-align: center;
    max-width: 800px;
    z-index: 1;
    animation: fadeInUp 1s ease;
}

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

.sr-hero__badge {
    display: inline-block;
    padding: 8px 20px;
    background: var(--sr-secondary);
    color: var(--sr-text);
    font-size: 14px;
    font-weight: 600;
    border-radius: 20px;
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.sr-hero__title {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--sr-text);
    line-height: 1.1;
}

.sr-hero__subtitle {
    font-size: 20px;
    color: var(--sr-text);
    margin-bottom: 40px;
    line-height: 1.6;
    text-shadow: 0 2px 8px rgba(255, 255, 255, 0.8), 0 1px 3px rgba(44, 24, 16, 0.3);
    font-weight: 500;
}

.sr-hero__actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.sr-btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 30px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    font-family: 'Source Sans Pro', sans-serif;
}

.sr-btn--primary {
    background: var(--sr-primary);
    color: var(--sr-white);
    border-color: var(--sr-primary);
}

.sr-btn--primary:hover {
    background: var(--sr-primary-dark);
    border-color: var(--sr-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--sr-shadow);
}

.sr-btn--secondary {
    background: rgba(245, 241, 232, 0.98);
    color: var(--sr-primary);
    border-color: var(--sr-primary);
}

.sr-btn--secondary:hover {
    background: var(--sr-primary);
    color: var(--sr-white);
    transform: translateY(-2px);
}

.sr-btn--outline {
    background: rgba(245, 241, 232, 0.98);
    color: var(--sr-text);
    border-color: var(--sr-text);
}

.sr-btn--outline:hover {
    background: var(--sr-text);
    color: var(--sr-white);
}

.sr-btn--large {
    padding: 16px 40px;
    font-size: 18px;
}

.sr-btn--full {
    width: 100%;
    text-align: center;
}

/* Section Styles */
.sr-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.sr-section-badge {
    display: inline-block;
    padding: 6px 16px;
    background: var(--sr-accent);
    color: var(--sr-text);
    font-size: 12px;
    font-weight: 600;
    border-radius: 15px;
    margin-bottom: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.sr-section-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--sr-text);
}

.sr-section-subtitle {
    font-size: 18px;
    color: var(--sr-text-light);
    max-width: 700px;
    margin: 0 auto;
}

/* Featured Bars Section */
.sr-featured {
    padding: 100px 0;
    position: relative;
}

.sr-featured__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.sr-bar-card {
    background: var(--sr-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px var(--sr-shadow);
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease backwards;
}

.sr-bar-card:nth-child(1) { animation-delay: 0.1s; }
.sr-bar-card:nth-child(2) { animation-delay: 0.2s; }
.sr-bar-card:nth-child(3) { animation-delay: 0.3s; }
.sr-bar-card:nth-child(4) { animation-delay: 0.4s; }
.sr-bar-card:nth-child(5) { animation-delay: 0.5s; }

.sr-bar-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px var(--sr-shadow-hover);
}

.sr-bar-card__image-wrapper {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.sr-bar-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.sr-bar-card:hover .sr-bar-card__image {
    transform: scale(1.1);
}

.sr-bar-card__rating {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.95);
    padding: 8px 12px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 2px 10px var(--sr-shadow);
}

.sr-bar-card__stars {
    color: var(--sr-secondary);
    font-size: 14px;
}

.sr-bar-card__score {
    font-weight: 700;
    color: var(--sr-text);
    font-size: 16px;
}

.sr-bar-card__content {
    padding: 25px;
}

.sr-bar-card__title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--sr-text);
}

.sr-bar-card__location {
    font-size: 14px;
    color: var(--sr-text-light);
    margin-bottom: 15px;
}

.sr-bar-card__description {
    font-size: 15px;
    color: var(--sr-text-light);
    line-height: 1.6;
    margin-bottom: 20px;
}

.sr-bar-card__features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.sr-bar-card__feature {
    padding: 6px 12px;
    background: var(--sr-accent);
    color: var(--sr-text);
    font-size: 12px;
    font-weight: 500;
    border-radius: 15px;
}

/* Advantages Section */
.sr-advantages {
    padding: 100px 0;
    background: rgba(255, 255, 255, 0.5);
}

.sr-advantages__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.sr-advantage {
    text-align: center;
    padding: 30px;
    background: var(--sr-white);
    border-radius: 15px;
    box-shadow: 0 4px 15px var(--sr-shadow);
    transition: all 0.3s ease;
}

.sr-advantage:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px var(--sr-shadow-hover);
}

.sr-advantage__icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: var(--sr-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--sr-primary);
}

.sr-advantage__icon svg {
    width: 30px;
    height: 30px;
}

.sr-advantage__title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--sr-text);
}

.sr-advantage__text {
    font-size: 15px;
    color: var(--sr-text-light);
    line-height: 1.6;
}

/* Experience Section */
.sr-experience {
    padding: 100px 0;
}

.sr-experience__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.sr-experience__content {
    animation: fadeInLeft 0.8s ease;
}

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

.sr-experience__text {
    font-size: 16px;
    color: var(--sr-text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.sr-experience__image {
    animation: fadeInRight 0.8s ease;
}

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

.sr-experience__image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px var(--sr-shadow);
}

.sr-experience__img {
    width: 100%;
    height: auto;
    display: block;
}

/* Testimonials Section */
.sr-testimonials {
    padding: 100px 0;
    background: rgba(255, 255, 255, 0.5);
}

.sr-testimonials__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.sr-testimonial {
    background: var(--sr-white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 15px var(--sr-shadow);
    transition: all 0.3s ease;
}

.sr-testimonial:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px var(--sr-shadow-hover);
}

.sr-testimonial__rating {
    color: var(--sr-secondary);
    font-size: 18px;
    margin-bottom: 15px;
}

.sr-testimonial__text {
    font-size: 15px;
    color: var(--sr-text-light);
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.sr-testimonial__author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.sr-testimonial__avatar {
    width: 50px;
    height: 50px;
    background: var(--sr-primary);
    color: var(--sr-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
}

.sr-testimonial__name {
    font-weight: 600;
    color: var(--sr-text);
    margin-bottom: 3px;
}

.sr-testimonial__location {
    font-size: 14px;
    color: var(--sr-text-light);
}

/* Footer */
.sr-footer {
    background: var(--sr-text);
    color: var(--sr-white);
    padding: 60px 0 30px;
}

.sr-footer__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.sr-footer__title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--sr-secondary);
}

.sr-footer__text {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
}

.sr-footer__heading {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--sr-white);
}

.sr-footer__list {
    list-style: none;
}

.sr-footer__list li {
    margin-bottom: 10px;
}

.sr-footer__link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 15px;
}

.sr-footer__link:hover {
    color: var(--sr-secondary);
}

.sr-footer__bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.sr-footer__copyright {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

/* Responsive Design */
@media (max-width: 991px) {
    .sr-burger {
        display: flex;
    }

    .sr-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--sr-white);
        box-shadow: -2px 0 20px var(--sr-shadow);
        transition: right 0.3s ease;
        z-index: 1000;
        padding: 80px 30px 30px;
    }

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

    .sr-nav__close {
        display: block;
    }

    .sr-nav__list {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .sr-nav__link {
        font-size: 18px;
    }

    .sr-hero__title {
        font-size: 42px;
    }

    .sr-hero__subtitle {
        font-size: 18px;
    }

    .sr-section-title {
        font-size: 36px;
    }

    .sr-experience__grid {
        grid-template-columns: 1fr;
    }

    .sr-featured__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .sr-hero__title {
        font-size: 36px;
    }

    .sr-hero__subtitle {
        font-size: 16px;
    }

    .sr-hero__actions {
        flex-direction: column;
    }

    .sr-btn--large {
        width: 100%;
    }

    .sr-section-title {
        font-size: 32px;
    }

    .sr-advantages__grid {
        grid-template-columns: 1fr;
    }

    .sr-testimonials__grid {
        grid-template-columns: 1fr;
    }
}

/* Page Specific Styles */
.sr-page-header {
    padding: 150px 0 80px;
    text-align: center;
    background: linear-gradient(135deg, var(--sr-primary) 0%, var(--sr-primary-dark) 100%);
    color: var(--sr-white);
    position: relative;
    overflow: hidden;
}

.sr-page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/background.webp') center/cover;
    opacity: 0.1;
    z-index: 0;
}

.sr-page-header__content {
    position: relative;
    z-index: 1;
}

.sr-page-header__title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--sr-white);
}

.sr-page-header__subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
}

.sr-content-section {
    padding: 80px 0;
}

.sr-content-section p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--sr-text-light);
    margin-bottom: 20px;
}

.sr-content-section h2 {
    font-size: 32px;
    margin: 40px 0 20px;
    color: var(--sr-text);
}

.sr-content-section h3 {
    font-size: 24px;
    margin: 30px 0 15px;
    color: var(--sr-text);
}

.sr-content-section ul,
.sr-content-section ol {
    margin: 20px 0;
    padding-left: 30px;
}

.sr-content-section li {
    font-size: 16px;
    line-height: 1.8;
    color: var(--sr-text-light);
    margin-bottom: 10px;
}

/* Contact Form Styles */
.sr-contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: var(--sr-white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px var(--sr-shadow);
}

.sr-form-group {
    margin-bottom: 25px;
}

.sr-form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--sr-text);
    margin-bottom: 8px;
}

.sr-form-input,
.sr-form-textarea {
    width: 100%;
    padding: 12px 16px;
    font-size: 16px;
    font-family: 'Source Sans Pro', sans-serif;
    border: 2px solid var(--sr-accent);
    border-radius: 10px;
    background: var(--sr-bg);
    color: var(--sr-text);
    transition: all 0.3s ease;
}

.sr-form-input:focus,
.sr-form-textarea:focus {
    outline: none;
    border-color: var(--sr-primary);
    background: var(--sr-white);
}

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

/* Popup Styles */
.sr-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(44, 24, 16, 0.9);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.sr-popup.active {
    display: flex;
}

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

.sr-popup__content {
    background: var(--sr-white);
    padding: 40px;
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    position: relative;
    animation: slideUp 0.3s ease;
}

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

.sr-popup__close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 28px;
    color: var(--sr-text);
    cursor: pointer;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.sr-popup__close:hover {
    background: var(--sr-accent);
}

.sr-popup__title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--sr-text);
}

.sr-popup__text {
    font-size: 16px;
    color: var(--sr-text-light);
    line-height: 1.7;
    margin-bottom: 25px;
}

.sr-popup__icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--sr-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: var(--sr-primary);
}
