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

:root {
    --primary: #1a1a1a;
    --secondary: #8b7355;
    --accent: #c9a876;
    --light: #f8f6f3;
    --white: #ffffff;
    --gray: #666666;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--primary);
    background: var(--white);
    line-height: 1.7;
    font-size: 16px;
    font-weight: 300;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    letter-spacing: 1px;
}

a {
    text-decoration: none;
    color: var(--primary);
    transition: color 0.3s;
}

a:hover {
    color: var(--secondary);
}

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

ul {
    list-style: none;
}

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

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 0.5rem 0;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 3rem;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 400;
    letter-spacing: 2px;
    color: var(--primary);
}

.logo a {
    color: var(--primary);
    text-decoration: none;
}

/* Desktop Menu */
.main-nav ul, .nav-links {
    display: flex;
    gap: 3rem;
    list-style: none;
}

.main-nav ul li a, .nav-links a {
    text-decoration: none;
    color: var(--primary);
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    transition: color 0.3s;
    text-transform: uppercase;
    font-weight: 500;
}

.main-nav ul li a:hover {
    color: var(--accent);
}

.nav-links a:hover {
    color: var(--secondary);
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
                url('https://images.unsplash.com/photo-1530521954074-e64f6810b32d?q=80&w=2070') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    position: relative;
}

.hero-content {
    max-width: 900px;
    padding: 2rem;
}

.hero h1 {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-weight: 300;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    font-weight: 300;
    letter-spacing: 0.5px;
}

/* ===== MODERN BUTTON DESIGN SYSTEM ===== */

/* Base Button Styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border: 2px solid transparent;
  border-radius: 12px;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.025em;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  background-clip: padding-box;
  user-select: none;
  white-space: nowrap;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transition: left 0.6s;
}

.btn:hover::before {
  left: 100%;
}

.btn:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(201, 168, 118, 0.4);
}

.btn:active {
  transform: translateY(1px);
}

.btn:disabled,
.btn[disabled] {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* Primary Button */
.btn-primary {
  background: linear-gradient(135deg, var(--secondary) 0%, #8b7355 100%);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(201, 168, 118, 0.25);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #8b7355 0%, #7a654b 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(201, 168, 118, 0.35);
}

/* Secondary Button */
.btn-secondary {
  background: linear-gradient(135deg, var(--primary) 0%, #2c3e50 100%);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(52, 73, 94, 0.25);
}

.btn-secondary:hover {
  background: linear-gradient(135deg, #2c3e50 0%, #1a252f 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(52, 73, 94, 0.35);
}

/* Outline Button */
.btn-outline {
  background: transparent;
  color: var(--secondary);
  border-color: var(--secondary);
  backdrop-filter: blur(10px);
}

.btn-outline:hover {
  background: var(--secondary);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(201, 168, 118, 0.3);
}

/* Ghost Button */
.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: transparent;
}

.btn-ghost:hover {
  background: rgba(201, 168, 118, 0.1);
  color: var(--secondary);
  transform: translateY(-1px);
}

/* Light Button (for dark backgrounds) */
.btn-light {
  background: var(--white);
  color: var(--primary);
  border: 2px solid var(--white);
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.btn-light:hover {
  background: transparent;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

/* CTA Button (Legacy Support) */
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 3rem;
  background: var(--white);
  color: var(--primary);
  text-decoration: none;
  letter-spacing: 1.5px;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 0.85rem;
  text-transform: uppercase;
  border: 2px solid var(--white);
  border-radius: 12px;
  font-weight: 600;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(52, 73, 94, 0.1), transparent);
  transition: left 0.6s;
}

.cta-button:hover::before {
  left: 100%;
}

.cta-button:hover {
  background: transparent;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

/* About Section */
.about {
    padding: 8rem 3rem;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.about h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
    color: var(--primary);
}

.about p {
    font-size: 1.15rem;
    color: var(--gray);
    max-width: 800px;
    margin: 0 auto 1.5rem;
    line-height: 1.9;
}

/* Destinations Grid */
.destinations {
    padding: 6rem 3rem;
    background: var(--light);
}

.destinations-header {
    text-align: center;
    margin-bottom: 4rem;
}

.destinations h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.destinations-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.destination-card {
    position: relative;
    height: 500px;
    overflow: hidden;
    cursor: pointer;
}

.destination-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.destination-card:hover img {
    transform: scale(1.05);
}

.destination-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 3rem 2rem;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
    color: var(--white);
}

.destination-card h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.destination-card p {
    font-size: 0.95rem;
    opacity: 0.9;
}

/* Destinations Hero */
.destinations-hero {
    height: 60vh;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
                url('https://images.unsplash.com/photo-1493707553966-283afac8c358?q=80&w=2070') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}

/* Regions Section */
.regions {
    padding: 8rem 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.regions-header {
    text-align: center;
    margin-bottom: 4rem;
}

.regions-header h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

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

.region-card {
    background: var(--white);
    padding: 2.5rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.region-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.region-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.region-card p {
    color: var(--gray);
    line-height: 1.8;
}

/* Tours Section */
.tours-section {
    padding: 8rem 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

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

.tours-header h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.tours-header p {
    font-size: 1.2rem;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto;
}

.tours-filter {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

/* Filter Buttons */
.filter-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 2px solid var(--primary);
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--primary);
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    letter-spacing: 0.025em;
    border-radius: 25px;
    position: relative;
    overflow: hidden;
}

.filter-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(52, 73, 94, 0.15), transparent);
    transition: left 0.6s;
}

.filter-button:hover::before,
.filter-button.active::before {
    left: 100%;
}

.filter-button.active, 
.filter-button:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(52, 73, 94, 0.3);
}

.tours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 3rem;
}

.tour-card {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s;
}

.tour-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.tour-image {
    height: 250px;
    position: relative;
    overflow: hidden;
}

.tour-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

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

.tour-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--accent);
    color: var(--white);
    padding: 0.4rem 1rem;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.tour-content {
    padding: 2rem;
}

.tour-tags {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.tour-tag {
    background: var(--light);
    color: var(--gray);
    padding: 0.3rem 0.8rem;
    font-size: 0.7rem;
    border-radius: 2px;
    letter-spacing: 0.5px;
}

.tour-meta {
    display: flex;
    justify-content: space-between;
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.tour-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.tour-card p {
    color: var(--gray);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.tour-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 1.5rem;
}

.tour-price {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--primary);
}

/* Journal Section */
.journal-hero {
    height: 60vh;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
                url('https://images.unsplash.com/photo-1527631746610-bca00a040d60?q=80&w=2070') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}

.journal {
    padding: 8rem 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.journal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 3rem;
}

.journal-card {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s;
}

.journal-card.featured {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.journal-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.journal-image {
    height: 250px;
    overflow: hidden;
}

.journal-card.featured .journal-image {
    height: 100%;
}

.journal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

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

.journal-content {
    padding: 2rem;
}

.journal-meta {
    display: flex;
    justify-content: space-between;
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.journal-card h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.journal-card p {
    color: var(--gray);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.journal-link {
    color: var(--secondary);
    text-decoration: none;
    font-weight: 500;
    display: inline-block;
    position: relative;
}

.journal-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--secondary);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.journal-link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* Tours Page Styles */
.tours-section {
    padding: 8rem 3rem 6rem;
}

.tours-header {
    text-align: center;
    margin-bottom: 4rem;
}

.tours-header h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.tours-header p {
    font-size: 1.2rem;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto;
}

.tours-filter {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 1rem;
}

/* Duplicate filter button styles removed - using unified styles above */

.tours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.tour-card {
    background: var(--white);
    border-radius: 3px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.tour-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.tour-image {
    height: 250px;
    position: relative;
}

.tour-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tour-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--accent);
    color: var(--white);
    padding: 0.3rem 0.8rem;
    font-size: 0.8rem;
    border-radius: 2px;
}

.tour-content {
    padding: 1.5rem;
}

.tour-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 0.8rem;
}

.tour-meta span {
    font-size: 0.85rem;
    color: var(--gray);
}

.tour-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
}

.tour-card p {
    font-size: 0.95rem;
    color: var(--gray);
    margin-bottom: 1.5rem;
}

.tour-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tour-price {
    font-weight: 500;
    color: var(--primary);
}

.tour-tags {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
}

.tour-tag {
    background: var(--light);
    color: var(--secondary);
    padding: 0.2rem 0.6rem;
    font-size: 0.75rem;
    border-radius: 2px;
}

/* Mobile Menu Styles */
.mobile-menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--primary);
    background: none;
    border: none;
    padding: 0.5rem;
    z-index: 100;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background-color: var(--primary);
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: right 0.3s ease;
    padding: 2rem;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-close {
    text-align: right;
    margin-bottom: 2rem;
    cursor: pointer;
    color: var(--white);
    font-size: 1.5rem;
}

.mobile-menu ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 2rem;
}

.mobile-menu ul li {
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 1rem;
}

.mobile-menu ul li:last-child {
    border-bottom: none;
}

.mobile-menu ul li a {
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 500;
    display: block;
    padding: 0.5rem 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Desktop menu is visible by default */
.main-nav ul, .nav-links {
    display: flex;
}

@media (max-width: 992px) {
    /* Hide desktop menu */
    .main-nav ul, .nav-links {
        display: none;
    }
}

/* Footer Styles */
.footer {
    background-color: var(--primary);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.footer-links h4, .footer-contact h4 {
    font-size: 18px;
    margin-bottom: 20px;
}

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

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

.footer-links ul li a, .footer-contact a {
    color: var(--light);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links ul li a:hover, .footer-contact a:hover {
    color: var(--accent);
}

/* Unify social icon styles across .social-icons and .social-links */
.social-icons, .social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icons a, .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    transition: background-color 0.3s;
}

.social-icons a:hover, .social-links a:hover {
    background-color: var(--accent);
}

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

/* Contact Form Styles */
.contact-form-section {
    background-color: var(--light);
    padding: 80px 0;
}

.contact-form {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group:nth-last-child(2) {
    grid-column: span 2;
}

.form-group:last-child {
    grid-column: span 2;
    text-align: center;
    margin-top: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
}

.form-group textarea {
    resize: vertical;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .hero h1 {
        font-size: 3.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .container {
        max-width: 960px;
    }
}

@media (max-width: 992px) {
    .container {
        max-width: 720px;
    }
    
    /* Hide desktop menu */
    .main-nav ul, .nav-links {
        display: none;
    }
    
    /* Show mobile menu toggle */
    .mobile-menu-toggle {
        display: block;
    }
    
    /* Prepare mobile menu for display when active */
    .mobile-menu {
        display: block;
    }
    
    .header .container {
        padding: 1rem 1.5rem;
    }
    
    .logo {
        font-size: 1.8rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-form {
        grid-template-columns: 1fr;
    }
    
    .form-group:nth-last-child(2) {
        grid-column: span 1;
    }
    
    .form-group:last-child {
        grid-column: span 1;
    }
}

@media (max-width: 576px) {
    .header .container {
        padding: 0.8rem 1rem;
    }
    
    .logo {
        font-size: 1.5rem;
    }
    
    .mobile-menu {
        width: 100%;
        right: -100%;
    }
}

@media (max-width: 768px) {
    nav {
        padding: 1rem 2rem;
    }
    
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .about, .destinations {
        padding: 5rem 2rem;
    }
    
    .about h2, .destinations h2 {
        font-size: 2.5rem;
    }
    
    .destination-card {
        height: 400px;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .cta-button {
        padding: 0.8rem 2rem;
    }
    
    .destinations-grid {
        grid-template-columns: 1fr;
    }
    
    .tours-grid {
        grid-template-columns: 1fr;
    }
}

/* Unified header container styles for consistency across pages */
header nav, .header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 3rem;
}

/* Danger Button */
.btn-danger {
  background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(231, 76, 60, 0.25);
}

.btn-danger:hover {
  background: linear-gradient(135deg, #c0392b 0%, #a93226 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(231, 76, 60, 0.35);
}

/* Success Button */
.btn-success {
  background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(39, 174, 96, 0.25);
}

.btn-success:hover {
  background: linear-gradient(135deg, #229954 0%, #1e8449 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(39, 174, 96, 0.35);
}

/* Size Variants */
.btn-xs {
  padding: 0.375rem 0.75rem;
  font-size: 0.75rem;
  border-radius: 8px;
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  border-radius: 10px;
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.1rem;
  border-radius: 14px;
}

.btn-xl {
  padding: 1.25rem 2.5rem;
  font-size: 1.2rem;
  border-radius: 16px;
}

/* Width Variants */
.btn-block {
  width: 100%;
}

.btn-wide {
  min-width: 200px;
}

/* Special Variants */
.btn-rounded {
  border-radius: 50px;
}

.btn-square {
  border-radius: 4px;
}

.btn-icon {
  padding: 0.75rem;
  aspect-ratio: 1;
}