/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-primary: #6498AF;
    --color-secondary: #8CA9BD;
    --color-light: #ECEDE6;
    --color-dark: #2c3e50;
    --color-text: #333;
    --color-white: #ffffff;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-white);
    font-size: 16px;
    position: relative;
    overflow-x: hidden;
}

/* Creative Abstract Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(100, 152, 175, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(140, 169, 189, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(236, 237, 230, 0.2) 0%, transparent 60%),
        linear-gradient(135deg, #ECEDE6 0%, #ffffff 100%);
    z-index: -1;
    animation: backgroundShift 20s ease-in-out infinite;
}

body::after {
    content: '';
    position: fixed;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(100, 152, 175, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
    animation: float 15s ease-in-out infinite;
}

@keyframes backgroundShift {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 1;
    }
    50% {
        transform: translate(-20px, -20px) scale(1.05);
        opacity: 0.95;
    }
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(30px, -30px) rotate(120deg);
    }
    66% {
        transform: translate(-20px, 20px) rotate(240deg);
    }
}

/* Additional abstract shapes */
.about {
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(100, 152, 175, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
    z-index: 0;
}

.about .container {
    position: relative;
    z-index: 1;
}


img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

/* Header Styles */
.header {
    background-color: var(--color-white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-sm) 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-primary);
}

.logo-img {
    width: 40px;
    height: 40px;
}

.logo-text {
    display: none;
}

.nav {
    position: relative;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--spacing-xs);
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background-color: var(--color-primary);
    transition: var(--transition);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.nav-menu {
    display: flex;
    gap: var(--spacing-md);
    align-items: center;
}

.nav-menu a {
    color: var(--color-text);
    font-weight: 500;
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--border-radius);
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--color-primary);
    background-color: var(--color-light);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--color-light) 0%, var(--color-secondary) 100%);
    padding: var(--spacing-xl) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(100, 152, 175, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(140, 169, 189, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 25s ease-in-out infinite reverse;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: var(--spacing-sm);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--color-text);
    margin-bottom: var(--spacing-md);
}

.hero-image {
    margin-top: var(--spacing-md);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.hero-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    background-color: #ccc;
}

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, var(--color-light) 0%, var(--color-secondary) 100%);
    padding: var(--spacing-lg) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at top left, rgba(100, 152, 175, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at bottom right, rgba(140, 169, 189, 0.1) 0%, transparent 50%);
    z-index: 0;
}

.page-hero .container {
    position: relative;
    z-index: 1;
}

.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: var(--spacing-xs);
}

.page-subtitle {
    font-size: 1.125rem;
    color: var(--color-text);
}

/* Section Styles */
.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: var(--spacing-md);
    text-align: center;
}

/* About Section */
.about {
    padding: var(--spacing-xl) 0;
    background-color: var(--color-white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
}

.about-text p {
    margin-bottom: var(--spacing-sm);
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--color-text);
}

.about-image {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    background-color: #ccc;
}

/* Categories Section */
.categories {
    padding: var(--spacing-xl) 0;
    background-color: var(--color-light);
    position: relative;
    overflow: hidden;
}

.categories::before {
    content: '';
    position: absolute;
    top: 10%;
    right: -5%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(100, 152, 175, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 18s ease-in-out infinite;
}

.categories::after {
    content: '';
    position: absolute;
    bottom: 10%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(140, 169, 189, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 22s ease-in-out infinite reverse;
}

.categories-grid {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-md);
    position: relative;
    z-index: 1;
    justify-content: space-between;
}

.category-card {
    background-color: var(--color-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    width: calc(45% - var(--spacing-md) / 2);
    flex-shrink: 0;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.category-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.category-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-color: #ccc;
    transition: var(--transition);
}

.category-card:hover .category-img {
    transform: scale(1.05);
}

.category-content {
    padding: var(--spacing-md);
}

.category-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: var(--spacing-xs);
}

.category-description {
    color: var(--color-text);
    margin-bottom: var(--spacing-sm);
    line-height: 1.6;
}

.category-link {
    color: var(--color-primary);
    font-weight: 600;
    display: inline-block;
}

.category-link:hover {
    color: var(--color-secondary);
}

/* Services Cards Section */
.services-cards {
    padding: var(--spacing-xl) 0;
    background-color: var(--color-white);
    position: relative;
    overflow: hidden;
}

.services-cards::before {
    content: '';
    position: absolute;
    top: 30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(100, 152, 175, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
    z-index: 0;
}

.services-cards .container {
    position: relative;
    z-index: 1;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
    position: relative;
    z-index: 1;
}

.service-card {
    background-color: var(--color-white);
    border-radius: 20px;
    padding: var(--spacing-lg);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    min-height: 200px;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.service-card-primary {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    color: var(--color-white);
}

.service-card-primary .service-title,
.service-card-primary .service-text {
    color: var(--color-white);
}

.service-icon {
    width: 60px;
    height: 60px;
    background-color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-xs);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.service-card-primary .service-icon {
    background-color: rgba(255, 255, 255, 0.95);
}

.service-icon svg {
    width: 32px;
    height: 32px;
    color: var(--color-primary);
    stroke-width: 2;
}

.service-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-dark);
    margin: 0;
}

.service-text {
    font-size: 1rem;
    color: var(--color-text);
    line-height: 1.6;
    margin: 0;
}

/* Features Section */
.features {
    padding: var(--spacing-xl) 0;
    background-color: var(--color-white);
    position: relative;
    overflow: hidden;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at top right, rgba(100, 152, 175, 0.05) 0%, transparent 60%),
        radial-gradient(ellipse at bottom left, rgba(140, 169, 189, 0.05) 0%, transparent 60%);
    z-index: 0;
}

.features .container {
    position: relative;
    z-index: 1;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
}

.feature-item {
    text-align: center;
    padding: var(--spacing-md);
}

.feature-icon {
    width: 60px;
    height: 60px;
    color: var(--color-primary);
    margin: 0 auto var(--spacing-sm);
    stroke-width: 2;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: var(--spacing-xs);
}

.feature-text {
    color: var(--color-text);
    line-height: 1.6;
}

/* Content Section */
.content-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--color-white);
    position: relative;
    overflow: hidden;
}

.content-section::before {
    content: '';
    position: absolute;
    top: 20%;
    right: -10%;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(100, 152, 175, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

.content-section::after {
    content: '';
    position: absolute;
    bottom: 20%;
    left: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(140, 169, 189, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 18s ease-in-out infinite reverse;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
    position: relative;
    z-index: 1;
}

.content-text {
    font-size: 1.125rem;
    line-height: 1.8;
}

.content-text h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: var(--spacing-sm);
}

.content-text p {
    margin-bottom: var(--spacing-sm);
    color: var(--color-text);
}

.content-image {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.content-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    background-color: #ccc;
}

/* Gallery Section */
.gallery-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--color-light);
    position: relative;
    overflow: hidden;
}

.gallery-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(45deg, transparent 30%, rgba(100, 152, 175, 0.03) 50%, transparent 70%),
        radial-gradient(circle at 50% 50%, rgba(140, 169, 189, 0.05) 0%, transparent 50%);
    z-index: 0;
    animation: backgroundShift 25s ease-in-out infinite;
}

.gallery-section .container {
    position: relative;
    z-index: 1;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-md);
    position: relative;
    z-index: 1;
}

.gallery-item {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

.gallery-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    background-color: #ccc;
    transition: var(--transition);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: var(--spacing-md);
    color: var(--color-white);
    transform: translateY(100%);
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-item:hover .gallery-img {
    transform: scale(1.1);
}

.gallery-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: var(--spacing-xs);
}

.gallery-description {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Features Section (Page) */
.features-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--color-white);
    position: relative;
    overflow: hidden;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -150px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(140, 169, 189, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 18s ease-in-out infinite reverse;
    z-index: 0;
}

.features-section .container {
    position: relative;
    z-index: 1;
}

.features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
    position: relative;
    z-index: 1;
}

.feature-box {
    text-align: center;
    padding: var(--spacing-md);
    background-color: var(--color-light);
    border-radius: var(--border-radius);
}

.feature-box .feature-icon {
    width: 50px;
    height: 50px;
    color: var(--color-primary);
    margin: 0 auto var(--spacing-sm);
}

.feature-box h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: var(--spacing-xs);
}

.feature-box p {
    color: var(--color-text);
    line-height: 1.6;
}

/* Contact Section */
.contact-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--color-white);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: -20%;
    left: 50%;
    transform: translateX(-50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(100, 152, 175, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

.contact-section::after {
    content: '';
    position: absolute;
    bottom: -20%;
    right: 10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(140, 169, 189, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 22s ease-in-out infinite reverse;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    position: relative;
    z-index: 1;
}

.contact-info {
    padding: var(--spacing-md);
}

.contact-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--color-text);
    margin-bottom: var(--spacing-md);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.contact-item {
    display: flex;
    gap: var(--spacing-sm);
    align-items: flex-start;
}

.contact-icon {
    width: 40px;
    height: 40px;
    color: var(--color-primary);
    flex-shrink: 0;
    stroke-width: 2;
}

.contact-item-content {
    flex: 1;
}

.contact-item-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: var(--spacing-xs);
}

.contact-item-text {
    color: var(--color-text);
    line-height: 1.6;
}

.contact-item-text a {
    color: var(--color-primary);
}

.contact-item-text a:hover {
    color: var(--color-secondary);
    text-decoration: underline;
}

.contact-map {
    padding: var(--spacing-md);
}

.map-container {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border: none;
}

/* Map Section */
.map-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--color-light);
}

.map-section .map-container {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Contact Form */
.contact-form-wrapper {
    padding: var(--spacing-md);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.form-label {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    font-weight: 600;
    color: var(--color-dark);
    font-size: 0.95rem;
}

.form-label svg {
    width: 18px;
    height: 18px;
    color: var(--color-primary);
    stroke-width: 2;
}

.form-input {
    padding: var(--spacing-sm);
    border: 2px solid #e0e0e0;
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
    background-color: var(--color-white);
    color: var(--color-text);
}

.form-input:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(100, 152, 175, 0.1);
}

.form-input::placeholder {
    color: #999;
}

.form-textarea {
    resize: vertical;
    min-height: 150px;
    line-height: 1.6;
}

select.form-input {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236498AF' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 40px;
}

.form-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
    padding: var(--spacing-sm) var(--spacing-lg);
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    color: var(--color-white);
    border: none;
    border-radius: 50px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 5px 20px rgba(100, 152, 175, 0.3);
    align-self: flex-start;
}

.form-submit svg {
    width: 20px;
    height: 20px;
    transition: var(--transition);
}

.form-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(100, 152, 175, 0.4);
}

.form-submit:hover svg {
    transform: translateX(5px);
}

.form-submit:active {
    transform: translateY(-1px);
}

/* Form Success/Error Messages */
.form-message {
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--border-radius);
    margin-bottom: var(--spacing-md);
    display: none;
    align-items: center;
    gap: var(--spacing-xs);
}

.form-message.show {
    display: flex;
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* CTA Section */
.cta-section {
    position: relative;
    padding: var(--spacing-xl) 0;
    overflow: hidden;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.cta-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.cta-shape-1 {
    width: 400px;
    height: 400px;
    top: -200px;
    left: -100px;
    animation: ctaFloat1 20s ease-in-out infinite;
}

.cta-shape-2 {
    width: 300px;
    height: 300px;
    bottom: -150px;
    right: -50px;
    animation: ctaFloat2 15s ease-in-out infinite;
}

.cta-shape-3 {
    width: 250px;
    height: 250px;
    top: 50%;
    right: 10%;
    animation: ctaFloat3 18s ease-in-out infinite;
}

@keyframes ctaFloat1 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(50px, 50px) scale(1.1);
    }
}

@keyframes ctaFloat2 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    50% {
        transform: translate(-30px, -30px) rotate(180deg);
    }
}

@keyframes ctaFloat3 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(-20px, 20px) scale(0.9);
    }
    66% {
        transform: translate(20px, -20px) scale(1.1);
    }
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-icon-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: var(--spacing-md);
}

.cta-icon-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    animation: ctaPulse 2s ease-in-out infinite;
}

@keyframes ctaPulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.3;
    }
}

.cta-icon {
    position: relative;
    width: 80px;
    height: 80px;
    color: var(--color-white);
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.2));
    animation: ctaBounce 3s ease-in-out infinite;
}

@keyframes ctaBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: var(--spacing-sm);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    animation: ctaFadeIn 1s ease-out;
}

@keyframes ctaFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cta-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: var(--spacing-lg);
    line-height: 1.6;
    animation: ctaFadeIn 1s ease-out 0.2s backwards;
}

.cta-buttons {
    display: flex;
    gap: var(--spacing-sm);
    justify-content: center;
    margin-bottom: var(--spacing-lg);
    flex-wrap: wrap;
    animation: ctaFadeIn 1s ease-out 0.4s backwards;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: var(--spacing-sm) var(--spacing-lg);
    border-radius: 50px;
    font-size: 1.125rem;
    font-weight: 600;
    transition: var(--transition);
    text-decoration: none;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.cta-button svg {
    width: 20px;
    height: 20px;
    transition: var(--transition);
}

.cta-button-primary {
    background-color: var(--color-white);
    color: var(--color-primary);
}

.cta-button-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.cta-button-primary:hover svg {
    transform: translateX(5px);
}

.cta-button-secondary {
    background-color: transparent;
    color: var(--color-white);
    border: 2px solid var(--color-white);
}

.cta-button-secondary:hover {
    background-color: var(--color-white);
    color: var(--color-primary);
    transform: translateY(-3px);
}

.cta-button-secondary:hover svg {
    transform: scale(1.1);
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: var(--spacing-lg);
    flex-wrap: wrap;
    animation: ctaFadeIn 1s ease-out 0.6s backwards;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    color: var(--color-white);
    font-size: 1rem;
}

.cta-feature svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

/* Legal Pages Styling */
.legal-content {
    padding: var(--spacing-xl) 0;
    background-color: var(--color-white);
}

.legal-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.legal-section {
    margin-bottom: var(--spacing-lg);
    padding: var(--spacing-md);
    background-color: var(--color-white);
    border-radius: var(--border-radius);
}

.legal-section h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: var(--spacing-sm);
    padding-bottom: var(--spacing-xs);
    border-bottom: 2px solid var(--color-light);
}

.legal-section h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-dark);
    margin-top: var(--spacing-md);
    margin-bottom: var(--spacing-xs);
}

.legal-section p {
    line-height: 1.8;
    margin-bottom: var(--spacing-sm);
    color: var(--color-text);
}

.legal-section ul,
.legal-section ol {
    margin-left: var(--spacing-md);
    margin-bottom: var(--spacing-sm);
    line-height: 1.8;
}

.legal-section li {
    margin-bottom: var(--spacing-xs);
    color: var(--color-text);
}

.legal-section a {
    color: var(--color-primary);
    text-decoration: underline;
}

.legal-section a:hover {
    color: var(--color-secondary);
}

.legal-section strong {
    font-weight: 600;
    color: var(--color-dark);
}

/* Cookie Table */
.cookie-table {
    overflow-x: auto;
    margin: var(--spacing-md) 0;
}

.cookie-table table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--color-white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.cookie-table th {
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: var(--spacing-sm);
    text-align: left;
    font-weight: 600;
}

.cookie-table td {
    padding: var(--spacing-sm);
    border-bottom: 1px solid var(--color-light);
}

.cookie-table tr:hover {
    background-color: var(--color-light);
}

/* Success Page */
.success-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-xl) 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--color-light) 0%, #ffffff 100%);
}

.success-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.success-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(100, 152, 175, 0.08);
}

.success-shape-1 {
    width: 400px;
    height: 400px;
    top: -150px;
    right: -100px;
    animation: float 20s ease-in-out infinite;
}

.success-shape-2 {
    width: 300px;
    height: 300px;
    bottom: -100px;
    left: -50px;
    animation: float 25s ease-in-out infinite reverse;
}

.success-shape-3 {
    width: 250px;
    height: 250px;
    top: 40%;
    left: 10%;
    animation: float 18s ease-in-out infinite;
}

.success-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    animation: successFadeIn 0.8s ease-out;
}

@keyframes successFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.success-icon-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: var(--spacing-md);
}

.success-circle-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: rgba(40, 167, 69, 0.1);
    border-radius: 50%;
    animation: successPulse 2s ease-in-out infinite;
}

@keyframes successPulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.3;
    }
}

.success-icon {
    position: relative;
    width: 80px;
    height: 80px;
    color: #28a745;
    filter: drop-shadow(0 5px 15px rgba(40, 167, 69, 0.3));
    animation: successCheckmark 0.8s ease-out 0.3s both;
}

@keyframes successCheckmark {
    0% {
        transform: scale(0) rotate(-45deg);
        opacity: 0;
    }
    50% {
        transform: scale(1.2) rotate(10deg);
    }
    100% {
        transform: scale(1) rotate(0);
        opacity: 1;
    }
}

.success-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: var(--spacing-sm);
    animation: successFadeIn 0.8s ease-out 0.4s both;
}

.success-subtitle {
    font-size: 1.25rem;
    color: var(--color-text);
    margin-bottom: var(--spacing-lg);
    line-height: 1.6;
    animation: successFadeIn 0.8s ease-out 0.5s both;
}

.success-info {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
    animation: successFadeIn 0.8s ease-out 0.6s both;
}

.success-info-item {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
    padding: var(--spacing-md);
    background-color: var(--color-white);
    border-radius: var(--border-radius);
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    text-align: left;
    transition: var(--transition);
}

.success-info-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.12);
}

.success-info-item svg {
    width: 40px;
    height: 40px;
    color: var(--color-primary);
    flex-shrink: 0;
    stroke-width: 2;
}

.success-info-item h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: var(--spacing-xs);
}

.success-info-item p {
    font-size: 0.95rem;
    color: var(--color-text);
    line-height: 1.5;
    margin: 0;
}

.success-info-item a {
    color: var(--color-primary);
    font-weight: 600;
    text-decoration: none;
}

.success-info-item a:hover {
    text-decoration: underline;
}

.success-actions {
    display: flex;
    gap: var(--spacing-sm);
    justify-content: center;
    margin-bottom: var(--spacing-lg);
    flex-wrap: wrap;
    animation: successFadeIn 0.8s ease-out 0.7s both;
}

.success-button {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: var(--spacing-sm) var(--spacing-lg);
    border-radius: 50px;
    font-size: 1.125rem;
    font-weight: 600;
    transition: var(--transition);
    text-decoration: none;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.success-button svg {
    width: 20px;
    height: 20px;
    transition: var(--transition);
}

.success-button-primary {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    color: var(--color-white);
}

.success-button-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(100, 152, 175, 0.3);
}

.success-button-primary:hover svg {
    transform: scale(1.1);
}

.success-button-secondary {
    background-color: var(--color-white);
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

.success-button-secondary:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-3px);
}

.success-button-secondary:hover svg {
    transform: translateX(5px);
}

.success-social {
    margin-bottom: var(--spacing-lg);
    animation: successFadeIn 0.8s ease-out 0.8s both;
}

.success-social-title {
    font-size: 1rem;
    color: var(--color-text);
    margin-bottom: var(--spacing-sm);
}

.success-social-links {
    display: flex;
    gap: var(--spacing-sm);
    justify-content: center;
}

.social-link {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-white);
    border-radius: 50%;
    color: var(--color-primary);
    transition: var(--transition);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.social-link svg {
    width: 22px;
    height: 22px;
}

.social-link:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(100, 152, 175, 0.3);
}

.success-features {
    display: flex;
    justify-content: center;
    gap: var(--spacing-lg);
    flex-wrap: wrap;
    animation: successFadeIn 0.8s ease-out 0.9s both;
}

.success-feature {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    color: var(--color-text);
    font-size: 0.95rem;
}

.success-feature svg {
    width: 24px;
    height: 24px;
    color: var(--color-primary);
    stroke-width: 2;
}

/* Cookie Consent Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, rgba(100, 152, 175, 0.98) 0%, rgba(140, 169, 189, 0.98) 100%);
    backdrop-filter: blur(10px);
    box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    animation: cookieSlideIn 0.6s ease-out 0.5s forwards;
}

@keyframes cookieSlideIn {
    to {
        transform: translateY(0);
    }
}

.cookie-banner.hidden {
    transform: translateY(100%);
}

.cookie-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--spacing-md);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-md);
}

.cookie-banner-text {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
    flex: 1;
    color: var(--color-white);
}

.cookie-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: cookieRotate 3s ease-in-out infinite;
}

@keyframes cookieRotate {
    0%, 100% {
        transform: rotate(0deg);
    }
    50% {
        transform: rotate(10deg);
    }
}

.cookie-icon svg {
    width: 30px;
    height: 30px;
    color: var(--color-white);
}

.cookie-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: var(--spacing-xs);
    color: var(--color-white);
}

.cookie-description {
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
    color: rgba(255, 255, 255, 0.95);
}

.cookie-link {
    color: var(--color-white);
    text-decoration: underline;
    font-weight: 600;
}

.cookie-link:hover {
    color: var(--color-light);
}

.cookie-banner-actions {
    display: flex;
    gap: var(--spacing-xs);
    flex-shrink: 0;
}

.cookie-btn {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: var(--spacing-xs) var(--spacing-sm);
    border: none;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
    white-space: nowrap;
}

.cookie-btn svg {
    width: 18px;
    height: 18px;
}

.cookie-btn-accept {
    background-color: var(--color-white);
    color: var(--color-primary);
}

.cookie-btn-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.cookie-btn-settings {
    background-color: transparent;
    color: var(--color-white);
    border: 2px solid var(--color-white);
}

.cookie-btn-settings:hover {
    background-color: var(--color-white);
    color: var(--color-primary);
}

.cookie-btn-reject {
    background-color: rgba(0, 0, 0, 0.2);
    color: var(--color-white);
}

.cookie-btn-reject:hover {
    background-color: rgba(0, 0, 0, 0.4);
}

/* Cookie Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 10001;
    display: none;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-sm);
    animation: cookieFadeIn 0.3s ease-out;
}

@keyframes cookieFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.cookie-modal.show {
    display: flex;
}

.cookie-modal-content {
    background-color: var(--color-white);
    border-radius: var(--border-radius);
    max-width: 600px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: cookieModalSlide 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes cookieModalSlide {
    from {
        transform: translateY(50px) scale(0.9);
        opacity: 0;
    }
    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

.cookie-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-md);
    border-bottom: 2px solid var(--color-light);
}

.cookie-modal-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-dark);
    margin: 0;
}

.cookie-modal-close {
    width: 35px;
    height: 35px;
    background: none;
    border: none;
    color: var(--color-text);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.cookie-modal-close:hover {
    background-color: var(--color-light);
    color: var(--color-primary);
}

.cookie-modal-close svg {
    width: 24px;
    height: 24px;
}

.cookie-modal-body {
    padding: var(--spacing-md);
}

.cookie-modal-description {
    color: var(--color-text);
    margin-bottom: var(--spacing-md);
    line-height: 1.6;
}

.cookie-option {
    margin-bottom: var(--spacing-md);
    padding: var(--spacing-md);
    background-color: var(--color-light);
    border-radius: var(--border-radius);
}

.cookie-option-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--spacing-sm);
}

.cookie-option-info h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: var(--spacing-xs);
}

.cookie-option-info p {
    font-size: 0.9rem;
    color: var(--color-text);
    margin: 0;
}

/* Toggle Switch */
.cookie-toggle {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
    flex-shrink: 0;
}

.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.3s;
    border-radius: 26px;
}

.cookie-slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
}

.cookie-toggle input:checked + .cookie-slider {
    background-color: var(--color-primary);
}

.cookie-toggle input:checked + .cookie-slider:before {
    transform: translateX(24px);
}

.cookie-toggle input:disabled + .cookie-slider {
    opacity: 0.5;
    cursor: not-allowed;
}

.cookie-modal-footer {
    padding: var(--spacing-md);
    border-top: 2px solid var(--color-light);
    display: flex;
    gap: var(--spacing-sm);
    justify-content: flex-end;
}

/* Footer */
.footer {
    background-color: var(--color-dark);
    color: var(--color-white);
    padding: var(--spacing-xl) 0 var(--spacing-md);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.footer-title {

    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    color: var(--color-white);
}

.footer-subtitle {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    color: var(--color-white);
}

.footer-text {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--spacing-xs);
    line-height: 1.6;
}

.footer-text a {
    color: var(--color-secondary);
}

.footer-text a:hover {
    color: var(--color-primary);
    text-decoration: underline;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.footer-nav a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.footer-nav a:hover {
    color: var(--color-primary);
    padding-left: var(--spacing-xs);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* Mobile Styles */
@media (max-width: 768px) {
    .logo-text {
        display: block;
        font-size: 1rem;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background-color: var(--color-white);
        flex-direction: column;
        padding: var(--spacing-md);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        transform: translateX(-100%);
        transition: var(--transition);
        z-index: 999;
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu a {
        display: block;
        padding: var(--spacing-sm);
        width: 100%;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .page-title {
        font-size: 1.75rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .about-content,
    .content-wrapper,
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .form-submit {
        width: 100%;
    }

    .categories-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .category-card {
        width: 100%;
    }

    .features-grid,
    .features-list,
    .services-grid {
        grid-template-columns: 1fr;
    }

    .hero-img,
    .about-img,
    .content-img {
        height: 250px;
    }

    .map-container iframe {
        height: 300px;
    }

    .cta-title {
        font-size: 1.75rem;
    }

    .cta-subtitle {
        font-size: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .cta-button {
        justify-content: center;
    }

    .cta-features {
        flex-direction: column;
        gap: var(--spacing-sm);
    }

    .success-title {
        font-size: 1.75rem;
    }

    .success-subtitle {
        font-size: 1rem;
    }

    .success-icon {
        width: 60px;
        height: 60px;
    }

    .success-circle-bg {
        width: 90px;
        height: 90px;
    }

    .success-info-item {
        flex-direction: column;
        text-align: center;
    }

    .success-actions {
        flex-direction: column;
        width: 100%;
    }

    .success-button {
        width: 100%;
        justify-content: center;
    }

    .success-features {
        flex-direction: column;
        gap: var(--spacing-sm);
    }

    .cookie-banner-content {
        flex-direction: column;
    }

    .cookie-banner-actions {
        width: 100%;
        flex-direction: column;
    }

    .cookie-btn {
        width: 100%;
        justify-content: center;
    }

    .cookie-icon {
        width: 40px;
        height: 40px;
    }

    .cookie-icon svg {
        width: 24px;
        height: 24px;
    }

    .cookie-title {
        font-size: 1.125rem;
    }

    .cookie-description {
        font-size: 0.875rem;
    }

    .cookie-modal-footer {
        flex-direction: column;
    }
}

/* Extra Small Mobile Styles (320px) */
@media (max-width: 320px) {
    .container {
        padding: 0 var(--spacing-xs);
    }

    .hero {
        padding: var(--spacing-md) 0;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .page-title {
        font-size: 1.5rem;
    }

    .page-subtitle {
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 1.25rem;
    }

    .category-title,
    .gallery-title {
        font-size: 1.125rem;
    }

    .logo-img {
        width: 30px;
        height: 30px;
    }

    .logo-text {
        font-size: 0.875rem;
    }

    .nav-menu {
        top: 60px;
    }

    .hero-img,
    .about-img,
    .content-img {
        height: 200px;
    }

    .category-image,
    .gallery-img {
        height: 200px;
    }

    .map-container iframe {
        height: 250px;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .legal-section {
        padding: var(--spacing-sm);
    }

    .legal-section h2 {
        font-size: 1.5rem;
    }

    .legal-section h3 {
        font-size: 1.125rem;
    }

    .cookie-table table {
        font-size: 0.875rem;
    }

    .cookie-table th,
    .cookie-table td {
        padding: var(--spacing-xs);
    }

    .cta-title {
        font-size: 1.5rem;
    }

    .cta-subtitle {
        font-size: 0.9rem;
    }

    .cta-icon {
        width: 60px;
        height: 60px;
    }

    .cta-icon-circle {
        width: 90px;
        height: 90px;
    }

    .cta-shape-1,
    .cta-shape-2,
    .cta-shape-3 {
        width: 200px;
        height: 200px;
    }

    .success-title {
        font-size: 1.5rem;
    }

    .success-subtitle {
        font-size: 0.9rem;
    }

    .success-icon {
        width: 50px;
        height: 50px;
    }

    .success-circle-bg {
        width: 70px;
        height: 70px;
    }

    .success-shape-1,
    .success-shape-2,
    .success-shape-3 {
        width: 200px;
        height: 200px;
    }
}

