/* ==================================================
IKASTUDIO
STYLE.CSS
================================== */

/* ==========================
ROOT VARIABLES
========================== */

:root {

    --gold: #D4AF37;
    --gold-light: #FFD700;
    --gold-dark: #A67C00;

    --black: #000000;
    --black-soft: #080808;
    --black-card: #111111;

    --white: #ffffff;
    --gray: #b8b8b8;
    --gray-dark: #7d7d7d;

    --border: rgba(255,255,255,.08);

    --transition: .4s ease;

    --container: 1400px;

}

/* ==========================
RESET
========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    background:#000;
    color:#fff;

    font-family:'Montserrat',sans-serif;

    overflow-x:hidden;

    cursor:none;

}

/* ==========================
SELECTION
========================== */

::selection{

    background:var(--gold);
    color:#000;

}

/* ==========================
SCROLLBAR
========================== */

::-webkit-scrollbar{
    width:8px;
}

::-webkit-scrollbar-track{
    background:#050505;
}

::-webkit-scrollbar-thumb{

    background:var(--gold);
    border-radius:20px;

}

/* ==========================
CONTAINER
========================== */

.container{

    width:90%;
    max-width:var(--container);

    margin:auto;

}

/* ==========================
TYPOGRAPHY
========================== */

h1,h2,h3,h4{

    line-height:1.1;
    font-weight:700;

}

p{

    line-height:1.8;
    color:var(--gray);

}

a{

    text-decoration:none;
    color:inherit;

}

img{

    max-width:100%;

}


/* ==========================
NOISE OVERLAY
========================== */

.noise-overlay{

    position:fixed;

    inset:0;

    z-index:-1;

    opacity:.03;

    background-image:
    url("https://www.transparenttextures.com/patterns/asfalt-light.png");

}

/* ==========================
GLOW EFFECTS
========================== */

.gold-glow{

    position:fixed;

    border-radius:50%;

    filter:blur(180px);

    z-index:-2;

}

.glow-1{

    width:350px;
    height:350px;

    background:rgba(212,175,55,.15);

    top:-100px;
    left:-100px;

}

.glow-2{

    width:400px;
    height:400px;

    background:rgba(255,215,0,.08);

    bottom:-150px;
    right:-150px;

}

/* ==========================
HEADER
========================== */

.header{

    position:fixed;

    top:0;
    left:0;

    width:100%;

    z-index:1000;

    padding:24px 0;

    transition:.4s ease;

}

.header.scrolled{

    background:rgba(0,0,0,.75);

    backdrop-filter:blur(20px);

    border-bottom:1px solid var(--border);

}

/* ==========================
HEADER CONTAINER
========================== */

.header .container{

    display:flex;

    justify-content:space-between;

    align-items:center;

}

/* ==========================
LOGO
========================== */

.logo{

    display:flex;
    align-items:center;

}

.logo img{

    height:60px;
    width:auto;

    transition:.3s ease;
	
	

}
.logo img:hover{

    transform:scale(1.05);

}

/* ==========================
NAVIGATION
========================== */

.nav{

    display:flex;
    gap:45px;

}

.nav a{

    color:#fff;

    font-size:.95rem;

    transition:var(--transition);

    position:relative;

}

.nav a::after{

    content:"";

    position:absolute;

    left:0;
    bottom:-8px;

    width:0%;
    height:1px;

    background:var(--gold);

    transition:var(--transition);

}

.nav a:hover{

    color:var(--gold);

}

.nav a:hover::after{

    width:100%;

}

/* ==========================
HEADER BUTTON
========================== */

.header-btn{

    border:1px solid var(--gold);

    color:var(--gold);

    padding:14px 28px;

    border-radius:999px;

    transition:var(--transition);

    font-size:.9rem;

}

.header-btn:hover{

    background:var(--gold);

    color:#000;

    box-shadow:
    0 0 25px rgba(212,175,55,.4);

}

/* ==========================
MENU TOGGLE
========================== */

.menu-toggle{

    display:none;

    flex-direction:column;

    gap:6px;

    cursor:pointer;

}

.menu-toggle span{

    width:30px;
    height:2px;

    background:#fff;

}

/* ==========================
MOBILE MENU
========================== */

.mobile-menu{

    position:fixed;

    top:0;
    right:-100%;

    width:100%;
    height:100vh;

    background:#000;

    z-index:999;

    display:flex;

    flex-direction:column;

    justify-content:center;
    align-items:center;

    gap:30px;

    transition:.5s ease;

}

.mobile-menu.active{

    right:0;

}

.mobile-menu a{

    font-size:2rem;

    font-weight:700;

}

.mobile-menu a:hover{

    color:var(--gold);

}

/* ==========================
HERO
========================== */

.hero{

    min-height:100vh;

    display:flex;

    justify-content:center;
    align-items:center;

    text-align:center;

    position:relative;

    padding:120px 20px;

}

.hero-content{

    max-width:1100px;

}

/* ==========================
HERO TAG
========================== */

.hero-tag{

    display:inline-block;

    border:1px solid rgba(212,175,55,.4);

    color:var(--gold);

    padding:10px 18px;

    border-radius:999px;

    margin-bottom:35px;

    font-size:.85rem;

    letter-spacing:1px;

    text-transform:uppercase;

}

/* ==========================
HERO TITLE
========================== */

.hero h1{

    font-size:clamp(4rem,9vw,8rem);

    font-weight:800;

    line-height:1;

    margin-bottom:30px;

}

.hero h1 span{

    display:block;

    color:var(--gold);

    text-shadow:
    0 0 25px rgba(212,175,55,.4);

}

/* ==========================
HERO TEXT
========================== */

.hero p{

    max-width:750px;

    margin:auto;

    font-size:1.2rem;

    margin-bottom:45px;

}

/* ==========================
BUTTON GROUP
========================== */

.hero-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

}

/* ==========================
PRIMARY BUTTON
========================== */

.btn-primary{

    background:var(--gold);

    color:#000;

    padding:18px 34px;

    border-radius:999px;

    font-weight:700;

    transition:var(--transition);

}

.btn-primary:hover{

    transform:translateY(-4px);

    box-shadow:
    0 10px 35px rgba(212,175,55,.4);

}

/* ==========================
SECONDARY BUTTON
========================== */

.btn-secondary{

    border:1px solid rgba(255,255,255,.15);

    padding:18px 34px;

    border-radius:999px;

    transition:var(--transition);

}

.btn-secondary:hover{

    border-color:var(--gold);

    color:var(--gold);

}

section{
    position: relative;
}

.section-label{

    display:inline-block;

    color:var(--gold);

    font-size:.85rem;

    letter-spacing:3px;

    text-transform:uppercase;

    margin-bottom:30px;

    font-weight:600;

}

.section-title{

    font-size:clamp(2.5rem,5vw,4.5rem);

    line-height:1.1;

    margin-bottom:60px;

    max-width:900px;

}

/* ==========================
MARQUEE SECTION
========================== */

.marquee-section{

    padding:40px 0;

    border-top:1px solid var(--border);
    border-bottom:1px solid var(--border);

    overflow:hidden;

    background:linear-gradient(
        90deg,
        rgba(212,175,55,.03),
        transparent,
        rgba(212,175,55,.03)
    );

}

.marquee{

    width:100%;
    overflow:hidden;

}

.marquee-track{

    display:flex;

    width:max-content;

    white-space:nowrap;

    animation:marqueeMove 25s linear infinite;

    color:rgba(255,255,255,.12);

    font-size:2rem;

    font-weight:800;

    letter-spacing:4px;

    text-transform:uppercase;

}

@keyframes marqueeMove{

    from{
        transform:translateX(0);
    }

    to{
        transform:translateX(-50%);
    }

}

/* ==========================
ABOUT SECTION
========================== */

.about-preview{

    padding:180px 0;

}

.about-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:100px;

    align-items:center;

}

.about-left h2{

    font-size:clamp(3rem,6vw,5.5rem);

    line-height:1.05;

}

.about-left span{

    display:block;

    color:var(--gold);

    margin-top:10px;

}

.about-right{

    display:flex;

    flex-direction:column;

    gap:30px;

}

.about-right p{

    font-size:1.1rem;

}

/* ==========================
SERVICES SECTION
========================== */

.services-preview{

    padding:180px 0;

}

.services-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.service-card{

    background:rgba(255,255,255,.02);

    border:1px solid rgba(255,255,255,.05);

    border-radius:24px;

    padding:40px;

    min-height:280px;

    position:relative;

    overflow:hidden;

    transition:.4s ease;

    backdrop-filter:blur(10px);

}

.service-card::before{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(
        135deg,
        rgba(212,175,55,.10),
        transparent 60%
    );

    opacity:0;

    transition:.4s ease;

}

.service-card:hover{

    transform:translateY(-10px);

    border-color:rgba(212,175,55,.25);

    box-shadow:
    0 20px 50px rgba(0,0,0,.4);

}

.service-card:hover::before{

    opacity:1;

}

.service-number{

    color:var(--gold);

    font-size:.95rem;

    letter-spacing:2px;

    margin-bottom:20px;

    font-weight:700;

}

.service-card h3{

    font-size:1.7rem;

    margin-bottom:20px;

}

.service-card p{

    font-size:1rem;

}

/* ==========================
PROCESS SECTION
========================== */

.process-section{

    padding:180px 0;

    background:
    linear-gradient(
        180deg,
        transparent,
        rgba(255,255,255,.015),
        transparent
    );

}

.process-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.process-card{

    position:relative;

    padding:40px;

    border-radius:24px;

    border:1px solid rgba(255,255,255,.05);

    background:rgba(255,255,255,.02);

    transition:.4s ease;

}

.process-card:hover{

    transform:translateY(-10px);

    border-color:rgba(212,175,55,.3);

}

.process-number{

    width:60px;
    height:60px;

    display:flex;

    justify-content:center;
    align-items:center;

    border-radius:50%;

    background:rgba(212,175,55,.1);

    color:var(--gold);

    margin-bottom:25px;

    font-weight:700;

}

.process-card h3{

    font-size:1.5rem;

    margin-bottom:15px;

}

/* ==========================
STATS SECTION
========================== */

.stats-section{

    padding:120px 0;

}

.stats-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.stat-box{

    text-align:center;

    padding:50px 30px;

    border-radius:24px;

    background:rgba(255,255,255,.02);

    border:1px solid rgba(255,255,255,.05);

    transition:.4s ease;

}

.stat-box:hover{

    border-color:rgba(212,175,55,.25);

    transform:translateY(-8px);

}

.stat-box h3{

    font-size:4rem;

    color:var(--gold);

    margin-bottom:10px;

    font-weight:800;

}

.stat-box span{

    color:var(--gray);

    font-size:1rem;

}

/* ==========================
WHY US SECTION
========================== */

.why-us-section{

    padding:180px 0;

}

.why-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:100px;

    align-items:flex-start;

}

.why-left h2{

    font-size:clamp(3rem,6vw,5rem);

    line-height:1.05;

}

.why-left span{

    display:block;

    margin-top:10px;

    color:var(--gold);

}

.why-right{

    display:flex;

    flex-direction:column;

    gap:25px;

}

.why-item{

    display:flex;

    gap:25px;

    align-items:flex-start;

    padding:30px;

    border-radius:22px;

    background:rgba(255,255,255,.02);

    border:1px solid rgba(255,255,255,.05);

    transition:.4s ease;

}

.why-item:hover{

    transform:translateX(10px);

    border-color:rgba(212,175,55,.25);

}

.why-item i{

    font-size:1.8rem;

    color:var(--gold);

    min-width:40px;

}

.why-item h4{

    font-size:1.2rem;

    margin-bottom:8px;

}

.why-item p{

    font-size:.95rem;

}

/* ==========================
SMOOTH REVEAL CLASSES
(para GSAP después)
========================== */

.reveal{

    opacity:0;

    transform:translateY(50px);

}

.reveal-left{

    opacity:0;

    transform:translateX(-60px);

}

.reveal-right{

    opacity:0;

    transform:translateX(60px);

}

/* ==========================
CTA SECTION
========================== */

.cta-section{

    position:relative;

    padding:220px 0;

    overflow:hidden;

    text-align:center;

}

.cta-background-text{

    position:absolute;

    top:50%;
    left:50%;

    transform:translate(-50%,-50%);

    font-size:clamp(6rem,18vw,18rem);

    font-weight:800;

    color:rgba(255,255,255,.03);

    white-space:nowrap;

    pointer-events:none;

    user-select:none;

    letter-spacing:10px;

}

.cta-content{

    position:relative;

    z-index:2;

    max-width:900px;

    margin:auto;

}

.cta-content span{

    color:var(--gold);

    letter-spacing:4px;

    font-size:.85rem;

    text-transform:uppercase;

    display:block;

    margin-bottom:25px;

}

.cta-content h2{

    font-size:clamp(3rem,7vw,6rem);

    line-height:1.05;

    margin-bottom:30px;

}

.cta-content p{

    max-width:700px;

    margin:0 auto 50px;

    font-size:1.15rem;

}

/* ==========================
CONTACT SECTION
========================== */

.contact-section{

    padding:180px 0;

    border-top:1px solid var(--border);

}

.contact-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:80px;

    align-items:start;

}

.contact-info h2{

    font-size:clamp(2.8rem,5vw,5rem);

    margin-bottom:30px;

    line-height:1.05;

}

.contact-info p{

    margin-bottom:40px;

    max-width:500px;

}

.contact-details{

    display:flex;

    flex-direction:column;

    gap:20px;

}

.contact-item{

    display:flex;

    align-items:center;

    gap:15px;

}

.contact-item i{

    color:var(--gold);

    font-size:1.2rem;

}

.contact-form-wrapper{

    background:rgba(255,255,255,.02);

    border:1px solid rgba(255,255,255,.05);

    border-radius:30px;

    padding:45px;

    backdrop-filter:blur(10px);

}

.contact-form{

    display:flex;

    flex-direction:column;

    gap:20px;

}

.form-group{

    width:100%;

}

.contact-form input,
.contact-form textarea{

    width:100%;

    background:#0a0a0a;

    border:1px solid rgba(255,255,255,.08);

    color:#fff;

    padding:18px 20px;

    border-radius:16px;

    font-family:'Montserrat',sans-serif;

    outline:none;

    transition:.3s ease;

}

.contact-form input:focus,
.contact-form textarea:focus{

    border-color:var(--gold);

    box-shadow:0 0 20px rgba(212,175,55,.15);

}

.contact-form textarea{

    resize:none;

}

/* ==========================
FOOTER
========================== */

.footer{

    padding:80px 0 40px;

    border-top:1px solid var(--border);

}

.footer-top{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-bottom:40px;

}

.footer-logo{

    font-size:2rem;

    font-weight:800;

}

.footer-logo span{

    color:var(--gold);

}

.footer-social{

    display:flex;

    gap:20px;

}

.footer-social a{

    width:50px;
    height:50px;

    display:flex;

    align-items:center;
    justify-content:center;

    border-radius:50%;

    border:1px solid rgba(255,255,255,.08);

    transition:.3s ease;

}

.footer-social a:hover{

    background:var(--gold);

    color:#000;

    transform:translateY(-5px);

}

.footer-divider{

    height:1px;

    background:rgba(255,255,255,.08);

    margin-bottom:30px;

}

.footer-bottom{

    display:flex;

    justify-content:space-between;

    align-items:center;

    flex-wrap:wrap;

    gap:20px;

}

.footer-links{

    display:flex;

    gap:25px;

}

.footer-links a{

    color:var(--gray);

    transition:.3s ease;

}

.footer-links a:hover{

    color:var(--gold);

}
.footer-logo img{

    height:50px;
    width:auto;

}

/* ==========================
SCROLL INDICATOR
========================== */

.hero-scroll{

    position:absolute;

    bottom:40px;

    left:50%;

    transform:translateX(-50%);

    display:flex;

    flex-direction:column;

    align-items:center;

    gap:10px;

}

.hero-scroll span{

    font-size:.8rem;

    letter-spacing:2px;

    color:var(--gray);

}

.scroll-line{

    width:2px;

    height:60px;

    background:rgba(255,255,255,.15);

    position:relative;

    overflow:hidden;

}

.scroll-line::after{

    content:"";

    position:absolute;

    top:-20px;
    left:0;

    width:100%;
    height:20px;

    background:var(--gold);

    animation:scrollAnimation 2s infinite;

}

@keyframes scrollAnimation{

    0%{
        top:-20px;
    }

    100%{
        top:80px;
    }

}

/* ==========================
HOVER GLOW EFFECTS
========================== */

.service-card:hover,
.process-card:hover,
.stat-box:hover{

    box-shadow:
    0 10px 40px rgba(212,175,55,.08);

}

.btn-primary:hover{

    filter:brightness(1.08);

}

.logo:hover,
.footer-logo:hover{

    text-shadow:
    0 0 20px rgba(212,175,55,.4);

}

/* ==========================
TABLET
========================== */

@media (max-width: 1024px){

    .services-grid{

        grid-template-columns:repeat(2,1fr);

    }

    .process-grid{

        grid-template-columns:repeat(2,1fr);

    }

    .stats-grid{

        grid-template-columns:repeat(2,1fr);

    }

    .about-grid,
    .why-grid,
    .contact-grid{

        grid-template-columns:1fr;

        gap:60px;

    }

    .footer-top{

        flex-direction:column;

        gap:30px;

    }

}

/* ==========================
MOBILE
========================== */

    .nav,
    .header-btn{

        display:none;

    }

    .menu-toggle{

        display:flex;

    }

    .hero{

        min-height:90vh;

    }

    .hero h1{

        font-size:3.5rem;

    }

    .hero p{

        font-size:1rem;

    }

    .section-title{

        font-size:2.4rem;

    }

    .services-grid,
    .process-grid,
    .stats-grid{

        grid-template-columns:1fr;

    }

    .service-card,
    .process-card{

        padding:30px;

    }

    .contact-form-wrapper{

        padding:30px;

    }

    .cta-content h2{

        font-size:3rem;

    }

    .cta-background-text{

        font-size:5rem;

    }

    .footer-bottom{

        flex-direction:column;

        text-align:center;

    }

}

/* ==========================
SMALL MOBILE
========================== */

@media (max-width: 480px){

    .hero h1{

        font-size:2.8rem;

    }

    .btn-primary,
    .btn-secondary{

        width:100%;

        text-align:center;

    }

    .contact-form-wrapper{

        padding:25px;

    }

    .footer-social{

        flex-wrap:wrap;

        justify-content:center;

    }

}

/* ==========================
ANIMATION UTILITIES
========================== */

.fade-up{

    opacity:0;

    transform:translateY(50px);

}

.fade-left{

    opacity:0;

    transform:translateX(-50px);

}

.fade-right{

    opacity:0;

    transform:translateX(50px);

}

.scale-in{

    opacity:0;

    transform:scale(.9);

}

/* ==========================
FINAL SPACING FIXES
========================== */

.services-preview,
.about-preview,
.process-section,
.why-us-section{

    overflow:hidden;

}

html{

    overflow-x:hidden;

}