/* css/style.css */
:root {
    --primary: #C19A6B;
    --secondary: #8B5A2B;
    --accent: #A0522D;
    --text-light: #E0E0E0;
    --text-lighter: #FFFFFF;
    --bg-dark: #121212;
    --bg-darker: #0A0A0A;
    --bg-card: #1A1A1A;
    --border: #2A2A2A;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.7;
    overflow-x: hidden;
    perspective: 1000px;
}

h1, h2, h3, h4, h5 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--text-lighter);
    margin-bottom: 1rem;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 100px 0;
    transform-style: preserve-3d;
}

.btn {
    display: inline-block;
    background-color: var(--primary);
    color: var(--text-lighter);
    padding: 14px 32px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: 2px solid var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    transform: translateZ(20px);
}

.btn:hover {
    background-color: transparent;
    color: var(--primary);
    transform: translateZ(30px) translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--text-lighter);
    margin-left: 15px;
}

.btn-outline:hover {
    background-color: var(--text-lighter);
    color: var(--bg-dark);
    transform: translateZ(30px) translateY(-3px);
}

.section-title {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
    transform: translateZ(30px);
}

.section-title h2 {
    font-size: 42px;
    display: inline-block;
    padding-bottom: 15px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    width: 70px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.section-title p {
    color: var(--primary);
    font-size: 18px;
    margin-top: 15px;
}

/* Header Styles */
header {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.header-banner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-size: cover;
    background-position: center;
    transition: opacity 1.5s ease-in-out;
    opacity: 0;
    transform: translateZ(-50px);
}

.header-banner.active {
    opacity: 1;
    z-index: 1;
}

nav {
    background-color: rgba(10, 10, 10, 0.95);
    padding: 25px 0;
    position: fixed;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(193, 154, 107, 0.2);
    transform: translateZ(100px);
}

nav.scrolled {
    padding: 15px 0;
    background-color: rgba(10, 10, 10, 0.98);
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-lighter);
    display: flex;
    align-items: center;
}

.logo img {
    height: 40px;
    margin-right: 10px;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 35px;
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    font-size: 16px;
    position: relative;
    padding: 5px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-links a:hover::after {
    width: 100%;
}

/* Active Navigation */
.nav-links li a.active {
    color: var(--primary);
    font-weight: 700;
}

.nav-links li a.active::after {
    width: 100%;
    background-color: var(--primary);
}

.mobile-menu {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--text-lighter);
    z-index: 1001;
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    position: relative;
    z-index: 2;
    transform: translateZ(50px);
}

.hero-content h1 {
    font-size: 68px;
    margin-bottom: 20px;
    text-shadow: 0 5px 15px rgba(0,0,0,0.5);
    line-height: 1.2;
}

.hero-content p {
    font-size: 20px;
    max-width: 700px;
    margin-bottom: 40px;
    color: var(--text-light);
}

.scroll-down {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--text-light);
    font-size: 14px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0) translateX(-50%);}
    40% {transform: translateY(-20px) translateX(-50%);}
    60% {transform: translateY(-10px) translateX(-50%);}
}

/* Tours Section */
.tours-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.tour-card {
    background-color: var(--bg-card);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transition: all 0.4s;
    border: 1px solid var(--border);
    transform: translateZ(20px);
}

.tour-card:hover {
    transform: translateZ(50px) translateY(-15px) rotateY(5deg);
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

.tour-img {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.tour-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s;
}

.tour-card:hover .tour-img img {
    transform: scale(1.1);
}

.tour-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary);
    color: var(--bg-dark);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    transform: translateZ(30px);
}

.tour-content {
    padding: 25px;
}

.tour-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.tour-content p {
    margin-bottom: 20px;
    color: var(--text-light);
    font-size: 15px;
}

.tour-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border);
    padding-top: 20px;
    margin-top: 20px;
}

.tour-price {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary);
}

.tour-duration {
    display: flex;
    align-items: center;
    color: var(--text-light);
    font-size: 14px;
}

.tour-duration i {
    margin-right: 5px;
    color: var(--primary);
}

/* Features Section */
.features {
    background: linear-gradient(rgba(10,10,10,0.9), rgba(10,10,10,0.9)), url('https://images.unsplash.com/photo-1505832018823-50331d70d237?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1200&q=80');
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
}

.features-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.feature-card {
    text-align: center;
    padding: 40px 25px;
    background: rgba(26, 26, 26, 0.7);
    border-radius: 10px;
    border: 1px solid var(--border);
    transition: transform 0.3s;
    transform: translateZ(20px);
}

.feature-card:hover {
    transform: translateZ(40px) translateY(-10px);
    background: rgba(26, 26, 26, 0.9);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: rgba(193, 154, 107, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 32px;
    color: var(--primary);
    transform: translateZ(30px);
}

.feature-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--text-light);
    font-size: 15px;
}

/* Testimonials */
.testimonials-container {
    max-width: 800px;
    margin: 0 auto;
}

.testimonial {
    background: var(--bg-card);
    padding: 40px;
    border-radius: 10px;
    margin: 20px;
    border: 1px solid var(--border);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transform: translateZ(30px);
}

.testimonial-content {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.testimonial-img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 20px;
    border: 3px solid var(--primary);
    transform: translateZ(40px);
}

.testimonial-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-text {
    flex: 1;
}

.testimonial-text p {
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 10px;
    position: relative;
}

.testimonial-text p::before,
.testimonial-text p::after {
    content: '"';
    font-size: 40px;
    color: var(--primary);
    opacity: 0.3;
    position: absolute;
}

.testimonial-text p::before {
    top: -20px;
    left: -15px;
}

.testimonial-text p::after {
    content: '"';
    bottom: -40px;
    right: -10px;
}

.testimonial-author h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--text-lighter);
}

.testimonial-author p {
    color: var(--primary);
    font-size: 14px;
}

/* Newsletter */
.newsletter {
    background: linear-gradient(rgba(18, 18, 18, 0.9), rgba(18, 18, 18, 0.9)), url('https://images.unsplash.com/photo-1504609773096-104ff2c73ba4?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1200&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
    transform: translateZ(30px);
}

.newsletter h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.newsletter p {
    max-width: 600px;
    margin: 0 auto 30px;
    color: var(--text-light);
}

.newsletter-form {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
}

.newsletter-form input {
    flex: 1;
    padding: 16px 20px;
    border: none;
    border-radius: 30px 0 0 30px;
    background: rgba(255,255,255,0.1);
    color: var(--text-lighter);
    font-size: 16px;
}

.newsletter-form input:focus {
    outline: none;
    background: rgba(255,255,255,0.15);
}

.newsletter-form button {
    background: var(--primary);
    color: var(--bg-dark);
    border: none;
    padding: 0 30px;
    border-radius: 0 30px 30px 0;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.newsletter-form button:hover {
    background: var(--accent);
}

/* Footer */
footer {
    background: var(--bg-darker);
    padding: 80px 0 30px;
    border-top: 1px solid var(--border);
    transform: translateZ(30px);
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-col h3 {
    font-size: 20px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 2px;
    background: var(--primary);
    bottom: 0;
    left: 0;
}

.footer-col p {
    margin-bottom: 20px;
    color: var(--text-light);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s;
    display: flex;
    align-items: center;
}

.footer-links a i {
    margin-right: 10px;
    color: var(--primary);
    width: 20px;
}

.footer-links a:hover {
    color: var(--primary);
}

.social-links {
    display: flex;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.05);
    color: var(--text-light);
    border-radius: 50%;
    margin-right: 10px;
    transition: all 0.3s;
    font-size: 18px;
    transform: translateZ(20px);
}

.social-links a:hover {
    background: var(--primary);
    color: var(--bg-dark);
    transform: translateZ(30px) translateY(-5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--border);
    color: var(--text-light);
    font-size: 14px;
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--bg-dark);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    transform: translateZ(30px);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--accent);
    transform: translateZ(40px) translateY(-5px);
}

/* Contact Form Styles */
.contact-form {
    background-color: var(--bg-card);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transform: translateZ(30px);
}

.contact-form .form-group {
    margin-bottom: 25px;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-lighter);
    font-size: 16px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #444;
    border-radius: 8px;
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    transition: all 0.3s ease;
    background-color: #333;
    color: var(--text-light);
    transform: translateZ(20px);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    border-color: var(--primary);
    outline: none;
    background-color: #444;
    transform: translateZ(30px);
}

.contact-form textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-form button[type="submit"] {
    width: 100%;
    padding: 15px;
    background-color: var(--primary);
    color: var(--bg-dark);
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    transform: translateZ(30px);
}

.contact-form button[type="submit"]:hover {
    background-color: var(--accent);
    transform: translateZ(40px) translateY(-3px);
    box-shadow: 0 5px 15px rgba(139, 90, 43, 0.3);
}

/* Form success/error messages */
.form-message {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 8px;
    display: none;
    font-size: 16px;
    transform: translateZ(30px);
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
    display: block;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    display: block;
}

/* Contact info styles */
.contact-info {
    background-color: var(--bg-card);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    height: 100%;
    transform: translateZ(30px);
}

.contact-info h3 {
    font-size: 24px;
    margin-bottom: 25px;
    color: var(--text-lighter);
    position: relative;
    padding-bottom: 15px;
}

.contact-info h3::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background-color: var(--primary);
    bottom: 0;
    left: 0;
}

.business-hours {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid var(--border);
}

.business-hours p {
    margin-bottom: 10px;
    color: var(--text-light);
}

.business-hours strong {
    color: var(--primary);
}

/* Blog Section */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.blog-card {
    background-color: var(--bg-card);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transition: all 0.4s;
    border: 1px solid var(--border);
    transform: translateZ(20px);
}

.blog-card:hover {
    transform: translateZ(40px) translateY(-10px) rotateY(5deg);
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

.blog-img {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s;
}

.blog-card:hover .blog-img img {
    transform: scale(1.1);
}

.blog-date {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary);
    color: var(--bg-dark);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    transform: translateZ(30px);
}

.blog-content {
    padding: 25px;
}

.blog-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.blog-content p {
    margin-bottom: 20px;
    color: var(--text-light);
    font-size: 15px;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border);
    padding-top: 20px;
    margin-top: 20px;
}

.blog-author {
    display: flex;
    align-items: center;
}

.blog-author img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    margin-right: 10px;
    transform: translateZ(20px);
}

/* Loading Animation */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-darker);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease-out;
}

.loading-logo {
    width: 150px;
    height: 150px;
    animation: glow 2s infinite alternate;
}

@keyframes glow {
    from {
        filter: drop-shadow(0 0 5px rgba(193, 154, 107, 0.5));
        transform: scale(1);
    }
    to {
        filter: drop-shadow(0 0 20px rgba(193, 154, 107, 1));
        transform: scale(1.05);
    }
}

/* Accordion Styles */
.accordion {
    margin: 50px 0;
}

.accordion-item {
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    border: 1px solid var(--border);
    background: var(--bg-card);
    transform: translateZ(20px);
}

.accordion-item:hover {
    transform: translateZ(30px);
}

.accordion-header {
    background: var(--bg-darker);
    color: var(--text-lighter);
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s;
}

.accordion-header:hover {
    background: #1a1a1a;
}

.accordion-header h3 {
    font-size: 22px;
}

.accordion-header i {
    transition: transform 0.3s;
}

.accordion-header.active i {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.accordion-content-inner {
    padding: 30px;
}

.package-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.package-card {
    background-color: var(--bg-card);
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: transform 0.3s;
    border: 1px solid var(--border);
    transform: translateZ(20px);
}

.package-card:hover {
    transform: translateZ(30px) translateY(-5px);
}

.package-card h4 {
    font-size: 20px;
    color: var(--text-lighter);
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary);
}

.package-card ul {
    list-style: none;
    margin-bottom: 20px;
}

.package-card ul li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
    color: var(--text-light);
}

.package-card ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--primary);
    position: absolute;
    left: 0;
}

.package-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    text-align: center;
    margin: 20px 0;
}

/* Typing Animation */
.typed-text {
    display: inline-block;
    overflow: hidden;
    white-space: nowrap;
    border-right: 2px solid var(--primary);
    animation: typing 3s steps(30, end), blink-caret .75s step-end infinite;
}

@keyframes typing {
    from { width: 0 }
    to { width: 100% }
}

@keyframes blink-caret {
    from, to { border-color: transparent }
    50% { border-color: var(--primary) }
}

/* Mobile Menu - Unique 3D Style */
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: var(--bg-darker);
        flex-direction: column;
        align-items: center;
        padding: 100px 20px 20px;
        transition: transform 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        transform-style: preserve-3d;
        z-index: 999;
        box-shadow: -5px 0 15px rgba(0,0,0,0.5);
    }
    
    .nav-links.active {
        right: 0;
        transform: translate3d(0, 0, 0) rotateY(0deg);
    }
    
    .nav-links li {
        margin: 20px 0;
        transform: translateX(100px);
        opacity: 0;
        transition: transform 0.5s ease, opacity 0.5s ease;
    }
    
    .nav-links.active li {
        transform: translateX(0);
        opacity: 1;
    }
    
    /* Add delays for each menu item */
    .nav-links.active li:nth-child(1) { transition-delay: 0.1s; }
    .nav-links.active li:nth-child(2) { transition-delay: 0.2s; }
    .nav-links.active li:nth-child(3) { transition-delay: 0.3s; }
    .nav-links.active li:nth-child(4) { transition-delay: 0.4s; }
    .nav-links.active li:nth-child(5) { transition-delay: 0.5s; }
    
    .close-menu {
        position: absolute;
        top: 30px;
        right: 30px;
        font-size: 24px;
        color: var(--text-lighter);
        z-index: 1000;
        display: block;
    }
    
    .mobile-menu {
        display: block;
    }
    
    .hero-content h1 {
        font-size: 42px;
    }
    
    .section-title h2 {
        font-size: 36px;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input {
        border-radius: 30px;
        margin-bottom: 10px;
        padding: 14px 20px;
    }
    
    .newsletter-form button {
        border-radius: 30px;
        padding: 14px 20px;
    }

    /* Hide close menu button on desktop */
    .close-menu {
        display: block;
    }
}

@media (min-width: 769px) {
    .close-menu {
        display: none;
    }
}

@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 56px;
    }
    
    section {
        padding: 80px 0;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 36px;
    }
    
    .section-title h2 {
        font-size: 30px;
    }
    
    .btn {
        display: block;
        width: 100%;
        margin-bottom: 15px;
        text-align: center;
    }
    
    .btn-outline {
        margin-left: 0;
    }
}