/* ========================================
   About Page Styles - Mobile First
   ======================================== */

/* Hero Section */
.about-hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    padding: 2rem;
    max-width: 800px;
}

.hero-subtitle {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #d4af37;
    margin-bottom: 1rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards 0.2s;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 8vw, 4rem);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards 0.4s;
}

.hero-title em {
    font-style: italic;
    color: #d4af37;
}

.hero-desc {
    font-size: clamp(1rem, 2vw, 1.125rem);
    line-height: 1.6;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards 0.6s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Three Column Section - Swipeable on Mobile */
.about-columns-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

.columns-wrapper {
    position: relative;
    margin-top: 3rem;
}

.about-columns {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    position: relative;
}

/* Individual Column Styling - Base Styles */
.about-column {
    position: relative;
    background: linear-gradient(135deg, #1a1a1a 0%, #252525 100%);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(212, 175, 55, 0.1);
    text-align: center;
}

.about-column::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(212, 175, 55, 0) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.about-column:hover::before {
    opacity: 1;
}

.column-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-column:hover .column-icon {
    transform: rotate(360deg) scale(1.1);
}

.column-icon i {
    font-size: 1.75rem;
    color: #0a0a0a;
}

.column-title {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.column-content {
    position: relative;
    z-index: 2;
}

.column-number {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 700;
    color: rgba(212, 175, 55, 0.1);
    line-height: 1;
    transition: all 0.5s ease;
}

.about-column:hover .column-number {
    color: rgba(212, 175, 55, 0.2);
    transform: scale(1.2);
}

/* Mobile: Side-Peek Carousel Effect - Overrides */
@media (max-width: 767px) {
    .about-columns {
        position: relative;
        min-height: 550px;
        display: block;
        overflow: visible;
    }

    .about-column {
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%) scale(0.85);
        width: 85%;
        opacity: 0;
        z-index: 1;
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        pointer-events: none;
        text-align: center;
    }

    .about-column.active {
        transform: translateX(-50%) scale(1);
        width: 90%;
        opacity: 1;
        z-index: 3;
        pointer-events: auto;
    }

    .about-column.prev {
        transform: translateX(-120%) scale(0.75);
        opacity: 0.4;
        z-index: 2;
        pointer-events: none;
    }

    .about-column.next {
        transform: translateX(20%) scale(0.75);
        opacity: 0.4;
        z-index: 2;
        pointer-events: none;
    }

    .column-title {
        text-align: center;
    }

    .testimonial-text {
        text-align: center;
    }

    .testimonial-author {
        text-align: center;
    }

    .vm-title,
    .vm-text {
        text-align: center;
    }

    .vm-icon {
        margin: 0 auto 1rem auto;
    }
}

/* Column Navigation */
.column-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.column-nav-btn {
    width: 40px;
    height: 40px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    color: #d4af37;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.column-nav-btn:hover {
    background: rgba(212, 175, 55, 0.2);
    transform: scale(1.1);
}

.column-indicators {
    display: flex;
    gap: 0.75rem;
}

.indicator {
    width: 10px;
    height: 10px;
    background: rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: #d4af37;
    transform: scale(1.3);
}

/* Hide navigation on desktop */
@media (min-width: 1024px) {
    .column-nav {
        display: none;
    }

    .about-column:hover {
        transform: scale(1.05);
        border-color: rgba(212, 175, 55, 0.4);
        box-shadow: 0 20px 60px rgba(212, 175, 55, 0.2);
        z-index: 10;
    }
}

/* Testimonials Column */
.testimonial-item {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 0.75rem;
    justify-content: center;
}

.rating i {
    color: #d4af37;
    font-size: 0.875rem;
}

.testimonial-text {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.75rem;
    font-style: italic;
}

.testimonial-author {
    font-size: 0.875rem;
    color: #d4af37;
    font-weight: 500;
}

.testimonial-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
}

.testimonial-time {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
}

.testimonial-text.clamped {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.read-more-btn {
    background: none;
    border: none;
    color: #d4af37;
    font-size: 0.8rem;
    font-weight: 500;
    padding: 0;
    margin-top: 5px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: opacity 0.3s;
}

.read-more-btn:hover {
    opacity: 0.8;
}

.reviews-footer {
    margin-top: 2.5rem;
    text-align: center;
}

.google-reviews-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px;
    color: #d4af37;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.google-reviews-link:hover {
    background: rgba(212, 175, 55, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.google-reviews-link i {
    font-size: 1.1rem;
}

.no-reviews {
    color: rgba(255, 255, 255, 0.5);
    font-style: italic;
    padding: 2rem 0;
}

/* Vision & Mission Column */
.vision-mission-item {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.vision-mission-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.vm-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem auto;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
}

.vm-icon i {
    color: #d4af37;
    font-size: 1.25rem;
}

.vm-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.75rem;
    text-align: center;
}

.vm-text {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
}

/* Trust Column */
.trust-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.trust-item {
    text-align: center;
}

.trust-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: #d4af37;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.trust-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.4;
}

.trust-badges {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px;
    transition: all 0.3s ease;
}

.badge:hover {
    background: rgba(212, 175, 55, 0.2);
    transform: translateY(-2px);
}

.badge i {
    color: #d4af37;
    font-size: 1rem;
}

.badge span {
    font-size: 0.875rem;
    color: #fff;
    font-weight: 500;
}

/* Services Full Section - Different Background */
.services-full-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #151515 0%, #252525 100%);
}

.services-grid-full {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.service-card-full {
    background: transparent;
    border-radius: 0;
    padding: 2.5rem 1.5rem;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
}

.service-card-full:last-child {
    border-bottom: none;
}

.service-card-full:hover {
    background: rgba(212, 175, 55, 0.03);
}

.service-icon-large {
    display: none;
}

.service-title-large {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 700;
    color: #d4af37;
    margin-bottom: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
}

.service-title-large::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 2px;
    background: rgba(212, 175, 55, 0.4);
}

.service-desc {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
    max-width: 600px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
}

.service-features-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
}

.service-features-list li {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    transition: all 0.2s ease;
}

.service-features-list li:hover {
    border-color: rgba(212, 175, 55, 0.3);
    color: rgba(255, 255, 255, 0.8);
}

.service-features-list li i {
    color: rgba(212, 175, 55, 0.6);
    font-size: 0.65rem;
    flex-shrink: 0;
}

/* Featured Projects Section */
.featured-projects-section {
    padding: 4rem 0;
    background: #0a0a0a;
}

.projects-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.project-card {
    background: #1a1a1a;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border-color: rgba(212, 175, 55, 0.3);
}

.project-image {
    position: relative;
    padding-top: 66.67%;
    overflow: hidden;
}

.project-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-card:hover .project-image img {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.9) 0%, rgba(10, 10, 10, 0.8) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-link {
    width: 60px;
    height: 60px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0a0a0a;
    font-size: 1.25rem;
    transition: all 0.3s ease;
    transform: scale(0.8);
}

.project-card:hover .project-link {
    transform: scale(1);
}

.project-link:hover {
    transform: scale(1.1) rotate(45deg);
}

.project-info {
    padding: 1.5rem;
}

.project-category {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #d4af37;
    margin-bottom: 0.75rem;
}

.project-name {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.5rem;
}

.project-desc {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

.projects-cta {
    text-align: center;
    margin-top: 3rem;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    color: #0a0a0a;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.5);
}

.cta-button i {
    transition: transform 0.3s ease;
}

.cta-button:hover i {
    transform: translateX(5px);
}

/* Tablet Styles */
@media (min-width: 768px) {
    .about-hero {
        height: 70vh;
    }

    .about-columns {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        display: grid !important;
        min-height: auto !important;
    }

    .about-column {
        padding: 3rem 2.5rem;
        position: relative !important;
        transform: none !important;
        opacity: 1 !important;
        width: auto !important;
        left: auto !important;
        top: auto !important;
        pointer-events: auto !important;
    }

    .services-grid-full {
        grid-template-columns: repeat(2, 1fr);
        gap: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .services-grid-full .service-card-full {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        border-right: 1px solid rgba(255, 255, 255, 0.1);
    }

    .services-grid-full .service-card-full:nth-child(2n) {
        border-right: none;
    }

    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
}

/* Desktop Styles */
@media (min-width: 1024px) {
    .about-columns-section {
        padding: 6rem 0;
    }

    .about-columns {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
    }

    .about-column {
        padding: 3.5rem 3rem;
    }

    .services-full-section {
        padding: 6rem 0;
    }

    .services-grid-full {
        grid-template-columns: repeat(4, 1fr);
        gap: 0;
    }

    .services-grid-full .service-card-full {
        border-bottom: none;
        border-right: 1px solid rgba(255, 255, 255, 0.1);
        padding: 2.5rem 2rem;
    }

    .services-grid-full .service-card-full:nth-child(2n) {
        border-right: 1px solid rgba(255, 255, 255, 0.1);
    }

    .services-grid-full .service-card-full:last-child {
        border-right: none;
    }

    .projects-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 3rem;
    }

    .featured-projects-section {
        padding: 6rem 0;
    }
}

/* Large Desktop */
@media (min-width: 1440px) {
    .about-columns {
        gap: 3rem;
    }

    .about-column {
        padding: 4rem 3.5rem;
    }

    .services-grid-full {
        gap: 0;
    }

    .services-grid-full .service-card-full {
        padding: 3rem 2.5rem;
    }
}