/* ================================================================
   SPARKLUSION - INDUSTRY-LEADING WEDDING PHOTOGRAPHY
   Modern, Elegant, Conversion-Optimized Design
   ================================================================ */

/* ====================================
   CSS VARIABLES & THEME
   ==================================== */
:root {
    --primary: #1a1a1a;
    --accent: #c9a961;
    --accent-dark: #a88b4f;
    --text-dark: #1a1a1a;
    --text-gray: #666;
    --text-light: #999;
    --bg-light: #fafafa;
    --bg-white: #ffffff;
    --border: #e5e5e5;
    
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Inter', sans-serif;
    
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ====================================
   RESET & BASE
   ==================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    background: var(--bg-white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

section {
    padding: 100px 0;
    overflow: hidden;
}

/* ====================================
   TYPOGRAPHY
   ==================================== */
.heading-2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 600;
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.text-lead {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-gray);
}

.label {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent);
    margin-bottom: 15px;
}

.gradient-text {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ====================================
   FLOATING CONTACT BUTTONS
   ==================================== */
.floating-contact {
    position: fixed;
    right: 25px;
    bottom: 25px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    transition: var(--transition);
}

.wa-btn {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.call-btn {
    background: linear-gradient(135deg, #1a1a1a, #333);
}

.float-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
    color: white;
}

@media (max-width: 768px) {
    .floating-contact {
        right: 15px;
        bottom: 15px;
    }
    
    .float-btn {
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
    }
}

/* ====================================
   NAVIGATION
   ==================================== */
.navbar-custom {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    z-index: 9998;
    transition: var(--transition);
    padding: 20px 0;
}

.navbar-custom.scrolled {
    padding: 15px 0;
    box-shadow: var(--shadow-sm);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand img {
    height: 40px;
    width: auto;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 35px;
}

.nav-item {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-dark);
    position: relative;
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: var(--transition);
}

.nav-item:hover::after {
    width: 100%;
}

.btn-nav {
    background: var(--accent);
    color: white;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

.btn-nav:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 30px;
    height: 25px;
}

.nav-toggle span {
    width: 100%;
    height: 3px;
    background: var(--text-dark);
    border-radius: 3px;
    transition: var(--transition);
}

@media (max-width: 991px) {
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 280px;
        height: calc(100vh - 80px);
        background: white;
        flex-direction: column;
        align-items: flex-start;
        padding: 30px;
        gap: 20px;
        box-shadow: var(--shadow-lg);
        transition: var(--transition);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-item::after {
        display: none;
    }
    
    .btn-nav {
        width: 100%;
        text-align: center;
    }
}

/* ====================================
   HERO SECTION - FIXED & OPTIMIZED
   ==================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-visual {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, 
        rgba(0,0,0,0.88) 0%, 
        rgba(0,0,0,0.70) 45%, 
        rgba(0,0,0,0.35) 100%),
        url('images/21.jpg') center center/cover no-repeat;
    z-index: -1;
}

.hero .container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 15px;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 750px;
    width: 100%;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 10px 25px;
    border-radius: 50px;
    color: white;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 30px;
}

.tag-dot {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.hero-heading {
    font-family: var(--font-heading);
    font-size: clamp(2.8rem, 5vw, 4.8rem);
    font-weight: 600;
    line-height: 1.12;
    color: white;
    margin-bottom: 30px;
    text-shadow: 2px 4px 15px rgba(0,0,0,0.5);
    max-width: 720px;
    word-wrap: break-word;
}

.text-shine {
    background: linear-gradient(135deg, #ffffff, var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline;
}

.hero-text {
    font-size: 1.15rem;
    line-height: 1.75;
    color: rgba(255,255,255,0.95);
    margin-bottom: 40px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.4);
    max-width: 650px;
}

.hero-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.btn-hero-main {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--accent);
    color: white;
    padding: 16px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 4px 20px rgba(201,169,97,0.3);
    transition: var(--transition);
}

.btn-hero-main:hover {
    background: var(--accent-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(201,169,97,0.4);
    color: white;
}

.btn-hero-alt {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.3);
    color: white;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
}

.btn-hero-alt:hover {
    background: white;
    color: var(--text-dark);
    border-color: white;
}

.hero-proof {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.proof-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.95);
    font-size: 0.9rem;
    font-weight: 500;
}

.proof-item i {
    color: var(--accent);
    font-size: 1.1rem;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
}

.scroll-line {
    width: 2px;
    height: 30px;
    background: rgba(255,255,255,0.3);
    animation: scrollDown 2s infinite;
}

@keyframes scrollDown {
    0%, 100% { transform: translateY(0); opacity: 0; }
    50% { transform: translateY(10px); opacity: 1; }
}

/* Desktop Responsive */
@media (min-width: 992px) {
    .hero-visual {
        background-attachment: fixed;
    }
    
    .hero {
        padding: 140px 0 80px;
    }
    
    .hero .container {
        max-width: 1140px;
    }
    
    .hero-content {
        max-width: 800px;
    }
    
    .hero-heading {
        font-size: clamp(3.5rem, 5vw, 4.5rem);
        max-width: 750px;
    }
    
    .hero-text {
        font-size: 1.18rem;
        max-width: 680px;
    }
}

@media (min-width: 1200px) {
    .hero .container {
        max-width: 1140px;
    }
    
    .hero-content {
        max-width: 850px;
    }
    
    .hero-heading {
        font-size: 4.5rem;
        max-width: 780px;
    }
}

@media (min-width: 1400px) {
    .hero .container {
        max-width: 1320px;
    }
    
    .hero-content {
        max-width: 900px;
    }
    
    .hero-heading {
        font-size: 4.8rem;
        max-width: 820px;
    }
    
    .hero-text {
        font-size: 1.2rem;
        max-width: 700px;
    }
}

/* Tablet */
@media (min-width: 768px) and (max-width: 991px) {
    .hero {
        padding: 120px 0 60px;
    }
    
    .hero-content {
        max-width: 650px;
    }
    
    .hero-heading {
        font-size: 3.2rem;
        max-width: 600px;
    }
    
    .hero-text {
        max-width: 580px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .hero {
        text-align: center;
        padding: 120px 0 60px;
        min-height: 90vh;
    }
    
    .hero-visual {
        background-attachment: scroll;
        background: linear-gradient(135deg, 
            rgba(0,0,0,0.85) 0%, 
            rgba(0,0,0,0.70) 100%),
            url('images/21.jpg') center center/cover no-repeat;
    }
    
    .hero-content {
        margin: 0 auto;
        max-width: 100%;
        padding: 0 15px;
    }
    
    .hero-heading {
        font-size: 2.2rem;
        line-height: 1.2;
        max-width: 100%;
    }
    
    .hero-text {
        font-size: 1rem;
        max-width: 100%;
    }
    
    .hero-actions {
        flex-direction: column;
        justify-content: center;
    }
    
    .btn-hero-main,
    .btn-hero-alt {
        width: 100%;
        justify-content: center;
    }
    
    .hero-proof {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-scroll {
        display: none;
    }
}

/* Extra Small Mobile */
@media (max-width: 480px) {
    .hero-heading {
        font-size: 2rem;
    }
    
    .hero-tag {
        font-size: 0.75rem;
        padding: 8px 18px;
    }
}

/* ====================================
   STORY SECTION
   ==================================== */
.story-sec {
    background: var(--bg-white);
}

.story-visual {
    position: relative;
}

.story-img-wrap {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.story-img {
    width: 100%;
    height: auto;
    display: block;
}

.story-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: white;
    padding: 10px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: var(--shadow-md);
}

.story-badge i {
    color: var(--accent);
}

.story-quote {
    position: absolute;
    bottom: -50px;
    right: -30px;
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    max-width: 350px;
    border-left: 4px solid var(--accent);
}

.quote-icon {
    color: var(--accent);
    font-size: 2rem;
    opacity: 0.3;
    margin-bottom: 15px;
}

.quote-text {
    font-style: italic;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 15px;
}

.quote-auth strong {
    display: block;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 3px;
}

.quote-auth span {
    font-size: 0.85rem;
    color: var(--text-light);
}

.points-list {
    margin-top: 40px;
}

.point {
    display: flex;
    gap: 20px;
    margin-bottom: 35px;
}

.point-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.point-text h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.point-text p {
    color: var(--text-gray);
    line-height: 1.7;
}

@media (max-width: 991px) {
    .story-quote {
        position: static;
        margin-top: 30px;
        max-width: 100%;
    }
}

/* ====================================
   SERVICES SECTION
   ==================================== */
.services-sec {
    background: var(--bg-light);
}

.sec-header {
    text-align: center;
    margin-bottom: 60px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-slow);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-img {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.service-card:hover .service-img img {
    transform: scale(1.1);
}

.service-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.tag-premium {
    background: linear-gradient(135deg, #c9a961, #8b7342);
}

.service-body {
    padding: 35px;
}

.service-ico {
    width: 60px;
    height: 60px;
    background: var(--bg-light);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.service-body h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.service-body p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 25px;
}

.service-list {
    list-style: none;
    margin-bottom: 25px;
}

.service-list li {
    padding: 8px 0;
    color: var(--text-gray);
    font-size: 0.95rem;
}

.service-list i {
    color: var(--accent);
    margin-right: 10px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
}

.service-link:hover {
    gap: 12px;
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* ====================================
   WHY SECTION
   ==================================== */
.why-sec {
    background: white;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.why-card {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 20px;
    transition: var(--transition);
    border: 2px solid transparent;
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent);
    background: white;
}

.why-ico {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.why-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.why-card p {
    color: var(--text-gray);
    line-height: 1.8;
}

/* ====================================
   PORTFOLIO SECTION
   ==================================== */
.portfolio-sec {
    background: var(--bg-light);
    padding: 100px 0;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    padding: 0 20px;
}

.port-item {
    position: relative;
    aspect-ratio: 4/3;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.port-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.port-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.port-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(201,169,97,0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.port-item:hover .port-overlay {
    opacity: 1;
}

.port-item:hover img {
    transform: scale(1.1);
}

.port-overlay i {
    color: white;
    font-size: 2rem;
}

.btn-instagram {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #833AB4, #E1306C);
    color: white;
    padding: 16px 35px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.btn-instagram:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    color: white;
}

@media (max-width: 768px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

/* ====================================
   TESTIMONIALS
   ==================================== */
.testimonial-sec {
    background: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.test-card {
    background: var(--bg-light);
    padding: 35px;
    border-radius: 20px;
    border-left: 4px solid var(--accent);
}

.test-stars {
    margin-bottom: 20px;
}

.test-stars i {
    color: #ffc107;
    font-size: 1rem;
    margin-right: 3px;
}

.test-text {
    font-style: italic;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 25px;
}

.test-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.test-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.test-author strong {
    display: block;
    font-weight: 700;
    margin-bottom: 3px;
}

.test-author span {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* ====================================
   CONTACT SECTION
   ==================================== */
.contact-sec {
    background: var(--bg-light);
}

.contact-list {
    margin-top: 40px;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-ico {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.contact-item h6 {
    font-weight: 700;
    margin-bottom: 5px;
}

.contact-item p {
    color: var(--text-gray);
    line-height: 1.7;
}

.contact-item a {
    color: var(--text-gray);
}

.contact-item a:hover {
    color: var(--accent);
}

.form-wrapper {
    background: white;
    padding: 50px;
    border-radius: 25px;
    box-shadow: var(--shadow-lg);
}

.form-heading {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.form-subtext {
    color: var(--text-gray);
    margin-bottom: 35px;
}

.wedding-form label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.wedding-form input,
.wedding-form select,
.wedding-form textarea {
    width: 100%;
    padding: 14px 20px;
    border: 2px solid var(--border);
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

.wedding-form input:focus,
.wedding-form select:focus,
.wedding-form textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(201,169,97,0.1);
}

.wedding-form textarea {
    resize: vertical;
    min-height: 100px;
}

.wedding-form small {
    display: block;
    margin-top: 5px;
    font-size: 0.85rem;
    color: var(--text-light);
}

.btn-form {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    background: var(--accent);
    color: white;
    padding: 16px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    margin-top: 10px;
    transition: var(--transition);
}

.btn-form:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.form-msg {
    margin-top: 20px;
    padding: 15px 20px;
    border-radius: 10px;
    font-weight: 500;
}

.form-msg.success {
    background: #d4edda;
    color: #155724;
    border: 2px solid #c3e6cb;
}

.form-msg.error {
    background: #f8d7da;
    color: #721c24;
    border: 2px solid #f5c6cb;
}

@media (max-width: 991px) {
    .form-wrapper {
        padding: 35px 25px;
    }
}

/* ====================================
   FOOTER
   ==================================== */
.footer {
    background: var(--primary);
    color: rgba(255,255,255,0.7);
    padding: 80px 0 30px;
}

.footer-logo {
    height: 45px;
    margin-bottom: 20px;
}

.footer-desc {
    line-height: 1.8;
    margin-bottom: 25px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--accent);
    transform: translateY(-3px);
}

.footer-head {
    color: white;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-links,
.footer-contact {
    list-style: none;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.6;
}

.footer-contact i {
    color: var(--accent);
    margin-top: 3px;
}

.footer-bottom {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    color: rgba(255,255,255,0.5);
}

.footer-bottom p {
    margin-bottom: 5px;
}

/* ====================================
   RESPONSIVE UTILITIES
   ==================================== */
@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }
    
    .heading-2 {
        font-size: 2rem;
    }
}
