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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    line-height: 1.6;
    color: hsl(0, 0%, 95%);
    background-color: hsl(220, 13%, 9%);
    overflow-x: hidden;
}

/* CSS Variables */
:root {
    /* Colors */
    --background: hsl(220, 13%, 9%);
    --foreground: hsl(0, 0%, 95%);
    --card: hsl(220, 13%, 12%);
    --card-foreground: hsl(0, 0%, 95%);
    --border: hsl(220, 9%, 18%);
    --muted: hsl(220, 9%, 18%);
    --muted-foreground: hsl(0, 0%, 65%);
    --gold: hsl(45, 64%, 72%);
    --gold-foreground: hsl(220, 13%, 9%);
    --gold-muted: hsl(45, 32%, 48%);
    
    /* Transitions */
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    
    /* Shadows */
    --shadow-gold: 0 10px 30px -10px hsl(45, 64%, 72%, 0.3);
    --shadow-dark: 0 10px 40px -15px hsl(220, 13%, 9%, 0.5);
    
    /* Radius */
    --radius: 12px;
}

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

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

/* Navbar */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: hsla(220, 13%, 9%, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 4rem;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--gold);
    text-decoration: none;
    transition: var(--transition-smooth);
}

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

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: var(--muted-foreground);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-smooth);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.nav-link.active::after,
.nav-link:hover::after {
    transform: scaleX(1);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--foreground);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Buttons */
.btn-gold {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-muted) 100%);
    color: var(--gold-foreground);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.btn-outline {
    background: transparent;
    color: var(--foreground);
    border: 1px solid var(--border);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-smooth);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.city-btn {
    background: var(--card);
    color: var(--card-foreground);
    border: 1px solid var(--border);
    padding: 1rem 2rem;
    border-radius: var(--radius);
    font-weight: 500;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    min-height: 4rem;
}

.city-btn:hover {
    border-color: var(--gold);
    transform: translateY(-2px);
    box-shadow: var(--shadow-dark);
}

.btn-contact {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-muted) 100%);
    color: var(--gold-foreground);
    border: none;
    padding: 1rem 2rem;
    border-radius: var(--radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-bounce);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-contact:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-gold);
}

.btn-social {
    background: var(--muted);
    color: var(--foreground);
    border: 1px solid var(--border);
    padding: 0.5rem 1rem;
    border-radius: var(--radius);
    font-size: 0.875rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
}

.btn-social:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.btn-report {
    background: hsl(0, 75%, 60%);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: var(--radius);
    font-size: 0.875rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
}

.btn-report:hover {
    background: hsl(0, 75%, 50%);
}

.back-btn {
    background: transparent;
    color: var(--muted-foreground);
    border: 1px solid var(--border);
    padding: 0.5rem 1rem;
    border-radius: var(--radius);
    font-size: 0.875rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.back-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.full-width {
    width: 100%;
}

/* Home Page */
.home-main {
    min-height: calc(100vh - 4rem);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--background) 0%, var(--card) 100%);
}

.hero-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    text-align: center;
}

.hero-content {
    max-width: 4xl;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.hero-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: bold;
    line-height: 1;
}

.title-main {
    color: var(--foreground);
}

.title-gold {
    color: var(--gold);
}

.hero-subtitle {
    font-size: clamp(1.25rem, 3vw, 2rem);
    color: var(--muted-foreground);
    max-width: 2xl;
    margin: 0 auto;
}

.cities-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.cities-title {
    font-size: 2rem;
    font-weight: 600;
    color: var(--foreground);
}

.cities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    max-width: 80rem;
    margin: 0 auto;
}

.cta-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-top: 2rem;
}

.cta-text {
    color: var(--muted-foreground);
    font-size: 1.125rem;
}

/* City Page */
.city-main {
    min-height: calc(100vh - 4rem);
    background: var(--background);
    padding: 2rem 0;
}

.page-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.page-title {
    font-size: 2rem;
    font-weight: bold;
    color: var(--foreground);
}

.models-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.5rem;
}

.model-card {
  background: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition-smooth);
  cursor: pointer;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: inherit;
}

.model-card:hover .model-image-container {
  transform: translateY(-4px);
  box-shadow: var(--shadow-dark);
  border-color: var(--gold-muted);
}

.model-image-container {
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
  transition: var(--transition-smooth);
}

.profile-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.overlay-text {
  padding: 0.75rem;
  text-align: center;
}

.overlay-text h3 {
  margin: 0;
  font-size: 1.1rem;
  color: var(--text-light);
  font-weight: 600;
}

.overlay-text p {
  margin: 0.25rem 0 0;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.ribbon {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  padding: 0.3rem 0.6rem;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 0.25rem;
  color: white;
  z-index: 2;
  display: flex;
  align-items: center;
  backdrop-filter: blur(4px);
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.ribbon-vip {
  background-color: #f5593d;
}

.ribbon-premium {
  background-color: #17a2b8;
}

.ribbon-basico {
  background-color: #6c757d;
}

.model-image-container {
    position: relative;
}

.profile-image {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: var(--radius);
}

.overlay-text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    background: linear-gradient(180deg, transparent 0%, hsl(220, 13%, 9%, 0.8) 100%);
    color: var(--foreground);
    font-weight: 500;
}

.no-models {
    text-align: center;
    padding: 4rem 0;
}

.no-models h2 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--muted-foreground);
    margin-bottom: 1rem;
}

.no-models p {
    color: var(--muted-foreground);
    margin-bottom: 1.5rem;
}

/* Model Profile */
.model-main {
    min-height: calc(100vh - 4rem);
    background: var(--background);
    padding: 2rem 0;
}

.model-layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
}

.profile-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.profile-card {
    background: var(--card);
    border-radius: var(--radius);
    padding: 1.5rem;
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.profile-card .profile-image {
    width: 8rem;
    height: 8rem;
    border-radius: var(--radius);
    margin: 0 auto;
    object-fit: cover;
}

.profile-info {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.model-name {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--foreground);
}

.model-age {
    color: var(--muted-foreground);
}

.model-details {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    font-size: 0.875rem;
    margin-top: 1rem;
}

.detail-label {
    font-weight: 500;
    color: var(--foreground);
}

.model-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    margin-top: 1rem;
}

.model-rating i {
    color: var(--gold);
}

.rating-value {
    color: var(--gold);
    font-weight: 500;
}

.rating-count {
    color: var(--muted-foreground);
}

.model-description h3,
.model-tags h3 {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--foreground);
}

.model-description p {
    color: var(--muted-foreground);
    font-size: 0.875rem;
}

.tags-container {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag {
    background: var(--muted);
    color: var(--foreground);
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    border: 1px solid var(--border);
}

.action-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.social-buttons {
    display: flex;
    gap: 0.5rem;
}

.model-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.gallery-section h2,
.comments-section h2 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--foreground);
}

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

.gallery-image {
    width: 100%;
    height: 12rem;
    object-fit: cover;
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition-smooth);
}

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

.comments-section {
    background: var(--card);
    border-radius: var(--radius);
    padding: 1.5rem;
    border: 1px solid var(--border);
}

.add-comment {
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.rating-input {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.star-rating {
    display: flex;
    gap: 0.25rem;
}

.star-rating i {
    color: var(--muted-foreground);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.star-rating i.active,
.star-rating i:hover {
    color: var(--gold);
}

.comments-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.comment {
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border);
}

.comment-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.comment-author {
    font-weight: 500;
    color: var(--foreground);
}

.comment-rating {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.comment-rating i {
    color: var(--gold);
    font-size: 0.875rem;
}

.comment-text {
    color: var(--muted-foreground);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.comment-date {
    font-size: 0.75rem;
    color: var(--muted-foreground);
}

/* Contact Page */
.contact-main {
    min-height: calc(100vh - 4rem);
    background: var(--background);
    padding: 3rem 0;
}

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

.contact-header h1 {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--foreground);
    margin-bottom: 1rem;
}

.contact-header p {
    font-size: 1.25rem;
    color: var(--muted-foreground);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 4xl;
    margin: 0 auto;
}

.form-card,
.info-card {
    background: var(--card);
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.form-card {
    padding: 1.5rem;
}

.form-title {
    color: var(--gold);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.info-card {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.info-item i {
    color: var(--gold);
    font-size: 1.25rem;
}

.info-item h3 {
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.25rem;
}

.info-item p {
    color: var(--muted-foreground);
}

/* Login Page */
.login-main {
    min-height: calc(100vh - 4rem);
    background: var(--background);
    padding: 3rem 0;
}

.login-header {
    text-align: center;
    margin-bottom: 2rem;
}

.login-header h1 {
    font-size: 2rem;
    font-weight: bold;
    color: var(--foreground);
    margin-bottom: 0.5rem;
}

.login-header p {
    color: var(--muted-foreground);
}

.login-container {
    max-width: 28rem;
    margin: 0 auto;
}

.login-card {
    background: var(--card);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    padding: 1.5rem;
}

.tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-bottom: 1.5rem;
    background: var(--muted);
    border-radius: var(--radius);
    padding: 0.25rem;
}

.tab-btn {
    background: transparent;
    border: none;
    padding: 0.75rem;
    border-radius: calc(var(--radius) - 0.25rem);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-smooth);
    color: var(--muted-foreground);
}

.tab-btn.active {
    background: var(--card);
    color: var(--foreground);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.password-group {
    position: relative;
}

.password-toggle {
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--muted-foreground);
    cursor: pointer;
}

.forgot-password {
    text-align: center;
    margin-top: 1rem;
}

.forgot-link {
    color: var(--gold);
    text-decoration: none;
    font-size: 0.875rem;
}

.forgot-link:hover {
    text-decoration: underline;
}

.user-type-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--foreground);
    margin-bottom: 0.5rem;
    display: block;
}

.radio-group {
    display: flex;
    gap: 1rem;
}

.radio-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.radio-option input[type="radio"] {
    accent-color: var(--gold);
}

/* Forms */
.form-group {
    margin-bottom: 1rem;
}

input, textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--background);
    color: var(--foreground);
    font-size: 1rem;
    transition: var(--transition-smooth);
}

input:focus, textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px hsl(45, 64%, 72%, 0.1);
}

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

/* Footer */
.footer {
    background: var(--card);
    border-top: 1px solid var(--border);
    margin-top: auto;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 1rem;
}

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

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--gold);
}

.footer-description {
    color: var(--muted-foreground);
}

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

.social-link {
    color: var(--muted-foreground);
    font-size: 1.25rem;
    transition: var(--transition-smooth);
    text-decoration: none;
}

.social-link:hover {
    color: var(--gold);
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--foreground);
}

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

.footer-link {
    color: var(--muted-foreground);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-link:hover {
    color: var(--gold);
}

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

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--muted-foreground);
}

.contact-item i {
    font-size: 1rem;
}

.footer-bottom {
    border-top: 1px solid var(--border);
    margin-top: 2rem;
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: var(--muted-foreground);
}

/* Modals */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease-out;
}

.modal-content {
    background: var(--card);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    max-width: 500px;
    width: 90%;
    animation: zoomIn 0.3s ease-out;
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    border-bottom: 1px solid var(--border);
}

.modal-title {
    color: var(--gold);
    font-size: 1.25rem;
    font-weight: 600;
}

.modal-close {
    background: none;
    border: none;
    color: var(--muted-foreground);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.modal-close:hover {
    color: var(--foreground);
}

.modal-body {
    padding: 1.5rem;
}

.modal-text {
    color: var(--muted-foreground);
    margin-bottom: 1.5rem;
}

.modal-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

/* Image Modal */
.image-modal {
    display: none;
    position: fixed;
    z-index: 1001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
}

.image-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.image-modal-content img {
    width: 100%;
    height: 100%;
    max-height: 80vh;
    object-fit: contain;
}

.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    border: none;
    color: white;
    font-size: 1.5rem;
    padding: 1rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.nav-btn:hover {
    background: rgba(0, 0, 0, 0.8);
}

.prev-btn {
    left: 1rem;
}

.next-btn {
    right: 1rem;
}

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

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

@keyframes zoomIn {
    from { 
        opacity: 0; 
        transform: scale(0.95); 
    }
    to { 
        opacity: 1; 
        transform: scale(1); 
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 4rem;
        left: 0;
        right: 0;
        background: var(--background);
        border-top: 1px solid var(--border);
        flex-direction: column;
        padding: 1rem;
        gap: 1rem;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition-smooth);
    }

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

    .mobile-menu-btn {
        display: block;
    }

    .cities-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 0.75rem;
    }

    .city-btn {
        padding: 0.75rem 1rem;
        min-height: 3rem;
        font-size: 0.875rem;
    }

    .hero-title {
        font-size: clamp(2.5rem, 10vw, 4rem);
    }

    .hero-subtitle {
        font-size: clamp(1rem, 4vw, 1.5rem);
    }

    .model-layout {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .contact-layout {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .models-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 1rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 0.75rem;
    }

    .gallery-image {
        height: 10rem;
    }

    .social-buttons {
        flex-direction: column;
    }

    .radio-group {
        flex-direction: column;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.75rem;
    }

    .nav-container {
        padding: 0 0.75rem;
    }

    .footer-container {
        padding: 2rem 0.75rem;
    }

    .cities-grid {
        grid-template-columns: 1fr 1fr;
    }

    .models-grid {
        grid-template-columns: 1fr 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }
}