:root {
    --drt-bg: #f2f4f7; /* Platinum Gray - Sophisticated & Harmonious */
    --drt-accent: #234177; /* Signature Deep Blue */
    --drt-bright: #3b82f6;
    --drt-text-main: #1a1c21; /* Deep Charcoal for elegance */
    --drt-text-dim: #4b5563;
    --drt-border: rgba(35, 65, 119, 0.08);
    --drt-glass: rgba(255, 255, 255, 0.95);
}

html, body {
    margin: 0;
    padding: 0;
    background-color: var(--drt-bg);
    color: var(--drt-text-main);
    font-family: 'Inter', 'Noto Sans KR', sans-serif;
    overflow-x: hidden;
    width: 100%;
    /* Subtle Pattern for Large Screens */
    background-image: radial-gradient(rgba(35, 65, 119, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
}

/* Common Layout */
.section-container {
    max-width: 1400px;
    width: 90%;
    margin: 0 auto;
    padding: 100px 0;
    position: relative;
    z-index: 10;
}

/* 1. Hero Section */
#hero-section {
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 50% 50%, rgba(35, 65, 119, 0.05) 0%, transparent 70%);
}

/* Floating Light Effect */
#hero-section::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(35, 65, 119, 0.08) 0%, transparent 70%);
    filter: blur(80px);
    z-index: 1;
}

.hero-content {
    text-align: center;
    z-index: 5;
}

.hero-label {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--drt-accent);
    letter-spacing: 0.4em;
    text-transform: uppercase;
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeInDown 1s forwards;
}

.hero-title {
    font-size: clamp(3rem, 9vw, 6rem);
    font-weight: 950;
    line-height: 1.05;
    margin: 0;
    background: linear-gradient(135deg, var(--drt-accent) 20%, var(--drt-bright), var(--drt-accent) 80%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: logo-shimmer 6s linear infinite, fadeInUp 1.2s forwards 0.3s;
    opacity: 0;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--drt-text-main);
    margin-top: 30px;
    font-weight: 500;
    letter-spacing: 0.02em;
    opacity: 0;
    animation: fadeInUp 1.2s forwards 0.6s;
}

@keyframes logo-shimmer { to { background-position: 200% center; } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInDown { from { opacity: 0; transform: translateY(-30px); } to { opacity: 1; transform: translateY(0); } }

/* 2. Identity Section */
.identity-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.identity-text {
    max-width: 720px; /* Optimal reading width for standard monitors */
}

.identity-text h2 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 35px;
    line-height: 1.15;
    color: var(--drt-accent);
}

.identity-text h2 span { color: var(--drt-bright); }

.identity-text p {
    font-size: 1.28rem;
    line-height: 1.75;
    color: var(--drt-text-main);
    margin-bottom: 45px;
}

.identity-visual {
    position: relative;
    perspective: 1500px;
}

.visual-frame {
    width: 100%;
    height: 520px;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    box-shadow:
        0 40px 80px -20px rgba(35, 65, 119, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.5);
    transform: rotateY(-3deg);
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.visual-frame:hover {
    transform: rotateY(0deg) scale(1.02);
    box-shadow: 0 50px 100px -25px rgba(35, 65, 119, 0.25);
}

.visual-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s ease;
}

.visual-frame:hover img {
    transform: scale(1.08);
}

.frame-glare {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 50%);
    pointer-events: none;
    z-index: 2;
}

.identity-stats {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px;
}

.stat-card {
    background: #fff;
    border: 1px solid var(--drt-border);
    padding: 35px;
    border-radius: 12px;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.stat-card:hover {
    border-color: var(--drt-bright);
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(35, 65, 119, 0.08);
}

.stat-num {
    font-size: 3rem;
    font-weight: 900;
    color: var(--drt-accent);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 1rem;
    color: var(--drt-text-dim);
    font-weight: 700;
    text-transform: uppercase;
}

/* 3. History Section */
#history-section {
    background-color: #f7f9fc; /* Muted Background difference */
    width: 100%;
    position: relative;
    padding: 120px 0;
    border-top: 1px solid var(--drt-border);
    border-bottom: 1px solid var(--drt-border);
}

.history-container {
    max-width: 1400px;
    width: 90%;
    margin: 0 auto;
}

.history-timeline {
    position: relative;
    padding: 60px 0;
}

/* Central Line */
.history-timeline::before {
    content: '';
    position: absolute;
    left: 50%; top: 0; width: 1px; height: 100%;
    background: linear-gradient(to bottom, transparent, var(--drt-accent), transparent);
    transform: translateX(-50%);
    opacity: 0.2;
}

.timeline-item {
    display: flex; justify-content: space-between; align-items: center; width: 100%; margin-bottom: 80px; position: relative;
}

.timeline-item:nth-child(even) { flex-direction: row-reverse; }

.timeline-content {
    width: 44%;
    background: #fff;
    border: 1px solid var(--drt-border);
    padding: 35px;
    border-radius: 12px;
    position: relative;
    transition: all 0.4s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
}

.timeline-content:hover {
    border-color: var(--drt-bright);
    box-shadow: 0 20px 60px rgba(35, 65, 119, 0.1);
    transform: translateY(-5px);
}

.timeline-date {
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--drt-bright);
    margin-bottom: 12px;
    display: block;
}

.timeline-text {
    font-size: 1.2rem;
    line-height: 1.65;
    font-weight: 500;
    color: var(--drt-text-main);
}

/* Point on Line */
.timeline-point {
    position: absolute;
    left: 50%;
    top: 30px;
    width: 16px;
    height: 16px;
    background: var(--drt-bright);
    border-radius: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 20px var(--drt-bright);
    z-index: 20;
}

h1, h2, h3, p, span, .timeline-text {
    word-break: keep-all; /* Prevent awkward word breaking */
}

/* 4. Values Section */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    margin-top: 80px;
}

.value-card {
    text-align: center;
    padding: 70px 40px;
    background: var(--drt-glass);
    border: 1px solid var(--drt-border);
    border-top: 6px solid var(--drt-accent);
    border-radius: 8px;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 420px;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.value-card:hover {
    background: #fff;
    transform: translateY(-10px);
    border-top-color: var(--drt-bright);
    box-shadow: 0 25px 60px rgba(35, 65, 119, 0.2);
}

.value-icon {
    font-size: 4.5rem;
    margin-bottom: 35px;
    display: block;
    transition: transform 0.5s ease;
}

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

.value-card h3 {
    font-size: 1.9rem;
    margin: 0 0 20px 0;
    color: var(--drt-accent);
    font-weight: 800;
}

.value-summary {
    font-size: 1.4rem;
    color: var(--drt-text-main);
    font-weight: 700;
    line-height: 1.5;
    transition: all 0.5s ease;
}

/* Hover Reveal Text */
.value-detail {
    max-width: 320px; /* Prevent overly long lines in cards */
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.5s ease;
    font-size: 1.25rem;
    color: var(--drt-text-dim);
    line-height: 1.7;
    margin-top: 0;
}

.value-card:hover .value-detail {
    max-height: 200px;
    opacity: 1;
    margin-top: 20px;
}

.value-card:hover .value-summary {
    color: var(--drt-bright);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .section-container { padding: 80px 0; }
    .identity-grid { grid-template-columns: 1fr; gap: 50px; }
    .timeline-item, .timeline-item:nth-child(even) { flex-direction: column; align-items: flex-start; }
    .timeline-content { width: 90%; margin-left: 30px; }
    .history-timeline::before { left: 15px; }
    .timeline-point { left: 15px; }
    .values-grid { grid-template-columns: 1fr; }
    .value-card { min-height: auto; }
    .hero-title { font-size: 3.5rem; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 2.8rem; }
    .hero-subtitle { font-size: 1.1rem; }
    .identity-text h2 { font-size: 2.2rem; }
    .stat-num { font-size: 2rem; }
    .timeline-content { padding: 20px; }
}
    

    :root {
--consult-bg: #f8fafc;     /* White Gray (Cool Slate 50) for eye comfort */
--consult-accent: #234177; /* Brand Deep Blue */
--consult-bright: #3b82f6; /* Vivid Blue */
--consult-text: #1e293b;   /* Slate 800 */
--consult-sub: #64748b;    /* Slate 500 */
--consult-border: #cbd5e1; /* Slightly darker border for contrast */
    }

    #drt-consultation-section {
background: #f8fafc; /* White Gray (Solid) */
padding: 50px 20px; /* Reduced vertical size */
font-family: 'Inter', 'Noto Sans KR', sans-serif;
color: var(--consult-text);
position: relative;
overflow: hidden;
display: flex;
justify-content: center;
align-items: center;
border: none; /* Removed border for seamless blend */
    }

    /* PREMIUM GRID PATTERN (Subtle Tech Feel) */
    #drt-consultation-section::after {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-image:
    linear-gradient(rgba(35, 65, 119, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(35, 65, 119, 0.03) 1px, transparent 1px);
background-size: 40px 40px;
opacity: 0.6;
pointer-events: none;
z-index: 1;
    }

    .consult-container {
max-width: 1200px;
width: 100%;
display: flex;
justify-content: space-between;
align-items: center;
position: relative;
z-index: 5;
background: rgba(255, 255, 255, 0.9);
padding: 60px 70px;
border-radius: 4px; /* Slightly sharper for tech feel */
border: 1px solid rgba(255, 255, 255, 0.4);
backdrop-filter: blur(20px);
/* Premium Diffuse Shadow */
box-shadow:
    0 20px 40px -10px rgba(35, 65, 119, 0.1),
    0 0 20px rgba(255, 255, 255, 0.8) inset;
transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    /* TECH CORNER BRACKETS (New Design Element) */
    .consult-container::before,
    .consult-container::after {
content: '';
position: absolute;
width: 20px;
height: 20px;
border: 2px solid var(--consult-accent);
transition: all 0.3s ease;
opacity: 0.6;
    }

    /* Top-Left Bracket */
    .consult-container::before {
top: -1px;
left: -1px;
border-right: none;
border-bottom: none;
    }

    /* Bottom-Right Bracket */
    .consult-container::after {
bottom: -1px;
right: -1px;
border-left: none;
border-top: none;
    }

    /* Hover Effect: Brackets Expand */
    .consult-container:hover::before {
width: 30px;
height: 30px;
opacity: 1;
    }
    .consult-container:hover::after {
width: 30px;
height: 30px;
opacity: 1;
    }

    /* Hover Lift Effect for Container */
    .consult-container:hover {
transform: translateY(-2px);
box-shadow:
    0 30px 60px -12px rgba(35, 65, 119, 0.15),
    0 0 20px rgba(255, 255, 255, 0.8) inset;
    }

    /* Content Styling */
    .consult-text {
max-width: 600px;
    }

    .consult-label {
color: var(--consult-bright);
font-size: 0.85rem;
font-weight: 800;
letter-spacing: 0.15em;
text-transform: uppercase;
margin-bottom: 15px;
display: flex;
align-items: center;
gap: 10px;
    }

    /* Pulsing Dot Indicator */
    .consult-label::before {
content: '';
width: 6px;
height: 6px;
background-color: var(--consult-bright);
border-radius: 50%;
box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
animation: consult-pulse 2s infinite ease-in-out;
    }

    @keyframes consult-pulse {
0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.4); }
70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(59, 130, 246, 0); }
100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(59, 130, 246, 0); }
    }

    .consult-title {
font-size: 2.4rem;
font-weight: 800;
line-height: 1.25;
margin-bottom: 15px;
color: var(--consult-text);
letter-spacing: -0.02em;
word-break: keep-all; /* Prevent awkward word breaking (Korean) */
    }

    .consult-desc {
font-size: 1.15rem;
color: var(--consult-sub);
line-height: 1.6;
font-weight: 500;
word-break: keep-all; /* Prevent awkward word breaking (Korean) */
    }

    /* Button Area */
    .consult-action {
flex-shrink: 0;
    }

    .consult-btn {
position: relative;
display: inline-flex;
align-items: center;
justify-content: center;
padding: 22px 55px;
font-size: 1.1rem;
font-weight: 700;
color: #ffffff !important; /* Force White Text */
text-decoration: none;
/* Gradient Background */
background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
border-radius: 12px;
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
overflow: hidden;
box-shadow: 0 10px 20px -5px rgba(30, 41, 59, 0.3);
z-index: 10;
white-space: nowrap; /* Keep button text on one line */
    }

    /* Shimmer Effect on Button */
    .consult-btn::before {
content: '';
position: absolute;
top: 0;
left: -100%;
width: 200%;
height: 100%;
background: linear-gradient(
    115deg,
    transparent 0%,
    transparent 40%,
    rgba(255, 255, 255, 0.1) 45%,
    rgba(255, 255, 255, 0.2) 50%,
    rgba(255, 255, 255, 0.1) 55%,
    transparent 60%,
    transparent 100%
);
transition: transform 0.6s ease;
transform: translateX(0);
z-index: 1;
    }

    .consult-btn:hover {
transform: translateY(-3px);
box-shadow: 0 20px 30px -10px rgba(30, 41, 59, 0.5);
background: linear-gradient(135deg, #334155 0%, #1e293b 100%);
    }

    .consult-btn:hover::before {
transform: translateX(50%);
    }

    .consult-btn span {
position: relative;
z-index: 2;
    }

    .consult-btn svg {
margin-left: 10px;
width: 20px;
height: 20px;
fill: #ffffff;
transition: transform 0.3s ease;
position: relative;
z-index: 2;
    }

    .consult-btn:hover svg {
transform: translateX(5px);
    }

    /* RESPONSIVE DESIGN */
    @media (max-width: 1024px) {
.consult-container {
    flex-direction: column;
    text-align: center;
    padding: 50px 30px;
    gap: 40px;
}

.consult-label {
    justify-content: center;
}

.consult-text {
    max-width: 100%;
}

.consult-title {
    font-size: 2rem;
}

.consult-action {
    width: 100%;
    display: flex;
    justify-content: center;
}

.consult-btn {
    width: 100%;
    max-width: 400px;
    padding: 20px 30px;
}
    }

    @media (max-width: 480px) {
#drt-consultation-section {
    padding: 60px 20px;
}

.consult-container {
    padding: 40px 20px;
}

.consult-title {
    font-size: 1.55rem; /* Adjusted for safe wrapping on small screens */
}

.consult-desc {
    font-size: 1rem;
}
    }


			
/* [RESET] */
html, body {
    margin: 0 !important;
    padding: 0 !important;
    background-color: #0d0d0f;
}

:root {
    --footer-bg: #0d0d0f;
    --accent-blue: #234177; /* Official Brand Color: Deep Blue */
    --accent-bright: #4a7edb; /* Shimmer/Glow Variant */
    --accent-glow: rgba(35, 65, 119, 0.4);
    --text-main: #ffffff;
    --text-dim: #94a3b8;
    --border-color: rgba(255, 255, 255, 0.08);
    --glass-bg: rgba(255, 255, 255, 0.03);
}

#drt-premium-footer {
    background-color: var(--footer-bg);
    color: var(--text-main);
    padding: 45px 20px 35px; /* Slightly reduced vertical size */
    font-family: 'Inter', 'Noto Sans KR', sans-serif;
    position: relative;
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
    border-top: 1px solid var(--border-color);
}

/* Top Accent Line - Cybernetic Glow (Restored Animation) */
#drt-premium-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-bright), transparent);
    opacity: 0.8;
    animation: line-pulse 4s infinite alternate;
    z-index: 10;
}

@keyframes line-pulse {
    0% { opacity: 0.3; width: 30%; left: 0; }
    50% { opacity: 1; width: 60%; left: 20%; }
    100% { opacity: 0.3; width: 30%; left: 70%; }
}

/* Subtle Background Patterns */
#drt-premium-footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.5;
    pointer-events: none;
}

.footer-container {
    max-width: 1400px;
    width: 95%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px; /* Tighter gap */
    position: relative;
    z-index: 20;
}

/* Top Section: Luxury Branding */
.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-branding .logo {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.03rem;
    background: linear-gradient(135deg, #ffffff 40%, var(--accent-bright), #ffffff 80%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    animation: logo-shimmer 6s linear infinite;
}

@keyframes logo-shimmer {
    to { background-position: 200% center; }
}

.footer-branding .sub-tagline {
    font-size: 0.9rem;
    color: var(--accent-bright);
    text-transform: uppercase;
    letter-spacing: 0.4em;
    margin-top: 8px;
    font-weight: 700;
    opacity: 0.9;
}

.footer-links {
    display: flex;
    gap: 40px;
}

.footer-links a {
    color: var(--text-dim);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    padding: 10px 20px;
    border-radius: 4px;
    background: transparent;
    border: 1px solid transparent;
}

.footer-links a:hover {
    color: #fff;
    background: var(--glass-bg);
    border-color: var(--border-color);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    transform: translateY(-3px);
}

/* Middle Section: Sophisticated Info Grid */
.footer-info {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border-color);
}

.info-item {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.info-label {
    font-size: 0.9rem;
    color: var(--accent-bright);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-label::before {
    content: '';
    width: 5px;
    height: 5px;
    background-color: var(--accent-bright);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent-bright);
    animation: dot-pulse 2s ease-in-out infinite;
}

@keyframes dot-pulse {
    0% { transform: scale(1); opacity: 1; box-shadow: 0 0 10px var(--accent-bright); }
    50% { transform: scale(1.5); opacity: 0.7; box-shadow: 0 0 20px var(--accent-bright); }
    100% { transform: scale(1); opacity: 1; box-shadow: 0 0 10px var(--accent-bright); }
}

.info-value {
    font-size: 1.1rem; /* Slightly balanced */
    color: var(--text-main);
    font-weight: 400;
    line-height: 1.7;
    opacity: 0.95;
}

/* Bottom Section: Clean Copyright */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
}

.copyright {
    font-size: 1rem;
    color: var(--text-dim);
    letter-spacing: 0.02em;
}

.bottom-links {
    display: flex;
    gap: 25px;
    font-size: 0.9rem;
    color: var(--text-main);
    font-weight: 600;
    opacity: 0.6;
    align-items: center;
}

.designer-credit {
    color: var(--accent-bright);
    font-weight: 700;
    letter-spacing: 0.05em;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .footer-info {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    #drt-premium-footer {
        padding: 40px 20px 100px;
    }
    .footer-top {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .footer-links {
        gap: 15px;
        flex-direction: column;
        width: 100%;
    }
    .footer-links a {
        padding: 12px;
        font-size: 1rem;
    }
    .footer-info {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    .info-label {
        justify-content: center;
    }
    .info-value {
        font-size: 1.05rem;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}
