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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #1e3a5f;
    --accent-color: #2c5f8d;
    --text-color: #333;
    --light-text: #666;
    --background-light: #f8f8f8;
    --white: #ffffff;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

body {
    font-family: 'PT Sans', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
    transition: var(--transition);
}

body.nav-open {
    margin-left: 280px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'PT Sans', sans-serif;
    font-weight: 700;
}

/* Navigation - Sidebar */
.navbar {
    position: fixed;
    left: -280px;
    top: 0;
    width: 280px;
    height: 100vh;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: left 0.3s ease;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
}

.navbar.active {
    left: 0;
}

.nav-container {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.nav-menu {
    display: flex;
    flex-direction: column;
    list-style: none;
    gap: 2rem;
    margin-top: 4rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    font-size: 1.1rem;
    transition: var(--transition);
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.5rem 0;
    display: inline-block;
}

.nav-link:hover {
    color: var(--accent-color);
    transform: translateX(10px);
}

.nav-link.active {
    color: var(--accent-color);
    transform: translateX(10px);
}

.nav-link::before {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--accent-color);
    transition: var(--transition);
}

.nav-link:hover::before,
.nav-link.active::before {
    width: 15px;
    left: -25px;
}

.hamburger {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    position: fixed;
    left: 20px;
    top: 20px;
    z-index: 1001;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    padding: 12px;
    border-radius: 8px;
    transition: var(--transition);
}

.hamburger:hover {
    background: rgba(0, 0, 0, 0.7);
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--white);
    margin: 3px 0;
    transition: var(--transition);
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

.hamburger.active .bar:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}



/* Hero Section with Carousel */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), 
                url('images/IMG-20251117-WA0046.jpg') center/cover no-repeat;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    position: relative;
    transition: background-image 1s ease-in-out;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.hero-content {
    z-index: 2;
    position: relative;
}

.couple-names {
    font-family: 'PT Sans', sans-serif;
    font-size: 6rem;
    margin-bottom: 2rem;
    font-weight: 700;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    display: block;
    letter-spacing: 0.5px;
}

.wedding-date {
    font-family: 'PT Sans', sans-serif;
    font-size: 1.3rem;
    color: var(--white);
    letter-spacing: 1px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    font-weight: 100;
}

/* Countdown Section */
.countdown-section {
    background: var(--primary-color);
    padding: 40px 20px;
    text-align: center;
}

.countdown-title {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.countdown-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    max-width: 700px;
    margin: 0 auto;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 15px 25px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
    min-width: 90px;
}

.countdown-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 0.15);
}

.countdown-value {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    margin-bottom: 5px;
    font-family: 'PT Sans', sans-serif;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.countdown-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

/* Responsive Countdown */
@media (max-width: 768px) {
    .countdown-section {
        padding: 30px 20px;
    }
    
    .countdown-title {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }
    
    .countdown-container {
        gap: 12px;
    }
    
    .countdown-item {
        padding: 12px 20px;
        min-width: 75px;
    }
    
    .countdown-value {
        font-size: 1.8rem;
    }
    
    .countdown-label {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .countdown-section {
        padding: 25px 15px;
    }
    
    .countdown-container {
        gap: 8px;
    }
    
    .countdown-item {
        padding: 10px 15px;
        min-width: 65px;
    }
    
    .countdown-value {
        font-size: 1.5rem;
    }
    
    .countdown-label {
        font-size: 0.7rem;
    }
}

/* Welcome Section */
.welcome-section {
    background-color: var(--white);
    padding: 60px 20px;
    text-align: center;
}

.welcome-message {
    font-size: 1.5rem;
    color: var(--text-color);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    font-weight: 400;
}

/* Common Section Styles */
section {
    padding: 80px 0;
}

.page-section {
    min-height: 100vh;
    padding-top: 80px;
    padding-bottom: 80px;
}

section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #000000;
}

.section-intro {
    text-align: center;
    font-size: 1.1rem;
    color: var(--light-text);
    margin-bottom: 3rem;
    font-style: italic;
}

/* Confirmation Section */
.confirmation-section {
    background: var(--background-light);
}

.google-form-container {
    max-width: 700px;
    margin: 2rem auto;
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.google-form-container iframe {
    border: none;
    width: 100%;
    min-height: 1020px;
}

.rsvp-form {
    max-width: 700px;
    margin: 0 auto;
    background: var(--white);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e1e1e1;
    border-radius: 8px;
    font-size: 1rem;
    transition: var(--transition);
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(201, 168, 124, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.submit-btn {
    background: var(--accent-color);
    color: var(--white);
    border: none;
    padding: 15px 40px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Gift Section */
.gift-section {
    padding: 100px 0;
    background: var(--white);
}

.gift-section h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 2rem;
    color: #000000;
}

.gift-section > .container > p {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: var(--light-text);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.gift-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.gift-card {
    background: var(--background-light);
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid #eee;
}

.gift-icon {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.gift-card h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.bank-details {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    margin: 1.5rem 0;
}

.bank-details p {
    margin-bottom: 0.5rem;
    text-align: left;
}

.copy-btn {
    background: var(--secondary-color);
    color: var(--white);
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 1rem;
}

.copy-btn:hover {
    background: #73593a;
}

.gift-link {
    display: inline-block;
    background: var(--accent-color);
    color: var(--white);
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 25px;
    margin-top: 1rem;
    transition: var(--transition);
}

.gift-link:hover {
    background: #b8941f;
    transform: translateY(-2px);
}

/* Gallery Section */
.gallery-section {
    padding: 100px 0;
    background: var(--background-light);
}

.gallery-section h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #000000;
}

.gallery-section > .container > p {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: var(--light-text);
}

.admin-upload {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 3rem;
    text-align: center;
    box-shadow: var(--shadow);
}

.admin-upload input[type="file"] {
    margin: 1rem 0;
    padding: 10px;
    border: 2px dashed var(--accent-color);
    border-radius: 8px;
    width: 100%;
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: var(--transition);
}

/* Timeline Section */
.timeline-section {
    padding: 100px 0;
    background: var(--white);
}

.timeline-section h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 3rem;
    color: #000000;
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50px;
    width: 2px;
    height: 100%;
    background: var(--accent-color);
}

.timeline-item {
    display: flex;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-time {
    background: var(--accent-color);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: bold;
    min-width: 80px;
    text-align: center;
    z-index: 1;
}

.timeline-content {
    background: var(--background-light);
    padding: 2rem;
    border-radius: 10px;
    margin-left: 2rem;
    flex: 1;
    box-shadow: var(--shadow);
}

.timeline-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

/* Information Section */
.info-section {
    background: var(--background-light);
}

.info-card {
    background: var(--white);
    border-radius: 12px;
    padding: 2.5rem;
    margin-bottom: 3rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.info-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--accent-color);
}

.info-header i {
    font-size: 2.5rem;
    color: var(--accent-color);
}

.info-header h3 {
    font-size: 2rem;
    color: #000000;
    margin: 0;
}

.info-content h4 {
    font-size: 1.5rem;
    color: #000000;
    margin-bottom: 1rem;
}

.info-detail, .info-time {
    font-size: 1.1rem;
    color: var(--light-text);
    margin: 0.8rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.info-detail i, .info-time i {
    color: var(--accent-color);
    width: 20px;
}

.map-container {
    margin: 2rem 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: relative;
}

.btn-map {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--accent-color);
    color: var(--white);
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: absolute;
    bottom: 15px;
    right: 15px;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.btn-map:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.info-note {
    background: #e3f2fd;
    border-left: 4px solid var(--accent-color);
    padding: 1.5rem;
    border-radius: 8px;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-top: 2rem;
}

.info-note i {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-top: 0.2rem;
}

.info-note p {
    margin: 0;
    color: var(--text-color);
    line-height: 1.6;
}

.info-note a {
    color: var(--accent-color);
    text-decoration: underline;
    font-weight: 500;
    transition: var(--transition);
}

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

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: var(--background-light);
}

.contact-section h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #000000;
}

.contact-section > .container > p {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: var(--light-text);
}

.contact-form {
    max-width: 800px;
    margin: 0 auto 3rem;
    background: var(--white);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    background: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    width: 100%;
    max-width: 320px;
}

.contact-item i {
    color: var(--accent-color);
    font-size: 1.2rem;
}

.contact-item a {
    color: var(--text-color);
    text-decoration: none;
    transition: var(--transition);
}

.contact-item a:hover {
    color: var(--accent-color);
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: var(--white);
    text-align: center;
    padding: 3rem 0;
}

.footer p {
    margin-bottom: 1rem;
}

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

.social-link {
    color: var(--white);
    font-size: 1.5rem;
    transition: var(--transition);
}

.social-link:hover {
    color: var(--accent-color);
    transform: translateY(-2px);
}

/* Admin Toggle */
.admin-toggle {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--accent-color);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow);
    transition: var(--transition);
    z-index: 1000;
}

.admin-toggle:hover {
    background: #b8941f;
    transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        width: 250px;
        left: -250px;
    }
    
    /* Hero responsive */
    .hero {
        background-attachment: scroll;
        background-position: center center;
        background-size: cover;
        min-height: 100vh;
    }
    
    .couple-names {
        font-size: 3rem;
        margin-bottom: 1.5rem;
    }
    
    .wedding-date {
        font-size: 1.2rem;
    }
    
    .carousel-control {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .carousel-control.prev {
        left: 15px;
    }
    
    .carousel-control.next {
        right: 15px;
    }
    
    .carousel-indicators {
        bottom: 20px;
        gap: 8px;
    }
    
    .indicator {
        width: 8px;
        height: 8px;
    }
    
    .indicator {
        width: 10px;
        height: 10px;
    }
    
    .indicator.active {
        width: 12px;
        height: 12px;
    }
    
    .countdown {
        gap: 1rem;
    }
    
    .time-unit {
        padding: 1rem;
    }
    
    .time-unit span {
        font-size: 2rem;
    }
    
    .locations-grid,
    .gift-options {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-time {
        min-width: 60px;
        padding: 8px 12px;
        font-size: 0.9rem;
    }
    
    .timeline-content {
        margin-left: 1rem;
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    /* Hero mobile */
    .hero {
        background-attachment: scroll;
        background-position: center center;
        background-size: cover;
        min-height: 100vh;
    }
    
    .couple-names {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .wedding-date {
        font-size: 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .wedding-date h2 {
        font-size: 2rem;
    }
    
    .countdown {
        gap: 0.5rem;
    }
    
    .time-unit {
        padding: 0.8rem;
        min-width: 70px;
    }
    
    .time-unit span {
        font-size: 1.5rem;
    }
    
    .time-unit label {
        font-size: 0.8rem;
    }
    
    section {
        padding: 60px 0;
    }
    
    h2 {
        font-size: 2rem !important;
    }
    
    .location-card,
    .gift-card,
    .rsvp-form,
    .contact-form {
        padding: 2rem;
    }
    
    .carousel-indicators {
        bottom: 15px;
        gap: 6px;
    }
    
    .indicator {
        width: 6px;
        height: 6px;
    }
    
    .welcome-message {
        font-size: 1.2rem;
        padding: 0 10px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading spinner */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: var(--white);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Success message */
.success-message {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
    text-align: center;
}

.error-message {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
    text-align: center;
}

/* Gift Section - Lista de Bodas */
.gift-section {
    background: var(--white);
}

.gift-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 2rem;
}

.gift-text {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.bank-account-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.bank-account-container {
    background: var(--white);
    padding: 1.5rem 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.bank-account {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000000;
    letter-spacing: 2px;
    margin: 0;
}

.copy-btn {
    background: #999999;
    color: var(--white);
    border: none;
    padding: 0.6rem 0.8rem;
    border-radius: 6px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
}

.copy-btn:hover {
    background: #777777;
    transform: translateY(-2px);
}

.copy-btn i {
    font-size: 1.2rem;
}

.recipient-info {
    margin-top: 2rem;
    text-align: center;
}

.recipient-label {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 0.5rem;
}

.recipient-wrapper {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    justify-content: center;
}

.recipient-name {
    font-size: 1rem;
    font-weight: 600;
    color: #555;
    letter-spacing: 1px;
    margin: 0;
    text-align: center;
}

.copy-btn-small {
    background: #999999;
    color: var(--white);
    border: none;
    padding: 0.4rem 0.6rem;
    border-radius: 5px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.copy-btn-small:hover {
    background: #777777;
    transform: translateY(-2px);
}

.copy-btn-small i {
    font-size: 0.9rem;
}

.gift-links {
    margin-top: 2rem;
}

.gift-button {
    display: inline-block;
    background: var(--accent-color);
    color: var(--white);
    padding: 15px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.gift-button:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.gift-button i {
    margin-right: 10px;
}

/* Transport Section */
.transport-section {
    background: var(--background-light);
}

.transport-content {
    max-width: 900px;
    margin: 0 auto;
}

.transport-card {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.transport-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.transport-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--accent-color);
}

.transport-header i {
    font-size: 2rem;
    color: var(--accent-color);
}

.transport-header h3 {
    font-size: 1.8rem;
    color: #000000;
    margin: 0;
}

.transport-text {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    margin: 0;
    text-align: left;
}

/* Contact Section */
.contact-section {
    background: var(--white);
}

.contact-form {
    max-width: 700px;
    margin: 0 auto 3rem;
    background: var(--background-light);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.contact-info {
    text-align: center;
    margin-top: 3rem;
}

.contact-item {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: var(--background-light);
    padding: 1rem 2rem;
    border-radius: 30px;
    margin: 0.5rem;
}

.contact-item i {
    color: var(--accent-color);
    font-size: 1.2rem;
}

/* Carousel Controls */
.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.carousel-control:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: translateY(-50%) scale(1.1);
}

.carousel-control.prev {
    left: 30px;
}

.carousel-control.next {
    right: 30px;
}

.carousel-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

.indicator.active {
    background: var(--white);
    width: 14px;
    height: 14px;
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: var(--white);
    text-align: center;
    padding: 2rem 0;
}

.footer p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.9;
}
