/* ===== VARIABLES ===== */
:root {
    --primary-color: #f57c00;
    --primary-dark: #e65100;
    --primary-light: #ff9800;
    --secondary-color: #757575;
    --dark-color: #212121;
    --light-color: #ffffff;
    --gray-light: #f5f5f5;
    --gray-medium: #9e9e9e;
    --gradient-primary: linear-gradient(135deg, #f57c00 0%, #ff9800 100%);
    --gradient-dark: linear-gradient(135deg, #212121 0%, #424242 100%);
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.1);
    --shadow-md: 0 8px 24px rgba(0,0,0,0.15);
    --shadow-lg: 0 16px 48px rgba(0,0,0,0.2);
    --shadow-primary: 0 8px 24px rgba(245, 124, 0, 0.3);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-primary: 'Poppins', sans-serif;
}

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--dark-color);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--light-color);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
    background: transparent;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    padding: 15px 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 60px;
    width: auto;
    transition: var(--transition);
}

.header.scrolled .logo img {
    height: 50px;
}

.nav-menu {
    display: flex;
    gap: 40px;
}

.nav-link {
    font-weight: 600;
    color: var(--light-color);
    position: relative;
    transition: var(--transition);
    font-size: 16px;
}

.header.scrolled .nav-link {
    color: var(--dark-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gradient-primary);
    transition: var(--transition);
    border-radius: 2px;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--primary-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background: var(--light-color);
    transition: var(--transition);
    border-radius: 3px;
}

.header.scrolled .hamburger span {
    background: var(--dark-color);
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 120px 0 80px;
    background: var(--gradient-dark);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.floating-shapes .shape {
    position: absolute;
    border-radius: 50%;
    background: var(--gradient-primary);
    opacity: 0.1;
    animation: float 20s infinite ease-in-out;
}

.shape-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.shape-2 {
    width: 300px;
    height: 300px;
    bottom: 10%;
    left: -50px;
    animation-delay: 5s;
}

.shape-3 {
    width: 200px;
    height: 200px;
    top: 40%;
    right: 20%;
    animation-delay: 10s;
}

.shape-4 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    right: 10%;
    animation-delay: 15s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(120deg); }
    66% { transform: translate(-20px, 20px) rotate(240deg); }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--light-color);
    line-height: 1.2;
    margin-bottom: 20px;
}

.title-line {
    display: block;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s forwards;
}

.title-line:nth-child(1) { animation-delay: 0.2s; }
.title-line:nth-child(2) { animation-delay: 0.4s; }
.title-line:nth-child(3) { animation-delay: 0.6s; }

.title-line.highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--gray-medium);
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeInUp 0.8s 0.8s forwards;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    opacity: 0;
    animation: fadeInUp 0.8s 1s forwards;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--light-color);
    box-shadow: var(--shadow-primary);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(245, 124, 0, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--light-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--light-color);
}

.btn-3d {
    transform-style: preserve-3d;
    transform: perspective(1000px);
}

.btn-3d:hover {
    transform: translateY(-3px) rotateX(10deg);
}

.btn-large {
    padding: 20px 50px;
    font-size: 18px;
}

/* ===== CUBE 3D ===== */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
}

.cube-3d {
    width: 200px;
    height: 200px;
    position: relative;
    transform-style: preserve-3d;
    animation: rotateCube 20s infinite linear;
}

@keyframes rotateCube {
    0% { transform: rotateX(0deg) rotateY(0deg); }
    100% { transform: rotateX(360deg) rotateY(360deg); }
}

.cube-face {
    position: absolute;
    width: 200px;
    height: 200px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    color: var(--light-color);
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    opacity: 0.9;
}

.cube-face.front { transform: rotateY(0deg) translateZ(100px); }
.cube-face.back { transform: rotateY(180deg) translateZ(100px); }
.cube-face.right { transform: rotateY(90deg) translateZ(100px); }
.cube-face.left { transform: rotateY(-90deg) translateZ(100px); }
.cube-face.top { transform: rotateX(90deg) translateZ(100px); }
.cube-face.bottom { transform: rotateX(-90deg) translateZ(100px); }

/* ===== SCROLL INDICATOR ===== */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce 2s infinite;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 3px solid var(--light-color);
    border-radius: 20px;
    position: relative;
}

.wheel {
    width: 6px;
    height: 10px;
    background: var(--primary-color);
    border-radius: 3px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-20px); }
    60% { transform: translateX(-50%) translateY(-10px); }
}

@keyframes scroll {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(20px); }
}

/* ===== SERVICES PREVIEW ===== */
.services-preview {
    padding: 100px 0;
    background: var(--gray-light);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.domain-checker .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.title-underline {
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    margin: 0 auto;
    border-radius: 2px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--light-color);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    color: var(--light-color);
    transition: var(--transition);
}

.service-card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.service-card p {
    color: var(--secondary-color);
    margin-bottom: 20px;
    line-height: 1.8;
}

.card-link {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.card-link:hover {
    gap: 15px;
}

/* ===== STATS SECTION ===== */
.stats {
    padding: 100px 0;
    background: var(--gradient-dark);
    position: relative;
    overflow: hidden;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-item {
    color: var(--light-color);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 10px;
    line-height: 1;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--gray-medium);
}

/* ===== WHY US SECTION ===== */
.why-us {
    padding: 100px 0;
    background: var(--light-color);
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.why-text {
    font-size: 1.1rem;
    color: var(--secondary-color);
    margin-bottom: 40px;
    line-height: 1.8;
}

.why-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.why-list li {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.why-list i {
    font-size: 24px;
    color: var(--primary-color);
    margin-top: 5px;
}

.why-list h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--dark-color);
}

.why-list p {
    color: var(--secondary-color);
}

.floating-cards {
    position: relative;
    height: 400px;
}

.float-card {
    position: absolute;
    background: var(--light-color);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    animation: floatCard 6s infinite ease-in-out;
}

.float-card i {
    font-size: 40px;
    color: var(--primary-color);
}

.float-card span {
    font-weight: 600;
    color: var(--dark-color);
}

.card-1 {
    top: 0;
    left: 0;
    animation-delay: 0s;
}

.card-2 {
    top: 100px;
    right: 0;
    animation-delay: 2s;
}

.card-3 {
    bottom: 0;
    left: 50px;
    animation-delay: 4s;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* ===== CTA SECTION ===== */
.cta {
    padding: 100px 0;
    background: var(--gradient-primary);
    text-align: center;
}

.cta-content {
    color: var(--light-color);
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.95;
}

.cta .btn {
    background: var(--light-color);
    color: var(--primary-color);
}

.cta .btn:hover {
    background: var(--dark-color);
    color: var(--light-color);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--dark-color);
    color: var(--light-color);
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 2fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo {
    height: 70px;
    margin-bottom: 20px;
}

.footer-col p {
    color: var(--gray-medium);
    line-height: 1.8;
    margin-bottom: 25px;
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: var(--light-color);
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: var(--gray-medium);
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.contact-info li {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    margin-bottom: 20px;
}

.contact-info i {
    color: var(--primary-color);
    font-size: 20px;
    margin-top: 3px;
}

.contact-info span {
    color: var(--gray-medium);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    color: var(--light-color);
}

.social-link:hover {
    background: var(--primary-color);
    transform: translateY(-5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: var(--gray-medium);
}

/* ===== PAGE HEADER ===== */
.page-header {
    padding: 180px 0 100px;
    background: var(--gradient-dark);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.page-title {
    font-size: 3.5rem;
    color: var(--light-color);
    margin-bottom: 20px;
}

.page-subtitle {
    font-size: 1.3rem;
    color: var(--gray-medium);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== SERVICES DETAIL ===== */
.services-detail {
    padding: 100px 0;
}

.services-detail.alternate {
    background: var(--gray-light);
}

.service-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.service-row.reverse {
    direction: rtl;
}

.service-row.reverse > * {
    direction: ltr;
}

.service-image {
    position: relative;
}

.image-wrapper {
    width: 100%;
    aspect-ratio: 16/10;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease, filter 0.5s ease;
}

.service-image:hover .image-wrapper img {
    transform: scale(1.08);
    filter: brightness(1.1);
}

.glow-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    animation: glow 3s infinite;
}

@keyframes glow {
    0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.1); }
}

.service-content {
    padding: 40px;
}

.service-badge {
    display: inline-block;
    padding: 8px 20px;
    background: var(--gradient-primary);
    color: var(--light-color);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.service-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.service-content > p {
    font-size: 1.1rem;
    color: var(--secondary-color);
    margin-bottom: 30px;
    line-height: 1.8;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--dark-color);
    font-weight: 500;
}

.service-features i {
    color: var(--primary-color);
    font-size: 20px;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    padding: 100px 0;
    background: var(--gray-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.contact-info > p {
    color: var(--secondary-color);
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.info-cards {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}

.info-card {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: var(--light-color);
    padding: 25px;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.info-card:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
}

.info-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-color);
    font-size: 20px;
    flex-shrink: 0;
}

.info-content h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--dark-color);
}

.info-content p {
    color: var(--secondary-color);
    line-height: 1.6;
}

.social-contact h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--dark-color);
}

/* ===== CONTACT FORM ===== */
.contact-form-wrapper {
    background: var(--light-color);
    padding: 50px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-family: var(--font-primary);
    font-size: 16px;
    transition: var(--transition);
    background: transparent;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group label {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray-medium);
    pointer-events: none;
    transition: var(--transition);
    background: var(--light-color);
    padding: 0 5px;
}

.form-group.checkbox-group label {
    position: static;
    transform: none;
    pointer-events: auto;
    background: transparent;
    padding: 0;
}

.form-group textarea + label {
    top: 25px;
    transform: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
}

.form-group input:focus + label,
.form-group select:focus + label,
.form-group textarea:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group select:valid + label,
.form-group textarea:not(:placeholder-shown) + label {
    top: 0;
    font-size: 14px;
    color: var(--primary-color);
    font-weight: 600;
}

.form-group i {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray-medium);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-group input {
    width: auto;
    margin-top: 5px;
    cursor: pointer;
    flex-shrink: 0;
    z-index: 1;
    min-width: 18px;
    min-height: 18px;
}

.checkbox-group label {
    position: static;
    transform: none;
    font-size: 14px;
    color: var(--secondary-color);
    cursor: pointer;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    width: 100%;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    flex-shrink: 0;
    z-index: 10;
}

.checkbox-label span {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    color: var(--secondary-color);
    line-height: 1.5;
}

.checkbox-group a {
    color: var(--primary-color);
    text-decoration: underline;
}

.btn-submit {
    justify-content: center;
    margin-top: 10px;
}

/* ===== MAP SECTION ===== */
.map-section {
    position: relative;
}

.map-container iframe {
    width: 100%;
    filter: grayscale(100%) invert(92%) contrast(83%);
}

/* ===== CARD 3D EFFECT ===== */
.card-3d {
    transform-style: preserve-3d;
    transform: perspective(1000px);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .hero-content,
    .why-grid,
    .service-row,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .service-row.reverse {
        direction: ltr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .cube-3d {
        width: 150px;
        height: 150px;
    }
    
    .cube-face {
        width: 150px;
        height: 150px;
        font-size: 40px;
    }
    
    .cube-face.front { transform: rotateY(0deg) translateZ(75px); }
    .cube-face.back { transform: rotateY(180deg) translateZ(75px); }
    .cube-face.right { transform: rotateY(90deg) translateZ(75px); }
    .cube-face.left { transform: rotateY(-90deg) translateZ(75px); }
    .cube-face.top { transform: rotateX(90deg) translateZ(75px); }
    .cube-face.bottom { transform: rotateX(-90deg) translateZ(75px); }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--dark-color);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        transition: var(--transition);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-link {
        font-size: 2rem;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .page-title {
        font-size: 2.5rem;
    }
    
    .section-title,
    .contact-info h2,
    .service-content h2 {
        font-size: 2rem;
    }
    
    .contact-form-wrapper {
        padding: 30px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.75rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .btn {
        padding: 12px 25px;
        font-size: 14px;
    }
}

/* ===== DOMAIN CHECKER ===== */
.domain-checker {
    padding: 80px 0;
    background: linear-gradient(135deg, #f57c00 0%, #FC9000 100%);
    position: relative;
    overflow: hidden;
}

.domain-checker::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.section-subtitle {
    text-align: center;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-top: 15px;
}

.domain-checker-wrapper {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

/* Search Form */
.domain-search-form {
    background: rgba(255, 255, 255, 0.95);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.search-input-group {
    display: flex;
    gap: 15px;
    position: relative;
    align-items: center;
}

.search-icon {
    position: absolute;
    left: 20px;
    color: var(--primary-color);
    font-size: 24px;
    z-index: 1;
}

.search-input-group input {
    width: 100%;
    padding: 20px 20px 20px 60px;
    border: 3px solid #e0e0e0;
    border-radius: 15px;
    font-size: 18px;
    font-family: var(--font-primary);
    transition: var(--transition);
    background: var(--light-color);
}

.search-input-group input:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 4px rgba(245, 124, 0, 0.1);
}

.search-btn {
    padding: 20px 40px;
    font-size: 16px;
    white-space: nowrap;
    border-radius: 15px;
    background: var(--gradient-primary);
    color: var(--light-color);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.search-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(245, 124, 0, 0.4);
}

.search-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.domain-examples {
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    color: var(--secondary-color);
    font-size: 14px;
}

.domain-examples span {
    font-weight: 600;
}

.example-domain {
    color: var(--primary-color);
    text-decoration: underline;
    cursor: pointer;
    transition: var(--transition);
}

.example-domain:hover {
    color: var(--primary-dark);
}

/* Domain Result */
.domain-result {
    margin-top: 30px;
    animation: slideInDown 0.5s ease-out;
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.result-content {
    background: var(--light-color);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

  .domain-info {
      background: #3A3A3A;
      padding: 30px;
      text-align: center;
      color: var(--light-color);
  }

.domain-icon {
    font-size: 60px;
    margin-bottom: 15px;
    opacity: 0.9;
}

.domain-name {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 10px;
    word-break: break-all;
}

.domain-status {
    font-size: 1.3rem;
    font-weight: 600;
    opacity: 0.95;
}

.domain-status.available {
    color: #4CAF50 !important;
}

.domain-status.available {
    color: #4CAF50 !important;
    font-weight: 700;
}

.domain-status.occupied {
    color: #f44336 !important;
    font-weight: 700;
}

/* Domain Occupied */
.domain-occupied,
.domain-unsupported {
    padding: 40px;
    text-align: center;
}

.occupied-info,
.unsupported-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.occupied-icon,
.unsupported-icon {
    font-size: 80px;
    color: #f44336;
}

.unsupported-icon {
    color: #ff9800;
}

.occupied-content {
    text-align: center;
}

.occupied-content p {
    font-size: 1.1rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
    line-height: 1.8;
}

.unsupported-info p {
    font-size: 1.1rem;
    color: var(--secondary-color);
    line-height: 1.8;
}

.contact-link {
    color: var(--primary-color);
    text-decoration: underline;
    font-weight: 600;
}

.whois-link {
    color: var(--primary-color) !important;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--light-color) !important;
    border-color: var(--primary-color) !important;
}

.whois-link:hover {
    color: var(--primary-color) !important;
    text-decoration: underline;
    background: var(--gray-light) !important;
}

/* Correzione per btn-secondary in contesti con sfondo bianco */
.domain-occupied .btn-secondary,
.domain-available .btn-secondary {
    color: var(--primary-color) !important;
    background: var(--light-color) !important;
    border-color: var(--primary-color) !important;
}

.domain-occupied .btn-secondary:hover,
.domain-available .btn-secondary:hover {
    background: var(--gray-light) !important;
    color: var(--primary-color) !important;
}

/* Domain Available */
.domain-available {
    padding: 30px;
}

.available-info {
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    color: var(--light-color);
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-size: 1.1rem;
    font-weight: 600;
}

.available-icon {
    font-size: 40px;
}

/* Client Type Toggle */
.client-type-toggle {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    justify-content: center;
}

.type-btn {
    flex: 1;
    max-width: 200px;
    padding: 15px 25px;
    border: 3px solid #e0e0e0;
    border-radius: 50px;
    background: transparent;
    color: var(--secondary-color);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.type-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.type-btn.active {
    background: var(--gradient-primary);
    border-color: var(--primary-color);
    color: var(--light-color);
}

.type-btn i {
    font-size: 20px;
}

/* Registration Form */
.registration-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.registration-form .form-group {
    position: relative;
}

.registration-form .form-group label {
    position: static;
    transform: none;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.registration-form .form-group label i {
    position: static;
    transform: none;
    color: var(--primary-color);
    font-size: 16px;
}

.registration-form .form-group input,
.registration-form .form-group textarea {
    padding: 15px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 16px;
    font-family: var(--font-primary);
    transition: var(--transition);
    background: var(--light-color);
    width: 100%;
}

.registration-form .form-group input:focus,
.registration-form .form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 4px rgba(245, 124, 0, 0.1);
}

.registration-form .form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.honeypot {
    display: none;
}

.registration-form .checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: nowrap;
}

.registration-form .checkbox-group input[type="checkbox"] {
    width: auto;
    margin: 0;
    flex-shrink: 0;
    margin-top: 2px;
}

.registration-form .checkbox-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--secondary-color);
    flex-wrap: nowrap;
    white-space: nowrap;
    margin: 0;
    cursor: pointer;
}

.registration-form .checkbox-group label span {
    display: flex;
    align-items: center;
    white-space: nowrap;
    flex-wrap: nowrap;
}

.form-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.form-actions .btn {
    flex: 1;
    min-width: 150px;
    justify-content: center;
}

/* Loading */
.loading {
    text-align: center;
    padding: 40px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid #e0e0e0;
    border-top-color: var(--primary-color);
    border-radius: 50%;
    margin: 0 auto 20px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.loading p {
    color: var(--secondary-color);
    font-size: 16px;
    font-weight: 500;
}

/* Utility Classes */
.hidden {
    display: none !important;
}

/* Responsive for Domain Checker */
@media (max-width: 768px) {
    .domain-checker {
        padding: 60px 0;
    }
    
    .search-input-group {
        flex-direction: column;
    }
    
    .search-icon {
        left: 20px;
        top: 50%;
        transform: translateY(-50%);
    }
    
    .search-input-group input {
        padding-left: 60px;
    }
    
    .search-btn {
        width: 100%;
        justify-content: center;
    }
    
    .domain-name {
        font-size: 1.8rem;
    }
    
    .domain-status {
        font-size: 1.1rem;
    }
    
    .client-type-toggle {
        flex-direction: column;
    }
    
    .type-btn {
        max-width: 100%;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .form-actions .btn {
        width: 100%;
    }
    
    .occupied-icon,
    .unsupported-icon {
        font-size: 60px;
    }
}

@media (max-width: 480px) {
    .domain-checker-wrapper {
        padding: 0 10px;
    }
    
    .domain-search-form {
        padding: 20px;
    }
    
    .domain-name {
        font-size: 1.5rem;
    }
    
    .available-info {
        flex-direction: column;
        text-align: center;
    }
}

/* ===== ANIMATIONS ON SCROLL ===== */
[data-aos] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

/* ===== PRIVACY POLICY ===== */
.privacy-content {
    padding: 100px 0;
    background: var(--gray-light);
}

.privacy-wrapper {
    background: var(--light-color);
    padding: 60px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.privacy-section {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--gray-light);
}

.privacy-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.privacy-section h2 {
    font-size: 2rem;
    color: var(--dark-color);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--primary-color);
}

.privacy-section h3 {
    font-size: 1.5rem;
    color: var(--dark-color);
    margin: 30px 0 15px;
}

.privacy-section p {
    color: var(--secondary-color);
    margin-bottom: 15px;
    line-height: 1.8;
}

.privacy-section ul {
    list-style: disc;
    padding-left: 30px;
    margin: 15px 0;
}

.privacy-section ul li {
    color: var(--secondary-color);
    margin-bottom: 10px;
    line-height: 1.8;
}

.privacy-section ul li::marker {
    color: var(--primary-color);
}

.print-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    background: var(--gradient-primary);
    color: var(--light-color);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-primary);
    margin: 40px auto;
}

.print-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(245, 124, 0, 0.4);
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .print-btn,
    .page-header .parallax-bg {
        display: none !important;
    }
    
    .page-header {
        padding: 40px 0;
        background: none;
    }
    
    .privacy-content {
        padding: 0;
        background: white;
    }
    
    .privacy-wrapper {
        box-shadow: none;
        padding: 20px;
    }
    
    body {
        background: white;
    }
}
