/* ========================================
   Serecco — Property Management Website
   Inspired by casaolivi.com
   ======================================== */

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-primary: #2c3e50;
    --color-secondary: #8b7355;
    --color-accent: #c9a96e;
    --color-text: #333333;
    --color-text-light: #666666;
    --color-text-muted: #999999;
    --color-bg: #ffffff;
    --color-bg-alt: #f9f8f6;
    --color-border: #e8e6e1;
    --color-overlay: rgba(0, 0, 0, 0.35);
    --font-heading: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --nav-height: 80px;
    --transition: 0.3s ease;
    --transition-slow: 0.6s ease;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background-color: var(--color-bg);
    line-height: 1.7;
    font-weight: 300;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ========================================
   Navigation
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    transition: background-color var(--transition), box-shadow var(--transition);
    height: var(--nav-height);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 1px 0 var(--color-border);
}

.navbar.scrolled .nav-logo,
.navbar.scrolled .nav-link {
    color: var(--color-primary);
}

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

.nav-logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    color: #fff;
    transition: color var(--transition);
}

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

.nav-link {
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
    transition: color var(--transition);
    position: relative;
    padding: 4px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: currentColor;
    transition: width var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link.nav-cta {
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 8px 24px;
    transition: all var(--transition);
}

.nav-link.nav-cta::after {
    display: none;
}

.nav-link.nav-cta:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #fff;
}

.navbar.scrolled .nav-link.nav-cta {
    border-color: var(--color-primary);
}

.navbar.scrolled .nav-link.nav-cta:hover {
    background: var(--color-primary);
    color: #fff;
}

/* Mobile Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 24px;
    height: 1.5px;
    background: #fff;
    transition: all var(--transition);
}

.navbar.scrolled .nav-toggle span {
    background: var(--color-primary);
}

/* ========================================
   Hero Section
   ======================================== */
.hero, .property-hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.property-hero {
    height: 70vh;
    min-height: 500px;
}

.hero-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.05);
    animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    from { transform: scale(1.05); }
    to { transform: scale(1.0); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: var(--color-overlay);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: #fff;
    padding: 0 24px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 300;
    letter-spacing: 0.4em;
    margin-bottom: 16px;
    opacity: 0;
    animation: fadeUp 1.2s ease 0.3s forwards;
}

.hero-subtitle {
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    font-weight: 300;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    opacity: 0;
    animation: fadeUp 1.2s ease 0.6s forwards;
}

.hero-divider {
    width: 60px;
    height: 1px;
    background: rgba(255, 255, 255, 0.5);
    margin: 24px auto;
    opacity: 0;
    animation: fadeUp 1.2s ease 0.8s forwards;
}

.hero-tagline {
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 0.05em;
    opacity: 0;
    animation: fadeUp 1.2s ease 1s forwards;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.8;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    cursor: pointer;
    animation: fadeUp 1.2s ease 1.2s forwards;
    opacity: 0;
}

.scroll-arrow {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.4);
    margin: 12px auto 0;
    position: relative;
    overflow: hidden;
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {
    0% { top: -100%; }
    50% { top: 100%; }
    100% { top: 100%; }
}

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

/* ========================================
   Sections
   ======================================== */
.section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 400;
    color: var(--color-primary);
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}

.title-divider {
    width: 50px;
    height: 1px;
    background: var(--color-accent);
    margin: 0 auto 20px;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--color-text-light);
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
}

.page-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 300;
    color: var(--color-primary);
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}

/* ========================================
   About Section
   ======================================== */
.about-section {
    background: var(--color-bg);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-lead {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    line-height: 1.8;
    color: var(--color-primary);
    margin-bottom: 32px;
    font-weight: 400;
}

.about-text {
    font-size: 0.95rem;
    color: var(--color-text-light);
    margin-bottom: 20px;
    line-height: 1.9;
}

/* ========================================
   Properties Grid
   ======================================== */
.properties-section {
    background: var(--color-bg-alt);
}

.properties-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.property-card {
    display: block;
    background: var(--color-bg);
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition);
}

.property-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.property-image-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.property-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.property-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,0.1));
}

.property-info {
    padding: 32px;
}

.property-name {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--color-primary);
    margin-bottom: 4px;
}

.property-tagline {
    font-size: 0.8rem;
    color: var(--color-secondary);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 16px;
}

.property-brief {
    font-size: 0.9rem;
    color: var(--color-text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.property-link {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-secondary);
    transition: color var(--transition);
}

.property-card:hover .property-link {
    color: var(--color-accent);
}

/* ========================================
   Property Detail
   ======================================== */
.property-detail-section {
    background: var(--color-bg);
}

.property-description {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.property-description p {
    font-size: 1rem;
    color: var(--color-text-light);
    line-height: 1.9;
    margin-bottom: 24px;
}

/* Features */
.features-section {
    background: var(--color-bg-alt);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    transition: border-color var(--transition);
}

.feature-item:hover {
    border-color: var(--color-accent);
}

.feature-icon {
    color: var(--color-accent);
    flex-shrink: 0;
}

.feature-item span {
    font-size: 0.9rem;
    color: var(--color-text);
}

/* ========================================
   Image Carousel
   ======================================== */
.gallery-section {
    background: var(--color-bg);
    padding-bottom: 40px;
}

.carousel-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
}

.carousel {
    overflow: hidden;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.carousel-slide {
    min-width: 100%;
    position: relative;
}

.carousel-slide img {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
    color: var(--color-primary);
    z-index: 2;
}

.carousel-btn:hover {
    background: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.carousel-prev {
    left: 20px;
}

.carousel-next {
    right: 20px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
    padding: 0 24px;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-border);
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    padding: 0;
}

.carousel-dot.active {
    background: var(--color-accent);
    transform: scale(1.2);
}

/* Thumbnail Grid */
.thumbnail-section {
    padding-top: 0;
    padding-bottom: 60px;
}

.thumbnail-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 8px;
}

.thumbnail {
    cursor: pointer;
    overflow: hidden;
    aspect-ratio: 1;
    opacity: 0.7;
    transition: opacity var(--transition);
}

.thumbnail:hover,
.thumbnail.active {
    opacity: 1;
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition);
}

.thumbnail:hover img {
    transform: scale(1.05);
}

/* ========================================
   Events Section
   ======================================== */
.events-section {
    background: var(--color-bg-alt);
    padding: 80px 0 60px;
}

.events-intro-block {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.events-intro {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.8;
    color: var(--color-primary);
    margin-bottom: 16px;
}

.events-description {
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.9;
    color: var(--color-text-light);
}

/* Pricing Cards */
.pricing-section {
    background: var(--color-bg);
    padding: 80px 0;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 32px;
}

.pricing-card {
    background: var(--color-bg-alt);
    border: 1px solid var(--color-border);
    padding: 40px 32px;
    text-align: center;
    transition: box-shadow var(--transition), transform var(--transition);
}

.pricing-card:hover {
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.06);
    transform: translateY(-2px);
}

.pricing-card-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--color-primary);
    margin-bottom: 32px;
    letter-spacing: 0.02em;
}

.pricing-card-seasons {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.pricing-season {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 16px 0;
}

.pricing-season-label {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-text-light);
    margin-bottom: 4px;
}

.pricing-season-months {
    font-size: 0.75rem;
    font-weight: 300;
    color: var(--color-text-muted);
    margin-bottom: 8px;
}

.pricing-season-price {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--color-primary);
    letter-spacing: 0.01em;
}

.pricing-season-divider {
    width: 40px;
    height: 1px;
    background: var(--color-border);
    margin: 4px auto;
}

.pricing-note {
    font-size: 0.85rem;
    font-weight: 300;
    color: var(--color-text-muted);
    text-align: center;
    font-style: italic;
}

/* Events Details (Ideal For / Included) */
.events-details-section {
    background: var(--color-bg-alt);
    padding: 80px 0;
}

.events-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 800px;
    margin: 0 auto;
}

.events-detail-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--color-primary);
    margin-bottom: 28px;
    text-align: center;
}

.events-detail-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.events-detail-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--color-text);
    padding: 10px 0;
    border-bottom: 1px solid var(--color-border);
}

.events-detail-list li:last-child {
    border-bottom: none;
}

.events-detail-icon {
    flex-shrink: 0;
    color: var(--color-accent);
}

/* Events CTA */
.events-cta-section {
    background: var(--color-bg);
    text-align: center;
    padding: 60px 0 80px;
}

.events-cta-text {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--color-text);
    margin-bottom: 28px;
}

/* ========================================
   CTA Section
   ======================================== */
.cta-section {
    background: var(--color-bg-alt);
    text-align: center;
    padding: 80px 0;
}

.cta-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 400;
    color: var(--color-primary);
    margin-bottom: 12px;
}

.cta-text {
    font-size: 1rem;
    color: var(--color-text-light);
    margin-bottom: 32px;
}

/* ========================================
   Buttons
   ======================================== */
.btn {
    display: inline-block;
    padding: 14px 40px;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all var(--transition);
    border: none;
}

.btn-primary {
    background: var(--color-primary);
    color: #fff;
}

.btn-primary:hover {
    background: #1a2a3a;
}

.btn-secondary {
    background: transparent;
    color: var(--color-primary);
    border: 1px solid var(--color-primary);
}

.btn-secondary:hover {
    background: var(--color-primary);
    color: #fff;
}

/* ========================================
   Contact Form
   ======================================== */
.contact-hero {
    padding-top: 140px;
    padding-bottom: 40px;
    background: var(--color-bg);
}

.contact-section {
    padding-top: 0;
}

.contact-wrapper {
    max-width: 600px;
    margin: 0 auto;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.form-label {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-text);
}

.required {
    color: var(--color-secondary);
}

.form-input {
    padding: 14px 16px;
    border: 1px solid var(--color-border);
    background: var(--color-bg);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--color-text);
    transition: border-color var(--transition);
    outline: none;
}

.form-input:focus {
    border-color: var(--color-accent);
}

.form-input::placeholder {
    color: var(--color-text-muted);
}

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

.form-input,
.form-select {
    height: 48px;
    box-sizing: border-box;
}

.form-select {
    padding: 14px 16px;
    border: 1px solid var(--color-border);
    background: var(--color-bg);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--color-text-muted);
    transition: border-color var(--transition);
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer;
}

.form-select.has-value {
    color: var(--color-text);
}

.form-select:focus {
    border-color: var(--color-accent);
}

/* Phone input group: country code + number side by side */
.phone-input-group {
    display: flex;
    gap: 0;
    align-items: stretch;
}

.country-code-select-wrapper {
    flex-shrink: 0;
    width: 120px;
}

.country-code-select {
    width: 100%;
    height: 48px;
    font-size: 0.9rem;
    padding: 14px 12px;
    padding-right: 28px;
    background-position: right 8px center;
    border-right: none;
    color: var(--color-text);
}

.phone-input {
    flex: 1;
    min-width: 0;
}

/* Property select: match phone row width */
.form-group-aligned {
    max-width: 100%;
}

.btn-submit {
    align-self: flex-start;
    margin-top: 8px;
}

/* Messages */
.success-message, .info-message {
    text-align: center;
    padding: 60px 40px;
    background: var(--color-bg-alt);
    border: 1px solid var(--color-border);
}

.success-icon, .info-icon {
    color: var(--color-accent);
    margin-bottom: 24px;
}

.success-message h2, .info-message h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 400;
    color: var(--color-primary);
    margin-bottom: 12px;
}

.success-message p, .info-message p {
    color: var(--color-text-light);
    margin-bottom: 32px;
    line-height: 1.8;
}

.error-message {
    padding: 16px 20px;
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #b91c1c;
    font-size: 0.9rem;
}

/* ========================================
   Footer
   ======================================== */
.footer {
    background: var(--color-primary);
    color: rgba(255, 255, 255, 0.7);
    padding: 60px 0 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
}

.footer-brand h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    color: #fff;
    margin-bottom: 12px;
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-links h4 {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 16px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    font-size: 0.9rem;
    transition: color var(--transition);
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 24px;
    text-align: center;
    font-size: 0.8rem;
}

/* ========================================
   Animations (scroll-triggered)
   ======================================== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   Responsive
   ======================================== */
@media (max-width: 1024px) {
    .properties-grid {
        gap: 24px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    :root {
        --nav-height: 64px;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--color-bg);
        flex-direction: column;
        justify-content: center;
        gap: 32px;
        padding: 40px;
        transition: right var(--transition);
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
    }
    
    .nav-menu.open {
        right: 0;
    }
    
    .nav-menu .nav-link {
        color: var(--color-primary);
        font-size: 0.9rem;
    }
    
    .nav-menu .nav-link.nav-cta {
        border-color: var(--color-primary);
        text-align: center;
    }
    
    .properties-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .thumbnail-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .country-code-select-wrapper {
        width: 100px;
    }
    
    .pricing-cards {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .pricing-card {
        padding: 28px 24px;
    }
    
    .events-details-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
    }
    
    .carousel-prev {
        left: 10px;
    }
    
    .carousel-next {
        right: 10px;
    }
}

@media (max-width: 480px) {
    .thumbnail-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .property-info {
        padding: 24px;
    }
    
    .btn {
        padding: 12px 32px;
    }
}
