/* ac-services.css - Complete AC Services Page Styles */

/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-black: #000000;
    --secondary-black: #1a1a1a;
    --primary-white: #ffffff;
    --off-white: #f8f8f8;
    --gray-light: #e5e5e5;
    --gray-medium: #9ca3af;
    --gray-dark: #4b5563;
    --accent: #333333;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px rgba(0,0,0,0.1);
    --shadow-xl: 0 20px 25px rgba(0,0,0,0.1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--secondary-black);
    background-color: var(--primary-white);
    opacity: 1;
    transition: opacity 0.3s ease;
    overflow-x: hidden;
}

/* ===== NAVBAR STYLES ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--primary-white);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    padding: 1rem 0;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--secondary-black);
    font-weight: 500;
    font-size: 1rem;
    position: relative;
    padding: 0.5rem 0;
    transition: var(--transition);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-black);
    transition: var(--transition);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background: var(--primary-black);
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ===== FLOATING BUTTONS ===== */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.float-wa, .float-call {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-white);
    font-size: 1.8rem;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    text-decoration: none;
}

.float-wa {
    background: #25D366;
}

.float-call {
    background: var(--primary-black);
}

.float-wa:hover, .float-call:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: var(--shadow-xl);
}

/* ===== PAGE HERO SECTION ===== */
.page-hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    padding: 120px 5% 50px;
    gap: 4rem;
    background: linear-gradient(135deg, #fff 0%, #f8f8f8 100%);
}

.hero-content {
    flex: 1;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero-content h1 span {
    border-bottom: 4px solid var(--primary-black);
    display: inline-block;
    padding-bottom: 5px;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--gray-dark);
    margin-bottom: 2rem;
    max-width: 600px;
    line-height: 1.8;
}

.hero-image {
    flex: 1;
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    box-shadow: var(--shadow-xl);
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 30px;
    transition: var(--transition);
    display: block;
}

.hero-image:hover img {
    transform: scale(1.05);
}

/* ===== SERVICES GRID SECTION ===== */
.services-grid-section {
    padding: 100px 5%;
    background: var(--off-white);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.section-header h2 span {
    border-bottom: 3px solid var(--primary-black);
    padding-bottom: 5px;
}

.section-header p {
    color: var(--gray-dark);
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.services-grid-8 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

/* 3D Card Styles */
.service-card-3d {
    perspective: 1500px;
    height: 400px;
    cursor: pointer;
}

.card-3d-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
    border-radius: 20px;
}

.service-card-3d:hover .card-3d-inner {
    transform: rotateY(180deg);
}

.card-3d-front, .card-3d-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.card-3d-front {
    background: var(--primary-white);
    display: flex;
    flex-direction: column;
    border: 1px solid var(--gray-light);
}

.card-3d-front img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: var(--transition);
}

.card-3d-front:hover img {
    transform: scale(1.1);
}

.card-3d-front h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 1.2rem 1rem 0.5rem;
    color: var(--secondary-black);
}

.card-3d-front p {
    color: var(--gray-dark);
    margin: 0 1rem 1rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.card-3d-back {
    background: var(--primary-black);
    color: var(--primary-white);
    transform: rotateY(180deg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    text-align: center;
}

.card-3d-back h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-white);
}

.card-3d-back p {
    margin-bottom: 1.8rem;
    line-height: 1.7;
    font-size: 1rem;
    opacity: 0.9;
}

.btn-card {
    background: var(--primary-white);
    color: var(--primary-black);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    display: inline-block;
    margin-bottom: 1.2rem;
    border: 2px solid var(--primary-white);
}

.btn-card:hover {
    background: transparent;
    color: var(--primary-white);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255,255,255,0.2);
}

.card-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.btn-wa, .btn-call {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-white);
    font-size: 1.3rem;
    transition: var(--transition);
    text-decoration: none;
}

.btn-wa {
    background: #25D366;
}

.btn-call {
    background: var(--accent);
}

.btn-wa:hover, .btn-call:hover {
    transform: scale(1.15) translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

/* ===== WHY CHOOSE US SECTION ===== */
.why-choose {
    padding: 100px 5%;
    background: var(--primary-white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.feature-item {
    text-align: center;
    padding: 2.5rem 2rem;
    background: var(--off-white);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: var(--transition);
    border: 1px solid var(--gray-light);
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border-color: transparent;
}

.feature-item i {
    font-size: 3rem;
    color: var(--primary-black);
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.feature-item:hover i {
    transform: scale(1.1);
}

.feature-item h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: var(--secondary-black);
}

.feature-item p {
    color: var(--gray-dark);
    font-size: 1rem;
    line-height: 1.6;
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: var(--primary-black);
    color: var(--primary-white);
    text-align: center;
    padding: 100px 5%;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0) 100%);
    pointer-events: none;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.cta-content p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.btn {
    padding: 1rem 2.8rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    display: inline-block;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--primary-white);
    color: var(--primary-black);
}

.btn-primary:hover {
    background: var(--off-white);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255,255,255,0.2);
}

.btn-outline-light {
    background: transparent;
    color: var(--primary-white);
    border: 2px solid var(--primary-white);
}

.btn-outline-light:hover {
    background: var(--primary-white);
    color: var(--primary-black);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255,255,255,0.2);
}

/* ===== FOOTER STYLES ===== */
.footer {
    background: var(--secondary-black);
    color: var(--primary-white);
    padding: 60px 5% 20px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo {
    height: 40px;
    width: auto;
    margin-bottom: 1rem;
}

.footer-section p {
    color: var(--gray-medium);
    line-height: 1.7;
    font-size: 0.95rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-white);
    transform: translateY(-3px);
}

.social-links img {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
    transition: var(--transition);
}

.social-links a:hover img {
    filter: brightness(0);
}

.footer-section h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
    color: var(--primary-white);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: var(--gray-medium);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
}

.footer-section ul li a:hover {
    color: var(--primary-white);
    padding-left: 5px;
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--gray-medium);
    font-size: 0.95rem;
}

.contact-info img {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: var(--gray-medium);
    font-size: 0.9rem;
}

/* ===== RESPONSIVE DESIGN ===== */

/* Large Desktop */
@media (max-width: 1400px) {
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .section-header h2 {
        font-size: 2.5rem;
    }
}

/* Tablet Landscape */
@media (max-width: 1024px) {
    .page-hero {
        flex-direction: column;
        text-align: center;
        padding-top: 100px;
        min-height: auto;
    }
    
    .hero-content p {
        margin: 0 auto 2rem;
    }
    
    .hero-image {
        width: 100%;
    }
    
    .services-grid-8 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-content h2 {
        font-size: 2.5rem;
    }
}

/* Tablet Portrait */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--primary-white);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding: 3rem 2rem;
        transition: var(--transition);
        gap: 2rem;
        box-shadow: var(--shadow-lg);
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    .service-card-3d {
        height: 380px;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .btn {
        width: 100%;
    }
    
    .floating-buttons {
        bottom: 20px;
        right: 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .contact-info li {
        justify-content: center;
    }
}

/* Mobile Landscape */
@media (max-width: 640px) {
    .services-grid-8 {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
}

/* Mobile Portrait */
@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    .feature-item {
        padding: 2rem 1.5rem;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
    
    .cta-content p {
        font-size: 1.1rem;
    }
    
    .footer-section h3 {
        font-size: 1.1rem;
    }
}

/* Small Mobile */
@media (max-width: 360px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .logo img {
        height: 40px;
    }
    
    .float-wa, .float-call {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}

/* Animation Keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Apply animations to sections */
.page-hero, .services-grid-section, .why-choose, .cta-section {
    animation: fadeInUp 1s ease-out;
}

/* Hover Effects for Links */
a {
    text-decoration: none;
}

/* Image Optimization */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Selection Color */
::selection {
    background: var(--primary-black);
    color: var(--primary-white);
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--off-white);
}

::-webkit-scrollbar-thumb {
    background: var(--gray-dark);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-black);
}
/* ====================================
   Additional Global Fixes - Har Page Me Add Karein
   Text Alignment aur Mobile Menu Card Buttons ke Liye
   ==================================== */

/* ---------- Text Alignment Fixes (Braber Lines) ---------- */
/* Ensures text in all cards and sections aligns properly */
.service-card p,
.service-card-3d p,
.featured-card p,
.benefit-item p,
.testimonial-card p,
.service-mini-card p,
.team-member p,
.value-card p,
.cert-item p,
.why-list li,
.story-content p,
.hero-content p {
    text-align: justify;
    text-justify: inter-word;
    hyphens: auto;
    word-break: break-word;
}

/* Headings ko normal rakho (center ya left as per design) */
.service-card h3,
.service-card-3d h3,
.featured-card h3,
.benefit-item h3,
.service-mini-card h3,
.team-member h3,
.value-card h3 {
    text-align: left;
}

/* Section headers center rahenge */
.section-header h2,
.section-header p {
    text-align: center;
}

/* List items ko left align rakho */
.service-features li,
.service-mini-list li,
.why-list li {
    text-align: left;
}

/* ---------- Mobile Menu Card Buttons Left Side Fix ---------- */
@media (max-width: 768px) {
    /* Service Cards ke buttons left side */
    .service-card .btn-card,
    .service-card-3d .btn-card,
    .featured-card .btn-small,
    .service-mini-card .learn-more,
    .btn-card,
    .learn-more {
        display: inline-flex !important;
        justify-content: flex-start !important;
        margin-left: 0 !important;
        margin-right: auto !important;
        width: auto !important;
        text-align: left !important;
    }
    
    /* Card buttons container left align */
    .card-buttons,
    .member-contact,
    .featured-footer {
        justify-content: flex-start !important;
        margin-left: 0 !important;
    }
    
    /* Service card 3D back buttons */
    .service-card-3d .card-3d-back .btn-card {
        margin-left: 0 !important;
        margin-right: auto !important;
    }
    
    /* Featured card footer */
    .featured-footer {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: space-between !important;
    }
    
    .featured-footer .price {
        margin-left: 0 !important;
    }
    
    .featured-footer .btn-small {
        margin-right: 0 !important;
    }
    
    /* Why choose section */
    .benefit-item {
        text-align: left !important;
    }
    
    .benefit-icon {
        margin-left: 0 !important;
        margin-right: auto !important;
    }
    
    /* Team member section */
    .team-member {
        text-align: left !important;
    }
    
    .team-member img {
        margin-left: 0 !important;
        margin-right: auto !important;
    }
    
    .member-contact {
        display: flex !important;
        gap: 0.8rem !important;
    }
    
    /* Testimonials */
    .testimonial-card {
        text-align: left !important;
    }
    
    .testimonial-rating {
        text-align: left !important;
    }
    
    /* CTA section buttons */
    .cta-buttons {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 1rem !important;
    }
    
    .cta-buttons .btn {
        width: 100% !important;
        text-align: center !important;
    }
    
    /* Hero section buttons on mobile */
    .hero-buttons {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 1rem !important;
    }
    
    .hero-buttons .btn {
        width: 100% !important;
        text-align: center !important;
    }
    
    /* Floating buttons thik rakho */
    .floating-buttons {
        right: 20px !important;
        bottom: 20px !important;
    }
    
    /* Contact buttons */
    .contact-buttons {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 1rem !important;
    }
    
    .contact-buttons .btn {
        width: 100% !important;
        text-align: center !important;
    }
    
    /* Hero contact links */
    .hero-contact {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 1rem !important;
    }
    
    .hero-phone,
    .hero-email {
        width: 100% !important;
        text-align: center !important;
    }
    
    /* Badges ko left align */
    .hero-badges {
        justify-content: flex-start !important;
    }
    
    /* Stats section */
    .stats-grid {
        gap: 1.5rem !important;
    }
    
    .stat-item {
        text-align: center !important;
    }
}

/* ---------- Extra Small Devices (Phones) ke Liye ---------- */
@media (max-width: 480px) {
    /* Service cards ke andar buttons */
    .service-card .btn-card,
    .service-card-3d .btn-card {
        width: 100% !important;
        justify-content: center !important;
    }
    
    /* Card buttons container */
    .card-buttons {
        display: flex !important;
        flex-direction: row !important;
        justify-content: flex-start !important;
        gap: 0.8rem !important;
        width: 100% !important;
    }
    
    .card-buttons .btn-wa,
    .card-buttons .btn-call {
        flex: 0 1 auto !important;
        width: auto !important;
    }
    
    /* Featured footer */
    .featured-footer {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 1rem !important;
    }
    
    .featured-footer .btn-small {
        width: 100% !important;
        text-align: center !important;
    }
    
    /* Mini service cards */
    .service-mini-card .learn-more {
        width: 100% !important;
        justify-content: center !important;
    }
    
    /* Team member contact buttons */
    .member-contact {
        justify-content: flex-start !important;
    }
    
    /* Paragraph text alignment */
    .service-card p,
    .service-card-3d p,
    .featured-card p,
    .testimonial-card p {
        text-align: left !important; /* Mobile pe left better hai */
    }
}

/* ---------- Tablet Devices ke Liye ---------- */
@media (min-width: 769px) and (max-width: 1024px) {
    /* Buttons ko thik rakho */
    .service-card .btn-card,
    .service-card-3d .btn-card {
        display: inline-flex !important;
        width: auto !important;
    }
    
    .card-buttons {
        justify-content: flex-start !important;
    }
}

/* ---------- Global Text Improvements ---------- */
/* Long words ko break karne ke liye */
p, h1, h2, h3, h4, h5, h6, span, a, li {
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Service features list */
.service-features {
    text-align: left !important;
}

/* Cards ke andar consistent spacing */
.service-card,
.service-card-3d,
.featured-card,
.testimonial-card,
.service-mini-card,
.team-member,
.value-card {
    overflow: hidden;
}

/* Buttons ka text center rahe */
.btn, .btn-card, .btn-small, .learn-more {
    text-align: center;
    white-space: nowrap;
}

/* Mobile pe buttons ka text wrap ho sakta hai */
@media (max-width: 480px) {
    .btn, .btn-card, .btn-small, .learn-more {
        white-space: normal;
        word-break: keep-all;
    }
}

.social-links {
        display: flex;
        gap: 12px;
        margin-top: 15px;
    }
    
    .social-icon {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
        color: white;
        font-size: 1.2rem;
        text-decoration: none;
    }
    
    /* Facebook */
    .social-icon.facebook {
        background: #1877f2;
    }
    
    .social-icon.facebook:hover {
        background: #0d5ab9;
        transform: translateY(-5px);
        box-shadow: 0 5px 15px rgba(24, 119, 242, 0.4);
    }
    
    /* Instagram */
    .social-icon.instagram {
        background: linear-gradient(45deg, #f09433, #d62976, #962fbf, #4f5bd5);
    }
    
    .social-icon.instagram:hover {
        transform: translateY(-5px);
        box-shadow: 0 5px 15px rgba(225, 48, 108, 0.4);
    }
    
    /* TikTok */
    .social-icon.tiktok {
        background: #000000;
        position: relative;
    }
    
    .social-icon.tiktok:hover {
        background: #1a1a1a;
        transform: translateY(-5px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
    }
    
    /* LinkedIn */
    .social-icon.linkedin {
        background: #0a66c2;
    }
    
    .social-icon.linkedin:hover {
        background: #004182;
        transform: translateY(-5px);
        box-shadow: 0 5px 15px rgba(10, 102, 194, 0.4);
    }
    
    /* Mobile responsive */
    @media (max-width: 768px) {
        .social-links {
            justify-content: center;
        }
    }