/* ===== CSS Reset & Base Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-orange: #FF9800;
    --dark-orange: #F57C00;
    --light-orange: #FFB74D;
    --dark-gray: #2C2C2C;
    --medium-gray: #424242;
    --light-gray: #F5F5F5;
    --whatsapp-green: #25D366;
    --dark-overlay: rgba(0, 0, 0, 0.6);
    --text-white: #ffffff;
    --text-light: rgba(255, 255, 255, 0.9);
    --text-dark: #2C2C2C;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
    color: var(--text-white);
}

/* ===== Hero Section ===== */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* ===== Video Background ===== */
.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.video-overlay {
    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.5) 50%,
            rgba(0, 0, 0, 0.7) 100%);
    backdrop-filter: blur(1px);
}

/* ===== Navigation Bar ===== */
.navbar {
    position: relative;
    z-index: 1000;
    padding: 1.5rem 0;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.8) 0%,
            rgba(0, 0, 0, 0.4) 80%,
            transparent 100%);
    backdrop-filter: blur(10px);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    display: flex;
    align-items: center;
}

.logo-image {
    height: 60px;
    width: auto;
    transition: var(--transition);
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

.logo:hover .logo-image {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 12px rgba(255, 152, 0, 0.5));
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    position: relative;
    padding: 0.5rem 0;
    transition: var(--transition);
    letter-spacing: 0.5px;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-orange), transparent);
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-white);
}

.nav-link:hover::before,
.nav-link.active::before {
    width: 100%;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 28px;
    height: 3px;
    background: var(--text-white);
    border-radius: 3px;
    transition: var(--transition);
}

/* ===== Hero Content ===== */
.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 5.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: -2px;
    color: var(--text-white);
    text-shadow:
        0 2px 10px rgba(0, 0, 0, 0.3),
        0 4px 20px rgba(0, 0, 0, 0.1);
    animation: fadeInUp 1s ease-out;
    background: linear-gradient(to bottom,
            #ffffff 0%,
            #f0f0f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    font-weight: 300;
    color: var(--text-light);
    margin-bottom: 3rem;
    max-width: 600px;
    letter-spacing: 1px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease-out 0.2s both;
}

/* ===== WhatsApp Button ===== */
.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 3rem;
    background: linear-gradient(135deg, var(--whatsapp-green) 0%, #1ea952 100%);
    color: var(--text-white);
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: var(--transition);
    box-shadow:
        0 10px 30px rgba(37, 211, 102, 0.4),
        0 5px 15px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 1s ease-out 0.4s both;
    letter-spacing: 0.5px;
}

.whatsapp-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: width 0.6s, height 0.6s;
}

.whatsapp-btn:hover::before {
    width: 300px;
    height: 300px;
}

.whatsapp-btn:hover {
    transform: translateY(-3px);
    box-shadow:
        0 15px 40px rgba(37, 211, 102, 0.5),
        0 8px 20px rgba(0, 0, 0, 0.4);
}

.whatsapp-btn:active {
    transform: translateY(-1px);
}

.whatsapp-icon {
    width: 28px;
    height: 28px;
    position: relative;
    z-index: 1;
    animation: pulse 2s ease-in-out infinite;
}

/* ===== Animations ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 70%;
        max-width: 300px;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        gap: 2rem;
        transition: var(--transition);
        padding: 2rem;
    }

    .nav-links.active {
        right: 0;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .logo-image {
        height: 50px;
    }

    .nav-container {
        padding: 0 1.5rem;
    }

    .hero-title {
        letter-spacing: -1px;
    }

    .whatsapp-btn {
        padding: 1rem 2rem;
        font-size: 1rem;
        gap: 0.75rem;
    }

    .whatsapp-icon {
        width: 24px;
        height: 24px;
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding: 1.5rem;
    }

    .nav-container {
        padding: 0 1rem;
    }

    .logo-image {
        height: 45px;
    }

    .whatsapp-btn {
        padding: 0.9rem 1.8rem;
        font-size: 0.95rem;
    }
}

/* High Resolution Displays */
@media (min-width: 1920px) {
    .nav-container {
        max-width: 1600px;
    }

    .hero-title {
        font-size: 6rem;
    }

    .hero-subtitle {
        font-size: 1.8rem;
    }
}

/* ===== About Section ===== */
.about-section {
    position: relative;
    background: linear-gradient(135deg, var(--light-gray) 0%, #ffffff 100%);
    padding: 6rem 2rem;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg,
            var(--dark-orange) 0%,
            var(--primary-orange) 50%,
            var(--dark-orange) 100%);
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
}

.about-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.about-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.about-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--dark-orange), var(--primary-orange));
    border-radius: 2px;
}

/* CEO Profile */
.ceo-profile {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.08),
        0 2px 8px rgba(0, 0, 0, 0.06);
    display: flex;
    gap: 2.5rem;
    align-items: flex-start;
    position: relative;
    overflow: hidden;
    border-left: 5px solid var(--primary-orange);
    margin-bottom: 2rem;
    animation: slideInLeft 0.8s ease-out;
}

.ceo-profile::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 152, 0, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(50%, -50%);
}

.ceo-image-wrapper {
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.ceo-image {
    width: 200px;
    height: 200px;
    border-radius: 15px;
    object-fit: cover;
    border: 4px solid var(--primary-orange);
    box-shadow: 0 8px 25px rgba(255, 152, 0, 0.3);
    transition: var(--transition);
}

.ceo-image:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(255, 152, 0, 0.4);
}

.ceo-info {
    flex: 1;
    position: relative;
    z-index: 1;
}

.ceo-name {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.ceo-title {
    font-size: 1.2rem;
    color: var(--primary-orange);
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ceo-bio {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--medium-gray);
    text-align: justify;
}

.about-content {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.08),
        0 2px 8px rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
    border-left: 5px solid var(--primary-orange);
    animation: slideInLeft 0.8s ease-out 0.2s both;
}

.about-content::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 152, 0, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(50%, -50%);
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--medium-gray);
    text-align: justify;
    position: relative;
    z-index: 1;
}

.about-text::first-letter {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-orange);
    float: left;
    line-height: 1;
    margin-right: 10px;
    margin-top: 5px;
}

/* About Section Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.about-content {
    animation: slideInLeft 0.8s ease-out;
}

/* Responsive About Section */
@media (max-width: 1024px) {
    .ceo-profile {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 2rem;
    }

    .ceo-image {
        width: 180px;
        height: 180px;
    }

    .ceo-bio {
        text-align: center;
    }

    .about-text {
        text-align: left;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 4rem 1.5rem;
    }

    .about-content {
        padding: 2rem 1.5rem;
        border-left-width: 4px;
    }

    .about-text {
        font-size: 1rem;
        line-height: 1.8;
        text-align: left;
    }

    .about-text::first-letter {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .about-section {
        padding: 3rem 1rem;
    }

    .about-content {
        padding: 1.5rem 1.2rem;
    }

    .about-text {
        font-size: 0.95rem;
    }
}

/* ===== Services Section ===== */
.services-section {
    position: relative;
    background: var(--dark-gray);
    padding: 6rem 2rem;
    overflow: hidden;
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
}

.services-header {
    text-align: center;
    margin-bottom: 4rem;
}

.services-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.services-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--dark-orange), var(--primary-orange));
    border-radius: 2px;
}

.services-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-top: 1.5rem;
    font-weight: 300;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

/* Service Card */
.service-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border-top: 4px solid var(--primary-orange);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 152, 0, 0.05) 0%, transparent 50%);
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(255, 152, 0, 0.2);
    border-top-width: 6px;
}

.service-card:hover::before {
    opacity: 1;
}

/* Service Icon */
.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-orange), var(--dark-orange));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(255, 152, 0, 0.3);
}

.service-icon svg {
    width: 35px;
    height: 35px;
    color: white;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px rgba(255, 152, 0, 0.4);
}

/* Service Content */
.service-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.service-description {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--medium-gray);
    position: relative;
    z-index: 1;
}

/* Responsive Services */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .services-section {
        padding: 4rem 1.5rem;
    }

    .services-header {
        margin-bottom: 3rem;
    }

    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }

    .service-card {
        padding: 2rem 1.5rem;
    }

    .service-icon {
        width: 60px;
        height: 60px;
    }

    .service-icon svg {
        width: 30px;
        height: 30px;
    }

    .service-name {
        font-size: 1.3rem;
    }

    .service-description {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .services-section {
        padding: 3rem 1rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .service-card {
        padding: 1.75rem 1.25rem;
    }

    .service-icon {
        width: 55px;
        height: 55px;
    }

    .service-icon svg {
        width: 28px;
        height: 28px;
    }

    .service-name {
        font-size: 1.2rem;
    }

    .service-description {
        font-size: 0.9rem;
    }
}

/* ===== Gallery Section ===== */
.gallery-section {
    position: relative;
    background: linear-gradient(180deg, #ffffff 0%, var(--light-gray) 100%);
    padding: 6rem 2rem;
    overflow: hidden;
}

.gallery-container {
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-header {
    text-align: center;
    margin-bottom: 4rem;
}

.gallery-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.gallery-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--dark-orange), var(--primary-orange));
    border-radius: 2px;
}

.gallery-subtitle {
    font-size: 1.1rem;
    color: var(--medium-gray);
    margin-top: 1.5rem;
    font-weight: 300;
}

/* Gallery Wrapper */
.gallery-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.gallery-track-container {
    flex: 1;
    overflow: hidden;
    border-radius: 15px;
    position: relative;
}

.gallery-track {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0.5rem 0;
}

.gallery-item {
    flex: 0 0 auto;
    width: 400px;
    height: 300px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.gallery-item:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 8px 25px rgba(255, 152, 0, 0.3);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Gallery Navigation Buttons */
.gallery-nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    border: 2px solid var(--primary-orange);
    color: var(--primary-orange);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    flex-shrink: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.gallery-nav-btn:hover {
    background: var(--primary-orange);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(255, 152, 0, 0.4);
}

.gallery-nav-btn:active {
    transform: scale(0.95);
}

.gallery-nav-btn svg {
    width: 24px;
    height: 24px;
}

.gallery-nav-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    transform: scale(1);
}

.gallery-nav-btn:disabled:hover {
    background: white;
    color: var(--primary-orange);
}

/* Gallery Indicators */
.gallery-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 2rem;
}

.gallery-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 152, 0, 0.3);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}

.gallery-indicator:hover {
    background: rgba(255, 152, 0, 0.6);
    transform: scale(1.2);
}

.gallery-indicator.active {
    background: var(--primary-orange);
    width: 30px;
    border-radius: 6px;
}

/* Responsive Gallery */
@media (max-width: 1024px) {
    .gallery-item {
        width: 350px;
        height: 260px;
    }
}

@media (max-width: 768px) {
    .gallery-section {
        padding: 4rem 1rem;
    }

    .gallery-header {
        margin-bottom: 2.5rem;
    }

    .gallery-wrapper {
        gap: 0.5rem;
    }

    .gallery-track {
        gap: 1rem;
    }

    .gallery-item {
        width: 300px;
        height: 220px;
    }

    .gallery-nav-btn {
        width: 40px;
        height: 40px;
    }

    .gallery-nav-btn svg {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    .gallery-section {
        padding: 3rem 0.5rem;
    }

    .gallery-wrapper {
        gap: 0.25rem;
    }

    .gallery-track {
        gap: 0.75rem;
    }

    .gallery-item {
        width: 280px;
        height: 200px;
    }

    .gallery-nav-btn {
        width: 35px;
        height: 35px;
    }

    .gallery-nav-btn svg {
        width: 18px;
        height: 18px;
    }

    .gallery-indicators {
        gap: 8px;
    }

    .gallery-indicator {
        width: 10px;
        height: 10px;
    }

    .gallery-indicator.active {
        width: 24px;
    }
}

/* ===== Contacts Section ===== */
.contacts-section {
    position: relative;
    background: var(--dark-gray);
    padding: 6rem 2rem;
    overflow: hidden;
}

.contacts-container {
    max-width: 1400px;
    margin: 0 auto;
}

.contacts-header {
    text-align: center;
    margin-bottom: 4rem;
}

.contacts-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.contacts-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--dark-orange), var(--primary-orange));
    border-radius: 2px;
}

.contacts-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-top: 1.5rem;
    font-weight: 300;
}

.contacts-content {
    margin-top: 3rem;
}

/* Contact Cards Grid */
.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border-top: 4px solid var(--primary-orange);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 152, 0, 0.05) 0%, transparent 50%);
    opacity: 0;
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(255, 152, 0, 0.2);
    border-top-width: 6px;
}

.contact-card:hover::before {
    opacity: 1;
}

/* Contact Icons */
.contact-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.contact-icon svg {
    width: 40px;
    height: 40px;
    color: white;
}

.phone-icon {
    background: linear-gradient(135deg, var(--primary-orange), var(--dark-orange));
    box-shadow: 0 4px 15px rgba(255, 152, 0, 0.3);
}

.whatsapp-icon {
    background: linear-gradient(135deg, #25D366, #1ea952);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.location-icon {
    background: linear-gradient(135deg, #4285F4, #3367D6);
    box-shadow: 0 4px 15px rgba(66, 133, 244, 0.3);
}

.facebook-icon {
    background: linear-gradient(135deg, #1877F2, #4267B2);
    box-shadow: 0 4px 15px rgba(24, 119, 242, 0.3);
}

.contact-card:hover .contact-icon {
    transform: scale(1.1) rotate(5deg);
}

/* Contact Card Content */
.contact-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.contact-link {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-orange);
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.contact-link:hover {
    color: var(--dark-orange);
    text-decoration: underline;
}

.contact-description {
    font-size: 0.95rem;
    color: var(--medium-gray);
    position: relative;
    z-index: 1;
}

/* Contacts Footer */
.contacts-footer {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 152, 0, 0.1);
    border-radius: 15px;
    border: 2px solid var(--primary-orange);
}

.footer-text {
    font-size: 1.1rem;
    color: var(--text-white);
    font-weight: 500;
}

/* Responsive Contacts */
@media (max-width: 768px) {
    .contacts-section {
        padding: 4rem 1.5rem;
    }

    .contact-cards {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }

    .contact-card {
        padding: 2rem 1.5rem;
    }

    .contact-icon {
        width: 70px;
        height: 70px;
    }

    .contact-icon svg {
        width: 35px;
        height: 35px;
    }

    .contact-card-title {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .contacts-section {
        padding: 3rem 1rem;
    }

    .contact-cards {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .contact-card {
        padding: 1.75rem 1.25rem;
    }

    .contact-icon {
        width: 65px;
        height: 65px;
    }

    .contact-icon svg {
        width: 32px;
        height: 32px;
    }
}