/* About / Meet Us Page Styles - Optic Cabo */
/* Including Memorial Section */

/* ================================
   GENERAL STYLES
================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* ================================
   ABOUT MAIN
================================ */
.about-main {
    overflow-x: hidden;
}

/* Section Labels */
.section-label {
    display: inline-block;
    background: linear-gradient(135deg, #D4AF37 0%, #B8860B 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.section-header {
    margin-bottom: 50px;
}

.section-header.centered {
    text-align: center;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 15px;
}

.section-header p {
    color: #666;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ================================
   HERO SECTION
================================ */
.about-hero {
    position: relative;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 120px 0;
    text-align: center;
    color: white;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('images/cabo-bg.jpg') center/cover no-repeat;
    opacity: 0.2;
}

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

.hero-badge {
    display: inline-block;
    background: rgba(212, 175, 55, 0.2);
    border: 2px solid #D4AF37;
    color: #D4AF37;
    padding: 10px 25px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 25px;
    animation: fadeInDown 0.8s ease;
}

.about-hero h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.8s ease;
}

.about-hero p {
    font-size: 1.4rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    animation: fadeInUp 1s ease;
}

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

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

/* ================================
   OUR STORY SECTION
================================ */
.our-story {
    padding: 100px 0;
    background: white;
}

.story-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.story-image {
    position: relative;
}

.image-frame {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.image-placeholder {
    aspect-ratio: 4/3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #D4AF37;
    gap: 15px;
}

.image-placeholder i {
    font-size: 5rem;
    opacity: 0.5;
}

.image-placeholder span {
    font-size: 1.2rem;
    font-weight: 600;
    color: #666;
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 140px;
    height: 140px;
    background: linear-gradient(135deg, #D4AF37 0%, #B8860B 100%);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.experience-badge .years {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.85rem;
    text-align: center;
    line-height: 1.3;
}

.story-content h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 25px;
}

.story-text p {
    color: #555;
    font-size: 1.05rem;
    margin-bottom: 20px;
    line-height: 1.8;
}

.story-text strong {
    color: #D4AF37;
}

.story-text em {
    color: #333;
    font-style: italic;
    display: block;
    padding: 15px 25px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(184, 134, 11, 0.1) 100%);
    border-left: 4px solid #D4AF37;
    border-radius: 0 10px 10px 0;
    margin: 20px 0;
}

.story-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #e0e0e0;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #D4AF37;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
    margin-top: 5px;
}

/* ================================
   TIMELINE SECTION
================================ */
.timeline-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

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

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #D4AF37 0%, #B8860B 100%);
    border-radius: 2px;
}

.timeline-item {
    display: flex;
    justify-content: flex-end;
    padding-right: 50%;
    position: relative;
    margin-bottom: 50px;
}

.timeline-item:nth-child(even) {
    justify-content: flex-start;
    padding-right: 0;
    padding-left: 50%;
}

.timeline-marker {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #D4AF37 0%, #B8860B 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
    z-index: 1;
}

.timeline-content {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    margin-right: 30px;
    max-width: 400px;
    transition: all 0.3s ease;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-right: 0;
    margin-left: 30px;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.timeline-year {
    display: inline-block;
    background: linear-gradient(135deg, #D4AF37 0%, #B8860B 100%);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.timeline-content h3 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 10px;
}

.timeline-content p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ================================
   MISSION & VISION SECTION
================================ */
.mission-vision {
    padding: 100px 0;
    background: white;
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.mv-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.mv-card:hover {
    transform: translateY(-10px);
    border-color: #D4AF37;
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.15);
}

.mv-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #D4AF37 0%, #B8860B 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: white;
}

.mv-card h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 20px;
}

.mv-card p {
    color: #666;
    line-height: 1.8;
}

.mv-card.values ul {
    list-style: none;
    text-align: left;
}

.mv-card.values li {
    padding: 10px 0;
    color: #555;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px dashed #e0e0e0;
}

.mv-card.values li:last-child {
    border-bottom: none;
}

.mv-card.values li i {
    color: #D4AF37;
    font-size: 0.9rem;
}

/* ================================
   WHY CHOOSE US SECTION
================================ */
.why-choose-us {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
}

.why-choose-us .section-label {
    background: rgba(212, 175, 55, 0.2);
    border: 1px solid #D4AF37;
}

.why-choose-us .section-header h2 {
    color: white;
}

.why-choose-us .section-header p {
    color: rgba(255, 255, 255, 0.7);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
    border-color: #D4AF37;
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #D4AF37 0%, #B8860B 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 1.8rem;
    color: white;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ================================
   OUR FLEET SECTION
================================ */
.our-fleet {
    padding: 100px 0;
    background: white;
}

.fleet-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* Center the last two cards when there are 5 items */
.fleet-grid .fleet-card:nth-child(4),
.fleet-grid .fleet-card:nth-child(5) {
    max-width: 100%;
}

@media (min-width: 993px) {
    .fleet-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
    }
    
    /* Center last row with 2 items */
    .fleet-grid .fleet-card:nth-child(4) {
        grid-column: 1 / 2;
        margin-left: auto;
        margin-right: 0;
        width: calc(100% - 12.5px);
        transform: translateX(50%);
    }
    
    .fleet-grid .fleet-card:nth-child(5) {
        grid-column: 2 / 3;
        margin-left: 0;
        margin-right: auto;
        width: calc(100% - 12.5px);
        transform: translateX(50%);
    }
}

.fleet-card {
    background: #f8f9fa;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
}

.fleet-card:hover {
    transform: translateY(-10px);
    border-color: #D4AF37;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.fleet-card.featured {
    border-color: #D4AF37;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(184, 134, 11, 0.05) 100%);
}

.featured-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #D4AF37 0%, #B8860B 100%);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 1;
}

.fleet-image {
    height: 200px;
    background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.fleet-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.fleet-card:hover .fleet-image img {
    transform: scale(1.1);
}

/* Fallback icon if image fails to load */
.fleet-image i {
    font-size: 4rem;
    color: #D4AF37;
}

.fleet-info {
    padding: 25px;
}

.fleet-info h3 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 10px;
}

.fleet-specs {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.fleet-specs span {
    font-size: 0.85rem;
    color: #666;
    display: flex;
    align-items: center;
    gap: 5px;
}

.fleet-specs i {
    color: #D4AF37;
}

.fleet-info p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ================================
   TESTIMONIALS SECTION
================================ */
.testimonials {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.stars {
    margin-bottom: 20px;
}

.stars i {
    color: #D4AF37;
    font-size: 1.1rem;
    margin-right: 3px;
}

.testimonial-card > p {
    color: #555;
    font-size: 1rem;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 25px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #D4AF37 0%, #B8860B 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.author-info strong {
    display: block;
    color: #333;
    font-size: 1rem;
}

.author-info span {
    color: #888;
    font-size: 0.85rem;
}

/* ================================
   CTA SECTION
================================ */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #D4AF37 0%, #B8860B 100%);
    text-align: center;
    color: white;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 35px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 16px 35px;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-primary {
    background: white;
    color: #B8860B;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-whatsapp {
    background: #25D366;
    color: white;
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
}

/* ================================
   MEMORIAL SECTION
================================ */
.memorial-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #1a1a2e 0%, #0d0d1a 100%);
}

.memorial-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: white;
    position: relative;
}

.memorial-border {
    height: 3px;
    background: linear-gradient(90deg, transparent, #D4AF37, transparent);
    margin-bottom: 50px;
}

.memorial-border.bottom {
    margin-bottom: 0;
    margin-top: 50px;
}

.memorial-header {
    margin-bottom: 40px;
}

.memorial-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(184, 134, 11, 0.2) 100%);
    border: 2px solid #D4AF37;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: #D4AF37;
}

.in-memoriam {
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: #D4AF37;
    font-weight: 600;
}

.memorial-photo {
    margin-bottom: 30px;
}

.photo-frame {
    width: 180px;
    height: 180px;
    background: linear-gradient(135deg, #2a2a3e 0%, #1a1a2e 100%);
    border: 4px solid #D4AF37;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 4rem;
    color: rgba(212, 175, 55, 0.5);
    box-shadow: 0 0 50px rgba(212, 175, 55, 0.2);
}

.memorial-name {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.memorial-title {
    font-size: 1.2rem;
    color: #D4AF37;
    margin-bottom: 10px;
    font-weight: 500;
}

.memorial-dates {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 30px;
}

.memorial-divider {
    margin: 40px 0;
}

.memorial-divider span {
    color: #D4AF37;
    font-size: 1.5rem;
}

.memorial-tribute {
    margin-bottom: 40px;
}

.memorial-tribute p {
    font-size: 1.1rem;
    line-height: 2;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 20px;
}

.memorial-tribute strong {
    color: #D4AF37;
}

.memorial-quote {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(184, 134, 11, 0.1) 100%);
    border-left: 4px solid #D4AF37;
    border-radius: 0 15px 15px 0;
    padding: 30px 40px;
    margin: 40px 0;
    position: relative;
}

.memorial-quote i {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 2rem;
    color: rgba(212, 175, 55, 0.3);
}

.memorial-quote p {
    font-size: 1.2rem;
    font-style: italic;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 15px;
    padding-left: 30px;
}

.memorial-quote cite {
    display: block;
    color: #D4AF37;
    font-size: 1rem;
    font-style: normal;
    font-weight: 600;
}

.memorial-legacy {
    margin: 40px 0;
}

.memorial-legacy h3 {
    font-size: 1.5rem;
    color: #D4AF37;
    margin-bottom: 20px;
}

.memorial-legacy p {
    font-size: 1.05rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 15px;
}

.memorial-closing {
    margin-top: 50px;
}

.rest-in-peace {
    font-size: 1.3rem;
    color: #D4AF37;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.rest-in-peace i {
    font-size: 1rem;
    animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}

.memorial-signature {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
}

.memorial-flowers {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.memorial-flowers i {
    font-size: 1.5rem;
    color: #D4AF37;
    opacity: 0.6;
}

/* ================================
   FOOTER
================================ */
.footer {
    background: #0d0d1a;
    color: white;
    padding: 40px 0;
}

.menu-footer {
    text-align: center;
}

.title-footer {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #D4AF37;
}

.footer ul {
    list-style: none;
    margin-bottom: 20px;
}

.footer ul li {
    margin: 8px 0;
    color: rgba(255, 255, 255, 0.7);
}

.footer .social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px;
}

.footer .social-icons a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.footer .social-icons .facebook {
    background: #1877f2;
}

.footer .social-icons .instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.footer .social-icons a:hover {
    transform: translateY(-5px);
}

.copyright {
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    margin: 5px 0;
}

/* ================================
   WHATSAPP FLOATING BUTTON
================================ */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    box-shadow: 0 5px 25px rgba(37, 211, 102, 0.5);
    z-index: 1000;
    transition: all 0.3s ease;
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

@keyframes pulse-whatsapp {
    0%, 100% {
        box-shadow: 0 5px 25px rgba(37, 211, 102, 0.5);
    }
    50% {
        box-shadow: 0 5px 35px rgba(37, 211, 102, 0.8);
    }
}

/* ================================
   RESPONSIVE DESIGN
================================ */
@media (max-width: 1200px) {
    .fleet-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .story-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .experience-badge {
        right: 20px;
        bottom: -20px;
        width: 120px;
        height: 120px;
    }

    .timeline::before {
        left: 30px;
    }

    .timeline-item,
    .timeline-item:nth-child(even) {
        padding-left: 80px;
        padding-right: 0;
        justify-content: flex-start;
    }

    .timeline-marker {
        left: 30px;
    }

    .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        margin-left: 0;
        margin-right: 0;
        max-width: 100%;
    }

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

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .about-hero h1 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 80px 0;
    }

    .about-hero h1 {
        font-size: 2.5rem;
    }

    .about-hero p {
        font-size: 1.1rem;
    }

    .our-story,
    .timeline-section,
    .mission-vision,
    .why-choose-us,
    .our-fleet,
    .testimonials,
    .memorial-section {
        padding: 60px 0;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .story-content h2 {
        font-size: 2rem;
    }

    .story-stats {
        flex-direction: column;
        gap: 25px;
    }

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

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

    .cta-content h2 {
        font-size: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .memorial-name {
        font-size: 2rem;
    }

    .memorial-quote {
        padding: 25px 20px;
    }

    .memorial-quote p {
        font-size: 1rem;
        padding-left: 0;
    }

    .memorial-quote i {
        position: static;
        display: block;
        margin-bottom: 15px;
    }

    .whatsapp-float {
        width: 55px;
        height: 55px;
        font-size: 1.6rem;
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 480px) {
    .about-hero h1 {
        font-size: 2rem;
    }

    .hero-badge {
        font-size: 0.85rem;
        padding: 8px 20px;
    }

    .timeline-item,
    .timeline-item:nth-child(even) {
        padding-left: 60px;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-marker {
        left: 20px;
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .photo-frame {
        width: 150px;
        height: 150px;
        font-size: 3rem;
    }

    .memorial-name {
        font-size: 1.8rem;
    }
}
